diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-04 03:09:53 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-04 03:09:53 (GMT) |
commit | d66595fe423227f3bf8ea4867df5d27c6d2764e1 (patch) | |
tree | 678405a81330c78c8525ddc817350654c04dfaee /setup.py | |
parent | 693291ba23d6406af58dd46066748a8d713fd1ba (diff) | |
download | cpython-d66595fe423227f3bf8ea4867df5d27c6d2764e1.zip cpython-d66595fe423227f3bf8ea4867df5d27c6d2764e1.tar.gz cpython-d66595fe423227f3bf8ea4867df5d27c6d2764e1.tar.bz2 |
Renamed _testXXX to _testcapiXXX. Jack is my hero -- good call!
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ class PyBuildExt(build_ext): # access to the builtin codecs and codec registry exts.append( Extension('_codecs', ['_codecsmodule.c']) ) # Python C API test module - exts.append( Extension('_test', ['_testmodule.c']) ) + exts.append( Extension('_testcapi', ['_testcapimodule.c']) ) # static Unicode character database exts.append( Extension('unicodedata', ['unicodedata.c']) ) # access to ISO C locale support |