diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-28 21:29:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 21:29:32 (GMT) |
commit | fe2d5babba5d26de2093b6518316b268488187be (patch) | |
tree | 0167f6e4c8e7965d2b0f95a94e0fbc2e7ac58bb2 /Lib/test | |
parent | a4a3020abc065d40f57069d6c69d02222ddc85d6 (diff) | |
download | cpython-fe2d5babba5d26de2093b6518316b268488187be.zip cpython-fe2d5babba5d26de2093b6518316b268488187be.tar.gz cpython-fe2d5babba5d26de2093b6518316b268488187be.tar.bz2 |
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/test')
-rw-r--r-- | Lib/test/test_platform.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index ea6752b..2cf4d3f 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -145,14 +145,14 @@ class PlatformTest(unittest.TestCase): ("PyPy", "2.5.2", "trunk", "63378", ('63378', 'Mar 26 2009'), "") } - for (version_tag, subversion, sys_platform), info in \ + for (version_tag, scm, sys_platform), info in \ sys_versions.items(): sys.version = version_tag - if subversion is None: + if scm is None: if hasattr(sys, "_git"): del sys._git else: - sys._git = subversion + sys._git = scm if sys_platform is not None: sys.platform = sys_platform self.assertEqual(platform.python_implementation(), info[0]) |