]> granicus.if.org Git - python/commitdiff
Remove mentions of Python 2.x and being externally maintained from
authorGregory P. Smith <greg@krypto.org>
Sun, 8 Dec 2013 08:39:07 +0000 (00:39 -0800)
committerGregory P. Smith <greg@krypto.org>
Sun, 8 Dec 2013 08:39:07 +0000 (00:39 -0800)
the bundled json module.  Replace that with a mention of it being
a version of the externally maintained simplejson module.

Lib/json/__init__.py

index 48a4f8f863e44f4fba7f5bc600ca418291972b9f..6d9b30d92e60b87d19e820479fafd43f0c0eaf38 100644 (file)
@@ -3,11 +3,8 @@ JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
 interchange format.
 
 :mod:`json` exposes an API familiar to users of the standard library
-:mod:`marshal` and :mod:`pickle` modules. It is the externally maintained
-version of the :mod:`json` library contained in Python 2.6, but maintains
-compatibility with Python 2.4 and Python 2.5 and (currently) has
-significant performance advantages, even without using the optional C
-extension for speedups.
+:mod:`marshal` and :mod:`pickle` modules.  It is derived from a
+version of the externally maintained simplejson library.
 
 Encoding basic Python object hierarchies::