diff options
author | Georg Brandl <georg@python.org> | 2011-03-06 09:35:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-03-06 09:35:42 (GMT) |
commit | 776e5861140957692db39fa63b6c1171ddb8508b (patch) | |
tree | 9dc319114adc9d14cc382292ae9c12cade2cdac4 /Doc/library/sys.rst | |
parent | fe09a54280a56a01402f4cb98c8c6cb4be89654a (diff) | |
download | cpython-776e5861140957692db39fa63b6c1171ddb8508b.zip cpython-776e5861140957692db39fa63b6c1171ddb8508b.tar.gz cpython-776e5861140957692db39fa63b6c1171ddb8508b.tar.bz2 |
Remove sys.subversion and svn build identification leftovers.
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 88655bb..b09571f 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -36,18 +36,6 @@ always available. little-endian (least-significant byte first) platforms. -.. data:: subversion - - A triple (repo, branch, version) representing the Subversion information of the - Python interpreter. *repo* is the name of the repository, ``'CPython'``. - *branch* is a string of one of the forms ``'trunk'``, ``'branches/name'`` or - ``'tags/name'``. *version* is the output of ``svnversion``, if the interpreter - was built from a Subversion checkout; it contains the revision number (range) - and possibly a trailing 'M' if there were local modifications. If the tree was - exported (or svnversion was not available), it is the revision of - ``Include/patchlevel.h`` if the branch is a tag. Otherwise, it is ``None``. - - .. data:: builtin_module_names A tuple of strings giving the names of all modules that are compiled into this |