[Jython-checkins] jython: Update genpatches with the new cpython lib name.

frank.wierzbicki jython-checkins at python.org
Fri Mar 23 18:38:26 CET 2012


http://hg.python.org/jython/rev/2491c8a52600
changeset:   6493:2491c8a52600
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Fri Mar 23 10:38:20 2012 -0700
summary:
  Update genpatches with the new cpython lib name.

files:
  Misc/genpatches.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Misc/genpatches.py b/Misc/genpatches.py
--- a/Misc/genpatches.py
+++ b/Misc/genpatches.py
@@ -7,7 +7,7 @@
 The script expects to be run in the jython root directory and there should be a "cpython"
 directory in the parent directory. That directory should be a clone of the CPython release
 against which the modules in Lib/ have currently been patched.
-Only modules that are common to Lib/, CPythonLib/ and ../cpython/Lib will be included in
+Only modules that are common to Lib/, lib-python/ and ../cpython/Lib will be included in
 the patches.
 """
 from StringIO import StringIO
@@ -36,7 +36,7 @@
     sys.exit(1)
 
 jymodules = get_modules(u'Lib')
-cpymodules = get_modules(u'CPythonLib')
+cpymodules = get_modules(u'lib-python')
 cpy25modules = get_modules(u'../cpython/Lib')
 common_modules = jymodules.intersection(cpy25modules).intersection(cpymodules)
 

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


More information about the Jython-checkins mailing list