diff options
author | Georg Brandl <georg@python.org> | 2010-03-07 15:23:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-07 15:23:59 (GMT) |
commit | 21e99f492419f97b4e5818081440742ecfde269f (patch) | |
tree | 94ec0f7c638ae647ff6ff97962b7995b7d4d10ef /Misc/BeOS-setup.py | |
parent | c02bbe328df8d0edf646c56fb4b7748a54500e6c (diff) | |
download | cpython-21e99f492419f97b4e5818081440742ecfde269f.zip cpython-21e99f492419f97b4e5818081440742ecfde269f.tar.gz cpython-21e99f492419f97b4e5818081440742ecfde269f.tar.bz2 |
#5341: more built-in vs builtin fixes.
Diffstat (limited to 'Misc/BeOS-setup.py')
-rw-r--r-- | Misc/BeOS-setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/BeOS-setup.py b/Misc/BeOS-setup.py index 0043a34..c5e02cc 100644 --- a/Misc/BeOS-setup.py +++ b/Misc/BeOS-setup.py @@ -195,7 +195,7 @@ class PyBuildExt(build_ext): libraries=math_libs) ) # operator.add() and similar goodies exts.append( Extension('operator', ['operator.c']) ) - # access to the builtin codecs and codec registry + # access to the built-in codecs and codec registry exts.append( Extension('_codecs', ['_codecsmodule.c']) ) # Python C API test module exts.append( Extension('_testcapi', ['_testcapimodule.c']) ) |