[Python-checkins] cpython: remove svn support

benjamin.peterson python-checkins at python.org
Tue Jun 28 00:59:38 CEST 2011


http://hg.python.org/cpython/rev/45e7c067332e
changeset:   71025:45e7c067332e
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Jun 27 17:59:45 2011 -0500
summary:
  remove svn support

files:
  Tools/scripts/patchcheck.py |  3 ---
  1 files changed, 0 insertions(+), 3 deletions(-)


diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py
--- a/Tools/scripts/patchcheck.py
+++ b/Tools/scripts/patchcheck.py
@@ -38,9 +38,6 @@
     if os.path.isdir('.hg'):
         vcs = 'hg'
         cmd = 'hg status --added --modified --no-status'
-    elif os.path.isdir('.svn'):
-        vcs = 'svn'
-        cmd = 'svn status --quiet --non-interactive --ignore-externals'
     else:
         sys.exit('need a checkout to get modified files')
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list