[Python-checkins] CVS: python/dist/src/Modules Setup.dist,1.22,1.22.2.1

Guido van Rossum gvanrossum@users.sourceforge.net
Sat, 18 Aug 2001 22:40:10 -0700


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

Modified Files:
      Tag: r22a2-branch
	Setup.dist 
Log Message:
A better fix for Greg Ball's problem (see python-dev): make new a
static module.

Note: if you have a current checkout, you have to copy
$(srcdir)/Modules/Setup.dist to Modules/Setup for this to be
effective.


Index: Setup.dist
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/Setup.dist,v
retrieving revision 1.22
retrieving revision 1.22.2.1
diff -C2 -d -r1.22 -r1.22.2.1
*** Setup.dist	2001/08/02 04:15:00	1.22
--- Setup.dist	2001/08/19 05:40:07	1.22.2.1
***************
*** 99,102 ****
--- 99,103 ----
  posix posixmodule.c		# posix (UNIX) system calls
  _sre _sre.c			# Fredrik Lundh's new regular expressions
+ new newmodule.c			# Tommy Burnette's 'new' module
  
  # The rest of the modules listed in this file are all commented out by
***************
*** 346,354 ****
  # Wrapper for the panel library that's part of ncurses and SYSV curses.
  #_curses_panel _curses_panel.c -lpanel -lncurses 
- 
- 
- # Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
- 
- #new newmodule.c
  
  
--- 347,350 ----