[Python-checkins] python/dist/src setup.py,1.123,1.124

lemburg@users.sourceforge.net lemburg@users.sourceforge.net
Thu, 12 Dec 2002 09:37:51 -0800


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv24009

Modified Files:
	setup.py 
Log Message:
Patch to make _codecs a builtin module. This is necessary since
Python 2.3 will support source code encodings which rely on the
builtin codecs being available to the parser.

Remove struct dependency from codecs.py



Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.123
retrieving revision 1.124
diff -C2 -d -r1.123 -r1.124
*** setup.py	7 Dec 2002 14:41:17 -0000	1.123
--- setup.py	12 Dec 2002 17:37:48 -0000	1.124
***************
*** 314,319 ****
          # operator.add() and similar goodies
          exts.append( Extension('operator', ['operator.c']) )
-         # access to the builtin codecs and codec registry
-         exts.append( Extension('_codecs', ['_codecsmodule.c']) )
          # Python C API test module
          exts.append( Extension('_testcapi', ['_testcapimodule.c']) )
--- 314,317 ----