[Python-checkins] r88524 - python/branches/py3k/Doc/library/crypt.rst

georg.brandl python-checkins at python.org
Wed Feb 23 08:31:24 CET 2011


Author: georg.brandl
Date: Wed Feb 23 08:31:24 2011
New Revision: 88524

Log:
Indent "versionadded" properly.

Modified:
   python/branches/py3k/Doc/library/crypt.rst

Modified: python/branches/py3k/Doc/library/crypt.rst
==============================================================================
--- python/branches/py3k/Doc/library/crypt.rst	(original)
+++ python/branches/py3k/Doc/library/crypt.rst	Wed Feb 23 08:31:24 2011
@@ -37,28 +37,28 @@
    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 @@
    ``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


More information about the Python-checkins mailing list