aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/padding.rst
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-05-17 19:47:09 +0800
committerAyrx <terrycwk1994@gmail.com>2014-05-17 19:47:09 +0800
commit00eff9ca7fece942670429824cb77dd532190c96 (patch)
tree6fdc0df70cd1bbecd56049208899111a8edcd202 /docs/hazmat/primitives/padding.rst
parent6d69eab6caff7b87d32fab3c7178296e481eb8a4 (diff)
downloadcryptography-00eff9ca7fece942670429824cb77dd532190c96.tar.gz
cryptography-00eff9ca7fece942670429824cb77dd532190c96.tar.bz2
cryptography-00eff9ca7fece942670429824cb77dd532190c96.zip
Simplified exception message
Diffstat (limited to 'docs/hazmat/primitives/padding.rst')
-rw-r--r--docs/hazmat/primitives/padding.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/padding.rst b/docs/hazmat/primitives/padding.rst
index 72378e1f..0322f9d2 100644
--- a/docs/hazmat/primitives/padding.rst
+++ b/docs/hazmat/primitives/padding.rst
@@ -70,9 +70,7 @@ multiple of the block size.
:return bytes: Returns the data that was padded or unpadded.
:raises TypeError: Raised if data is not bytes.
:raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize`.
- :raises TypeError: This exception is raised if ``data`` is not a binary
- type. This is ``str`` in Python 2 and ``bytes`` in
- Python 3.
+ :raises TypeError: This exception is raised if ``data`` is not ``bytes``.
.. method:: finalize()