summaryrefslogtreecommitdiffstats
path: root/Doc/library/crypt.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-02-23 07:31:24 (GMT)
committerGeorg Brandl <georg@python.org>2011-02-23 07:31:24 (GMT)
commit08f5cf51dcd7d065d791c3bad1ae6a9e5f874d59 (patch)
tree1fd0e8aec10f7576ec68c0bab972a17414664ea9 /Doc/library/crypt.rst
parent5329123ee00de7547e454326d7e335123047979f (diff)
downloadcpython-08f5cf51dcd7d065d791c3bad1ae6a9e5f874d59.zip
cpython-08f5cf51dcd7d065d791c3bad1ae6a9e5f874d59.tar.gz
cpython-08f5cf51dcd7d065d791c3bad1ae6a9e5f874d59.tar.bz2
Indent "versionadded" properly.
Diffstat (limited to 'Doc/library/crypt.rst')
-rw-r--r--Doc/library/crypt.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/crypt.rst b/Doc/library/crypt.rst
index 5881cd0..ec5a4b0 100644
--- a/Doc/library/crypt.rst
+++ b/Doc/library/crypt.rst
@@ -37,28 +37,28 @@ are available on all platforms):
A Modular Crypt Format method with 16 character salt and 86 character
hash. This is the strongest method.
-.. versionadded:: 3.3
+ .. versionadded:: 3.3
.. data:: METHOD_SHA256
Another Modular Crypt Format method with 16 character salt and 43
character hash.
-.. versionadded:: 3.3
+ .. versionadded:: 3.3
.. data:: METHOD_MD5
Another Modular Crypt Format method with 8 character salt and 22
character hash.
-.. versionadded:: 3.3
+ .. versionadded:: 3.3
.. data:: METHOD_CRYPT
The traditional method with a 2 character salt and 13 characters of
hash. This is the weakest method.
-.. versionadded:: 3.3
+ .. versionadded:: 3.3
Module Attributes
@@ -71,7 +71,7 @@ Module Attributes
``crypt.METHOD_*`` objects. This list is sorted from strongest to
weakest, and is guaranteed to have at least ``crypt.METHOD_CRYPT``.
-.. versionadded:: 3.3
+ .. versionadded:: 3.3
Module Functions