summaryrefslogtreecommitdiff
path: root/Lib/platform.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-11-28 22:29:32 +0100
committerGitHub <noreply@github.com>2017-11-28 22:29:32 +0100
commitfe2d5babba5d26de2093b6518316b268488187be (patch)
tree0167f6e4c8e7965d2b0f95a94e0fbc2e7ac58bb2 /Lib/platform.py
parenta4a3020abc065d40f57069d6c69d02222ddc85d6 (diff)
downloadcpython-git-fe2d5babba5d26de2093b6518316b268488187be.tar.gz
bpo-32159: Remove tools for CVS and Subversion (#4615)
CPython migrated from CVS to Subversion, to Mercurial, and then to Git. CVS and Subversion are not more used to develop CPython. * platform module: drop support for sys.subversion. The sys.subversion attribute has been removed in Python 3.3. * Remove Misc/svnmap.txt * Remove Tools/scripts/svneol.py * Remove Tools/scripts/treesync.py
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-xLib/platform.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index cc2db9870d..dc981ec144 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -1202,9 +1202,6 @@ def _sys_version(sys_version=None):
_, branch, revision = sys._git
elif hasattr(sys, '_mercurial'):
_, branch, revision = sys._mercurial
- elif hasattr(sys, 'subversion'):
- # sys.subversion was added in Python 2.5
- _, branch, revision = sys.subversion
else:
branch = ''
revision = ''
@@ -1259,7 +1256,7 @@ def python_branch():
""" Returns a string identifying the Python implementation
branch.
- For CPython this is the Subversion branch from which the
+ For CPython this is the SCM branch from which the
Python binary was built.
If not available, an empty string is returned.
@@ -1273,7 +1270,7 @@ def python_revision():
""" Returns a string identifying the Python implementation
revision.
- For CPython this is the Subversion revision from which the
+ For CPython this is the SCM revision from which the
Python binary was built.
If not available, an empty string is returned.