[Python-checkins] python/dist/src/Modules Setup.config.in,1.11,1.12 Setup.dist,1.33,1.34

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


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

Modified Files:
	Setup.config.in Setup.dist 
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.config.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.config.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Setup.config.in	30 Aug 2001 00:13:38 -0000	1.11
--- Setup.config.in	12 Dec 2002 17:37:50 -0000	1.12
***************
*** 11,13 ****
  
  # The rest of the modules previously listed in this file are built
! # by the setup.py script in Python 2.1.
--- 11,13 ----
  
  # The rest of the modules previously listed in this file are built
! # by the setup.py script in Python 2.1 and later.

Index: Setup.dist
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.dist,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** Setup.dist	2 Dec 2002 00:27:10 -0000	1.33
--- Setup.dist	12 Dec 2002 17:37:50 -0000	1.34
***************
*** 112,115 ****
--- 112,116 ----
  errno errnomodule.c		# posix (UNIX) errno values
  _sre _sre.c			# Fredrik Lundh's new regular expressions
+ _codecs _codecsmodule.c		# access to the builtin codecs and codec registry
  
  # The rest of the modules listed in this file are all commented out by
***************
*** 164,168 ****
  #operator operator.c	# operator.add() and similar goodies
  #_weakref _weakref.c	# basic weak reference support
- #_codecs _codecsmodule.c	# access to the builtin codecs and codec registry
  #_testcapi _testcapimodule.c    # Python C API test module
  
--- 165,168 ----