diff python.orig/2.1/CVS/Entries python/2.1/CVS/Entries
--- python.orig/2.1/CVS/Entries	Wed Jul 30 20:59:30 2003
+++ python/2.1/CVS/Entries	Tue Dec 10 00:00:00 2002
@@ -1,5 +1,5 @@
-/Makefile/1.3/Tue Oct  8 02:52:25 2002//
-/distinfo/1.2/Fri Apr 19 12:19:30 2002//
 D/files////
 D/patches////
 D/pkg////
+/Makefile/1.3/Mon Dec  9 22:35:47 2002//
+/distinfo/1.2/Mon Dec  9 22:35:48 2002//
diff python.orig/2.1/Makefile python/2.1/Makefile
--- python.orig/2.1/Makefile	Tue Oct  8 04:52:25 2002
+++ python/2.1/Makefile	Tue Aug 12 00:00:16 2003
@@ -2,7 +2,9 @@
 
 VERSION=	2.1
 PATCHLEVEL=	.3
-PKG_PATCHLEVEL=	p1
+PKG_PATCHLEVEL=
 
-.include <bsd.port.mk>
+CONFIGURE_STYLE=	dest
+CONFIGURE_ARGS=		--without-pymalloc
 
+.include <bsd.port.mk>
diff python.orig/2.1/files/CHANGES.OpenBSD python/2.1/files/CHANGES.OpenBSD
--- python.orig/2.1/files/CHANGES.OpenBSD	Sat May 11 23:35:13 2002
+++ python/2.1/files/CHANGES.OpenBSD	Wed Jun 18 01:08:39 2003
@@ -17,8 +17,13 @@
     same system.  If no "python" binary exists, a symlink to
     "python2.1" is created when the package is installed.
 
+6.  os.py: security fixes for _execvpe(). Function taken from Python
+    2.2.3
+
+7.  __va_copy was used where appropriate so python would work on
+    non-i386 architectures such as powerpc.
+
 These changes are available in the OpenBSD CVS repository
 <http://www.openbsd.org/anoncvs.html> in ports/lang/python.
 
 $Id: CHANGES.OpenBSD,v 1.1 2002/05/11 21:35:13 matt Exp $
-
diff python.orig/2.1/files/CVS/Entries python/2.1/files/CVS/Entries
--- python.orig/2.1/files/CVS/Entries	Wed Jul 30 20:53:37 2003
+++ python/2.1/files/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -1,7 +1,7 @@
-/CHANGES.OpenBSD/1.1/Sat May 11 21:35:13 2002//
-/Setup/1.1/Fri Feb 15 19:42:18 2002//
-/Setup.expat/1.1/Fri Feb 15 19:42:18 2002//
-/Setup.mpz/1.1/Fri Feb 15 19:42:18 2002//
-/Setup.tkinter/1.1/Fri Feb 15 19:42:18 2002//
-/pydoc/1.1/Fri Feb 15 19:42:18 2002//
+/CHANGES.OpenBSD/1.1/Mon Dec  9 22:35:47 2002//
+/Setup/1.1/Mon Dec  9 22:35:47 2002//
+/Setup.expat/1.1/Thu Jun 12 03:59:01 2003//
+/Setup.tkinter/1.1/Thu Jun 12 03:59:44 2003//
+/Setup.mpz/1.1/Tue Jun 17 23:06:36 2003//
+/pydoc/1.1/Fri Jul  4 17:14:13 2003//
 D
diff python.orig/2.1/files/Setup python/2.1/files/Setup
--- python.orig/2.1/files/Setup	Fri Feb 15 20:42:18 2002
+++ python/2.1/files/Setup	Sun Jun 15 22:52:33 2003
@@ -169,7 +169,7 @@
 mmap mmapmodule.c
 
 # Dynamic readlines
-#xreadlines xreadlinesmodule.c
+xreadlines xreadlinesmodule.c
 
 # for socket(2), without SSL support.
 #_socket socketmodule.c
@@ -191,7 +191,7 @@
 # Some more UNIX dependent modules -- off by default, since these
 # are not supported by all UNIX systems:
 
-#nis nismodule.c -lnsl	# Sun yellow pages -- not everywhere
+nis nismodule.c # -lnsl	# Sun yellow pages -- not everywhere
 termios termios.c	# Steen Lumholt's termios module
 resource resource.c	# Jeremy Hylton's rlimit interface
 
@@ -261,7 +261,7 @@
 # A Linux specific module -- off by default; this may also work on 
 # some *BSDs.
 
-#linuxaudiodev linuxaudiodev.c
+# linuxaudiodev linuxaudiodev.c
 
 
 # George Neville-Neil's timing module:
@@ -269,49 +269,6 @@
 timing timingmodule.c
 
 
-# The _tkinter module.
-#
-# The command for _tkinter is long and site specific.  Please
-# uncomment and/or edit those parts as indicated.  If you don't have a
-# specific extension (e.g. Tix or BLT), leave the corresponding line
-# commented out.  (Leave the trailing backslashes in!  If you
-# experience strange errors, you may want to join all uncommented
-# lines and remove the backslashes -- the backslash interpretation is
-# done by the shell's "read" command and it may not be implemented on
-# every system.
-
-# *** Always uncomment this (leave the leading underscore in!):
-# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
-# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
-#	-L/usr/local/lib \
-# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-#	-I/usr/local/include \
-# *** Uncomment and edit to reflect where your X11 header files are:
-#	-I/usr/X11R6/include \
-# *** Or uncomment this for Solaris:
-#	-I/usr/openwin/include \
-# *** Uncomment and edit for Tix extension only:
-#	-DWITH_TIX -ltix8.1.8.2 \
-# *** Uncomment and edit for BLT extension only:
-#	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
-# *** Uncomment and edit for PIL (TkImaging) extension only:
-#     (See http://www.pythonware.com/products/pil/ for more info)
-#	-DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
-# *** Uncomment and edit for TOGL extension only:
-#	-DWITH_TOGL togl.c \
-# *** Uncomment and edit to reflect your Tcl/Tk versions:
-#	-ltk8.2 -ltcl8.2 \
-# *** Uncomment and edit to reflect where your X11 libraries are:
-#	-L/usr/X11R6/lib \
-# *** Or uncomment this for Solaris:
-#	-L/usr/openwin/lib \
-# *** Uncomment these for TOGL extension only:
-#	-lGL -lGLU -lXext -lXmu \
-# *** Uncomment for AIX:
-#	-lld \
-# *** Always uncomment this; X11 libraries to link with:
-#	-lX11
-
 # Lance Ellinghaus's modules:
 
 rotor rotormodule.c		# enigma-inspired encryption
@@ -359,35 +316,7 @@
 
 dbm dbmmodule.c 	# dbm(3) may require -lndbm or similar
 
-# Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
-#
-# First, look at Setup.config; configure may have set this for you.
 
-#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
-
-
-# Berkeley DB interface.
-#
-# This requires the Berkeley DB code, see
-# ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
-#
-# Edit the variables DB and DBPORT to point to the db top directory
-# and the subdirectory of PORT where you built it.
-#
-# (See http://electricrain.com/greg/python/bsddb3/ for an interface to
-# BSD DB 3.x.)
-
-# Note: If a db.h file is found by configure, bsddb will be enabled
-# automatically via Setup.config.in.  It only needs to be enabled here
-# if it is not automatically enabled there; check the generated
-# Setup.config before enabling it here.
-
-#DB=/depot/sundry/src/berkeley-db/db.1.85
-#DBPORT=$(DB)/PORT/irix.5.3
-#bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
-
-
-
 # Helper module for various ascii-encoders
 binascii binascii.c
 
@@ -419,5 +348,4 @@
 # Andrew Kuchling's zlib module.
 # This require zlib 1.1.3 (or later).
 # See http://www.cdrom.com/pub/infozip/zlib/
-zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
-
+zlib zlibmodule.c -lz
diff python.orig/2.1/files/Setup.bsddb python/2.1/files/Setup.bsddb
--- python.orig/2.1/files/Setup.bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.1/files/Setup.bsddb	Wed Jun 18 01:01:20 2003
@@ -0,0 +1,21 @@
+@NOSHARED@*shared*
+
+# Berkeley DB interface.
+#
+# This requires the Berkeley DB code, see
+# ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
+#
+# Edit the variables DB and DBPORT to point to the db top directory
+# and the subdirectory of PORT where you built it.
+#
+# (See http://electricrain.com/greg/python/bsddb3/ for an interface to
+# BSD DB 3.x.)
+
+# Note: If a db.h file is found by configure, bsddb will be enabled
+# automatically via Setup.config.in.  It only needs to be enabled here
+# if it is not automatically enabled there; check the generated
+# Setup.config before enabling it here.
+
+#DB=/depot/sundry/src/berkeley-db/db.1.85
+#DBPORT=$(DB)/PORT/irix.5.3
+bsddb bsddbmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -ldb
diff python.orig/2.1/files/Setup.expat python/2.1/files/Setup.expat
--- python.orig/2.1/files/Setup.expat	Fri Feb 15 20:42:18 2002
+++ python/2.1/files/Setup.expat	Wed Jun 18 01:06:25 2003
@@ -19,4 +19,4 @@
 #
 #    ar cr libexpat.a xmltok/*.o xmlparse/*.o
 #
-pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(PREFIX)/include -L$(PREFIX)/lib -lexpat
+pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(LOCALBASE)/include -L$(LOCALBASE)/lib -lexpat
diff python.orig/2.1/files/Setup.gdbm python/2.1/files/Setup.gdbm
--- python.orig/2.1/files/Setup.gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.1/files/Setup.gdbm	Wed Jun 18 01:06:32 2003
@@ -0,0 +1,7 @@
+@NOSHARED@*shared*
+
+# Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
+#
+# First, look at Setup.config; configure may have set this for you.
+
+gdbm gdbmmodule.c -I$(LOCALBASE)/include -L$(LOCALBASE)/lib -lgdbm
diff python.orig/2.1/files/Setup.tkinter python/2.1/files/Setup.tkinter
--- python.orig/2.1/files/Setup.tkinter	Fri Feb 15 20:42:18 2002
+++ python/2.1/files/Setup.tkinter	Wed Jun 18 01:06:51 2003
@@ -17,8 +17,8 @@
 # *** Always uncomment this (leave the leading underscore in!):
 _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-	-I${PREFIX}/include/tcl8.3 \
-	-I${PREFIX}/include/tk8.3 \
+	-I${LOCALBASE}/include/tcl8.3 \
+	-I${LOCALBASE}/include/tk8.3 \
 # *** Uncomment and edit to reflect where your X11 header files are:
 	-I${X11BASE}/include \
 # *** Or uncomment this for Solaris:
@@ -32,7 +32,7 @@
 # *** Uncomment and edit for TOGL extension only:
 #	-DWITH_TOGL togl.c \
 # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
-	-L${PREFIX}/lib \
+	-L${LOCALBASE}/lib \
 # *** Uncomment and edit to reflect your Tcl/Tk versions:
 	-ltk83 -ltcl83 \
 # *** Uncomment and edit to reflect where your X11 libraries are:
diff python.orig/2.1/files/idle python/2.1/files/idle
--- python.orig/2.1/files/idle	Thu Jan  1 01:00:00 1970
+++ python/2.1/files/idle	Sun Aug 10 02:26:23 2003
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+/usr/bin/env python@VERSION@ @LOCALBASE@/lib/python@VERSION@/Tools/idle/idle.py
diff python.orig/2.1/files/pydoc python/2.1/files/pydoc
--- python.orig/2.1/files/pydoc	Fri Feb 15 20:42:18 2002
+++ python/2.1/files/pydoc	Thu Jan  1 01:00:00 1970
@@ -1,4 +0,0 @@
-#!/usr/bin/env python2.1
-
-import pydoc
-pydoc.cli()
diff python.orig/2.1/patches/CVS/Entries python/2.1/patches/CVS/Entries
--- python.orig/2.1/patches/CVS/Entries	Wed Jul 30 20:53:42 2003
+++ python/2.1/patches/CVS/Entries	Tue Dec 10 00:00:00 2002
@@ -1,9 +1,9 @@
-/patch-Lib_os_py/1.1/Tue Oct  8 02:52:25 2002//
-/patch-Lib_tempfile_py/1.2/Sat May 11 21:35:13 2002//
-/patch-Lib_test_test_fcntl_py/1.2/Sat May 11 21:35:13 2002//
-/patch-Makefile_pre_in/1.1/Fri Feb 15 19:42:18 2002//
-/patch-Modules_Setup_dist/1.1/Tue Oct  8 02:52:25 2002//
-/patch-Python_thread_pthread_h/1.2/Sat May 11 21:35:13 2002//
-/patch-configure_in/1.3/Sun May 12 19:32:41 2002//
-/patch-setup_py/1.2/Tue Oct  8 02:52:25 2002//
+/patch-Lib_os_py/1.1/Mon Dec  9 22:35:48 2002//
+/patch-Lib_tempfile_py/1.2/Mon Dec  9 22:35:48 2002//
+/patch-Lib_test_test_fcntl_py/1.2/Mon Dec  9 22:35:48 2002//
+/patch-Makefile_pre_in/1.1/Mon Dec  9 22:35:48 2002//
+/patch-Modules_Setup_dist/1.1/Mon Dec  9 22:35:48 2002//
+/patch-Python_thread_pthread_h/1.2/Mon Dec  9 22:35:48 2002//
+/patch-configure_in/1.3/Mon Dec  9 22:35:48 2002//
+/patch-setup_py/1.2/Mon Dec  9 22:35:48 2002//
 D
diff python.orig/2.1/patches/patch-Modules_linuxaudiodev_c python/2.1/patches/patch-Modules_linuxaudiodev_c
--- python.orig/2.1/patches/patch-Modules_linuxaudiodev_c	Thu Jan  1 01:00:00 1970
+++ python/2.1/patches/patch-Modules_linuxaudiodev_c	Sun Jun 15 18:32:02 2003
@@ -0,0 +1,22 @@
+$OpenBSD$
+--- Modules/linuxaudiodev.c.orig	Mon Apr  2 17:59:02 2001
++++ Modules/linuxaudiodev.c	Sun Jun 15 16:31:45 2003
+@@ -41,6 +41,9 @@ typedef unsigned long uint32_t;
+ #define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS
+ #endif
+ 
++#elif defined(__OpenBSD__)
++#include <soundcard.h>
++
+ #endif
+ 
+ typedef struct {
+@@ -108,7 +111,7 @@ newladobject(PyObject *arg)
+ 
+     basedev = getenv("AUDIODEV");
+     if (!basedev)
+-        basedev = "/dev/dsp";
++        basedev = "/dev/audio";
+ 
+     if ((fd = open(basedev, imode)) == -1) {
+         PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
diff python.orig/2.1/patches/patch-Modules_linuxaudiodev_c.orig python/2.1/patches/patch-Modules_linuxaudiodev_c.orig
--- python.orig/2.1/patches/patch-Modules_linuxaudiodev_c.orig	Thu Jan  1 01:00:00 1970
+++ python/2.1/patches/patch-Modules_linuxaudiodev_c.orig	Sat Jun 14 19:35:28 2003
@@ -0,0 +1,13 @@
+$OpenBSD$
+--- Modules/linuxaudiodev.c.orig	Sat Jun 14 17:34:36 2003
++++ Modules/linuxaudiodev.c	Sat Jun 14 17:35:16 2003
+@@ -41,6 +41,9 @@ typedef unsigned long uint32_t;
+ #define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS
+ #endif
+ 
++#elif defined(__OpenBSD__)
++#include <soundcard.h>
++
+ #endif
+ 
+ typedef struct {
diff python.orig/2.1/patches/patch-Tools_scripts_pydoc python/2.1/patches/patch-Tools_scripts_pydoc
--- python.orig/2.1/patches/patch-Tools_scripts_pydoc	Thu Jan  1 01:00:00 1970
+++ python/2.1/patches/patch-Tools_scripts_pydoc	Sun Jun 15 15:18:41 2003
@@ -0,0 +1,9 @@
+$OpenBSD$
+--- Tools/scripts/pydoc.orig	Sun Jun 15 13:13:39 2003
++++ Tools/scripts/pydoc	Sun Jun 15 13:13:47 2003
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2.1
+ 
+ import pydoc
+ pydoc.cli()
diff python.orig/2.1/patches/patch-setup_py python/2.1/patches/patch-setup_py
--- python.orig/2.1/patches/patch-setup_py	Tue Oct  8 04:52:25 2002
+++ python/2.1/patches/patch-setup_py	Sat Jun 14 19:35:28 2003
@@ -1,16 +1,7 @@
 $OpenBSD: patch-setup_py,v 1.2 2002/10/08 02:52:25 brad Exp $
---- setup.py.orig	Thu Dec 27 16:51:02 2001
-+++ setup.py	Mon Oct  7 21:52:44 2002
-@@ -215,8 +215,6 @@ class PyBuildExt(build_ext):
-         exts.append( Extension('pwd', ['pwdmodule.c']) )
-         # grp(3)
-         exts.append( Extension('grp', ['grpmodule.c']) )
--        # posix (UNIX) errno values
--        exts.append( Extension('errno', ['errnomodule.c']) )
-         # select(2); not on ancient System V
-         exts.append( Extension('select', ['selectmodule.c']) )
- 
-@@ -346,22 +344,9 @@ class PyBuildExt(build_ext):
+--- setup.py.orig	Thu Dec 27 21:51:02 2001
++++ setup.py	Sat Jun 14 17:17:55 2003
+@@ -346,22 +346,9 @@ class PyBuildExt(build_ext):
          # (See http://electricrain.com/greg/python/bsddb3/ for an interface to
          # BSD DB 3.x.)
  
@@ -36,7 +27,7 @@
  
          # The mpz module interfaces to the GNU Multiple Precision library.
          # You need to ftp the GNU MP library.
-@@ -609,7 +594,8 @@ def main():
+@@ -609,7 +596,8 @@ def main():
            ext_modules=[Extension('struct', ['structmodule.c'])],
  
            # Scripts to install
diff python.orig/2.1/patches/patch-setup_py.orig python/2.1/patches/patch-setup_py.orig
--- python.orig/2.1/patches/patch-setup_py.orig	Thu Jan  1 01:00:00 1970
+++ python/2.1/patches/patch-setup_py.orig	Thu Jun 12 05:40:38 2003
@@ -0,0 +1,39 @@
+$OpenBSD: patch-setup_py,v 1.2 2002/10/08 02:52:25 brad Exp $
+--- setup.py.orig	Thu Dec 27 16:51:02 2001
++++ setup.py	Mon Oct  7 21:52:44 2002
+@@ -346,22 +344,9 @@ class PyBuildExt(build_ext):
+         # (See http://electricrain.com/greg/python/bsddb3/ for an interface to
+         # BSD DB 3.x.)
+ 
+-        dblib = []
+-        if self.compiler.find_library_file(lib_dirs, 'db'):
+-            dblib = ['db']
+-        
+-        db185_incs = find_file('db_185.h', inc_dirs,
+-                               ['/usr/include/db3', '/usr/include/db2'])
+-        db_inc = find_file('db.h', inc_dirs, ['/usr/include/db1'])
+-        if db185_incs is not None:
+-            exts.append( Extension('bsddb', ['bsddbmodule.c'],
+-                                   include_dirs = db185_incs,
+-                                   define_macros=[('HAVE_DB_185_H',1)],
+-                                   libraries = dblib ) )
+-        elif db_inc is not None:
+-            exts.append( Extension('bsddb', ['bsddbmodule.c'],
+-                                   include_dirs = db_inc,
+-                                   libraries = dblib) )
++        exts.append( Extension('bsddb', ['bsddbmodule.c'],
++                                   include_dirs = ['/usr/include'],
++                                   libraries = []) )
+ 
+         # The mpz module interfaces to the GNU Multiple Precision library.
+         # You need to ftp the GNU MP library.
+@@ -609,7 +594,8 @@ def main():
+           ext_modules=[Extension('struct', ['structmodule.c'])],
+ 
+           # Scripts to install
+-          scripts = ['Tools/scripts/pydoc']
++          #scripts = ['Tools/scripts/pydoc']
++          scripts = []
+         )
+ 
+ # --install-platlib
diff python.orig/2.1/pkg/CVS/Entries python/2.1/pkg/CVS/Entries
--- python.orig/2.1/pkg/CVS/Entries	Wed Jul 30 20:53:51 2003
+++ python/2.1/pkg/CVS/Entries	Mon Jun 16 10:31:45 2003
@@ -1,18 +1,18 @@
-/DEINSTALL/1.1/Fri Feb 15 19:42:18 2002//
-/DESCR/1.1/Fri Feb 15 19:42:18 2002//
-/DESCR-expat/1.1/Fri Feb 15 19:42:18 2002//
-/DESCR-mpz/1.1/Fri Feb 15 19:42:18 2002//
-/DESCR-tests/1.1/Fri Feb 15 19:42:18 2002//
-/DESCR-tkinter/1.1/Fri Feb 15 19:42:18 2002//
-/DESCR-tools/1.1/Fri Feb 15 19:42:18 2002//
-/INSTALL/1.1/Fri Feb 15 19:42:18 2002//
-/PFRAG-tkinter.no_shared/1.1/Fri Feb 15 19:42:18 2002//
-/PFRAG.mm/1.1/Fri Feb 15 19:42:18 2002//
-/PFRAG.shared/1.2/Mon Feb 25 21:25:37 2002//
-/PLIST/1.2/Sat May 11 21:35:13 2002//
-/PLIST-expat/1.2/Sat Mar 23 04:34:23 2002//
-/PLIST-mpz/1.2/Sat Mar 23 04:34:23 2002//
-/PLIST-tests/1.3/Fri Apr 19 12:19:31 2002//
-/PLIST-tkinter/1.2/Sat Mar 23 04:34:23 2002//
-/PLIST-tools/1.2/Sat Mar 23 04:34:23 2002//
+/DEINSTALL/1.1/Mon Dec  9 22:35:48 2002//
+/DESCR/1.1/Mon Dec  9 22:35:48 2002//
+/DESCR-expat/1.1/Mon Dec  9 22:35:48 2002//
+/DESCR-mpz/1.1/Mon Dec  9 22:35:48 2002//
+/DESCR-tests/1.1/Mon Dec  9 22:35:48 2002//
+/DESCR-tkinter/1.1/Mon Dec  9 22:35:49 2002//
+/DESCR-tools/1.1/Mon Dec  9 22:35:49 2002//
+/INSTALL/1.1/Mon Dec  9 22:35:49 2002//
+/PFRAG.mm/1.1/Mon Dec  9 22:35:49 2002//
+/PFRAG.shared/1.2/Mon Dec  9 22:35:49 2002//
+/PLIST/1.2/Mon Dec  9 22:35:49 2002//
+/PFRAG-tkinter.no_shared/1.1/Sat Jun 14 18:12:31 2003//
+/PLIST-expat/1.2/Sat Jun 14 17:49:39 2003//
+/PLIST-mpz/1.2/Sat Jun 14 17:49:52 2003//
+/PLIST-tests/1.3/Sat Jun 14 17:50:42 2003//
+/PLIST-tkinter/1.2/Sat Jun 14 17:51:00 2003//
+/PLIST-tools/1.2/Sat Jun 14 17:42:48 2003//
 D
diff python.orig/2.1/pkg/DEINSTALL-idle python/2.1/pkg/DEINSTALL-idle
--- python.orig/2.1/pkg/DEINSTALL-idle	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/DEINSTALL-idle	Sun Aug 10 01:36:29 2003
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# $OpenBSD: DEINSTALL,v 1.1 2002/02/15 19:42:18 matt Exp $
+#
+# Clean up python symlink, if it was ours.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ ${PREFIX}/bin/idle -ef ${PREFIX}/bin/idle2.1 ]
+then
+	rm -f ${PREFIX}/bin/idle
+fi
+
diff python.orig/2.1/pkg/DESCR python/2.1/pkg/DESCR
--- python.orig/2.1/pkg/DESCR	Fri Feb 15 20:42:18 2002
+++ python/2.1/pkg/DESCR	Mon Aug 11 15:30:36 2003
@@ -14,8 +14,11 @@
 internal documentation for hints.
 
 Flavors:
-	tk       - builds tkinter module, depends on Tk
-	threads  - build with thread support
-	no_tools - do not build tools package
-
-WWW: ${HOMEPAGE}
+	no_bsddb   - do not build bsdb package
+	no_expat   - do not build expat package
+   no_gdbm    - do not build gdbm package
+   no_idle    - do not build idle package
+   no_mpz     - do not build mpz package
+   no_tests   - do not build tests package
+	no_tkinter - do not build tkinter package
+	no_tools   - do not build tools package
diff python.orig/2.1/pkg/DESCR-bsddb python/2.1/pkg/DESCR-bsddb
--- python.orig/2.1/pkg/DESCR-bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/DESCR-bsddb	Mon Aug 11 15:19:21 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the bsddb, for using the Berkeley DB library in
+Python.
diff python.orig/2.1/pkg/DESCR-expat python/2.1/pkg/DESCR-expat
--- python.orig/2.1/pkg/DESCR-expat	Fri Feb 15 20:42:18 2002
+++ python/2.1/pkg/DESCR-expat	Mon Aug 11 15:19:25 2003
@@ -12,6 +12,3 @@
 applications. See the internal documentation for hints.
 
 This package contains support for the expat XML parser.
-
-WWW: ${HOMEPAGE}
-
diff python.orig/2.1/pkg/DESCR-gdbm python/2.1/pkg/DESCR-gdbm
--- python.orig/2.1/pkg/DESCR-gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/DESCR-gdbm	Mon Aug 11 15:19:28 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the gdbm, for using the GNU DBM library in
+Python.
diff python.orig/2.1/pkg/DESCR-idle python/2.1/pkg/DESCR-idle
--- python.orig/2.1/pkg/DESCR-idle	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/DESCR-idle	Mon Aug 11 15:19:33 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains IDE for Python.
diff python.orig/2.1/pkg/DESCR-mpz python/2.1/pkg/DESCR-mpz
--- python.orig/2.1/pkg/DESCR-mpz	Fri Feb 15 20:42:18 2002
+++ python/2.1/pkg/DESCR-mpz	Mon Aug 11 15:19:36 2003
@@ -13,6 +13,3 @@
 
 This package contains mpz, the GNU arbitrary magnitude integer
 module.
-
-WWW: ${HOMEPAGE}
-
diff python.orig/2.1/pkg/DESCR-tests python/2.1/pkg/DESCR-tests
--- python.orig/2.1/pkg/DESCR-tests	Fri Feb 15 20:42:18 2002
+++ python/2.1/pkg/DESCR-tests	Mon Aug 11 15:19:39 2003
@@ -12,5 +12,3 @@
 applications. See the internal documentation for hints.
 
 This package contains the Python testsuite.
-
-WWW: ${HOMEPAGE}
diff python.orig/2.1/pkg/DESCR-tkinter python/2.1/pkg/DESCR-tkinter
--- python.orig/2.1/pkg/DESCR-tkinter	Fri Feb 15 20:42:18 2002
+++ python/2.1/pkg/DESCR-tkinter	Mon Aug 11 15:19:46 2003
@@ -13,5 +13,3 @@
 
 This package contains the Tkinter module, for using the tk toolkit
 in Python.
-
-WWW: ${HOMEPAGE}
diff python.orig/2.1/pkg/DESCR-tools python/2.1/pkg/DESCR-tools
--- python.orig/2.1/pkg/DESCR-tools	Fri Feb 15 20:42:18 2002
+++ python/2.1/pkg/DESCR-tools	Mon Aug 11 15:19:54 2003
@@ -12,5 +12,3 @@
 applications. See the internal documentation for hints.
 
 This package contains extra tools that Python users may find useful.
-
-WWW: ${HOMEPAGE}
diff python.orig/2.1/pkg/INSTALL-idle python/2.1/pkg/INSTALL-idle
--- python.orig/2.1/pkg/INSTALL-idle	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/INSTALL-idle	Sun Aug 10 01:36:05 2003
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# $OpenBSD: INSTALL,v 1.1 2002/02/15 19:42:18 matt Exp $
+#
+# Set us up as the default python if there is not one already.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ x$2 = xPOST-INSTALL ]
+then
+	if [ ! -e ${PREFIX}/bin/idle ]
+	then
+		cd ${PREFIX}/bin
+		ln -s idle2.1 idle
+	else
+		cat <<EOT
+
++---------------
+| ${PREFIX}/bin/idle already exists.  If you want to use this
+| package as your system default idle, make ${PREFIX}/bin/idle a
+| symlink to ${PREFIX}/bin/idle2.1.
++---------------
+
+EOT
+	fi
+fi
+
diff python.orig/2.1/pkg/PFRAG.shared python/2.1/pkg/PFRAG.shared
--- python.orig/2.1/pkg/PFRAG.shared	Mon Feb 25 22:25:37 2002
+++ python/2.1/pkg/PFRAG.shared	Sun Jun 15 22:52:08 2003
@@ -1,8 +1,8 @@
-@comment $OpenBSD: PFRAG.shared,v 1.2 2002/02/25 21:25:37 matt Exp $
-%%mm%%
+@comment $OpenBSD$
 lib/libpython2.1.so.0.0
-DYNLIBDIR(%B)
+DYNLIBDIR(%D/lib)
 lib/python2.1/config/libpython2.1.so.0.0
+%%mm%%
 lib/python2.1/lib-dynload/_codecsmodule.so
 lib/python2.1/lib-dynload/_curses_panel.so
 lib/python2.1/lib-dynload/_cursesmodule.so
@@ -13,7 +13,6 @@
 lib/python2.1/lib-dynload/_weakref.so
 lib/python2.1/lib-dynload/arraymodule.so
 lib/python2.1/lib-dynload/binascii.so
-lib/python2.1/lib-dynload/bsddb.so
 lib/python2.1/lib-dynload/cPickle.so
 lib/python2.1/lib-dynload/cStringIO.so
 lib/python2.1/lib-dynload/cmathmodule.so
@@ -28,7 +27,7 @@
 lib/python2.1/lib-dynload/md5module.so
 lib/python2.1/lib-dynload/mmapmodule.so
 lib/python2.1/lib-dynload/newmodule.so
-lib/python2.1/lib-dynload/nis.so
+lib/python2.1/lib-dynload/nismodule.so
 lib/python2.1/lib-dynload/operator.so
 lib/python2.1/lib-dynload/parsermodule.so
 lib/python2.1/lib-dynload/pcre.so
@@ -46,6 +45,6 @@
 lib/python2.1/lib-dynload/timemodule.so
 lib/python2.1/lib-dynload/timingmodule.so
 lib/python2.1/lib-dynload/unicodedata.so
-lib/python2.1/lib-dynload/xreadlines.so
+lib/python2.1/lib-dynload/xreadlinesmodule.so
 lib/python2.1/lib-dynload/zlibmodule.so
 @dirrm lib/python2.1/lib-dynload
diff python.orig/2.1/pkg/PLIST python/2.1/pkg/PLIST
--- python.orig/2.1/pkg/PLIST	Sat May 11 23:35:13 2002
+++ python/2.1/pkg/PLIST	Sun Jun 15 16:30:41 2003
@@ -1,8 +1,8 @@
-@comment $OpenBSD: PLIST,v 1.2 2002/05/11 21:35:13 matt Exp $
+@comment $OpenBSD$
 @option no-default-conflict
 @pkgcfl python-2.1*
-bin/python2.1
 bin/pydoc2.1
+bin/python2.1
 include/python2.1/Python.h
 include/python2.1/abstract.h
 include/python2.1/bitset.h
@@ -676,7 +676,7 @@
 lib/python2.1/lib-old/zmod.py
 lib/python2.1/lib-old/zmod.pyc
 lib/python2.1/lib-old/zmod.pyo
-%%SHARED%%
+%%tkinter%%
 lib/python2.1/linecache.py
 lib/python2.1/linecache.pyc
 lib/python2.1/linecache.pyo
@@ -1013,6 +1013,8 @@
 lib/python2.1/zipfile.pyo
 man/man1/python2.1.1
 share/doc/python2.1/CHANGES.OpenBSD
+%%SHARED%%
+@dirrm share/doc/python2.1
 @dirrm lib/python2.1/xml/sax
 @dirrm lib/python2.1/xml/parsers
 @dirrm lib/python2.1/xml/dom
@@ -1027,4 +1029,3 @@
 @dirrm lib/python2.1/config
 @dirrm lib/python2.1
 @dirrm include/python2.1
-@dirrm share/doc/python2.1
diff python.orig/2.1/pkg/PLIST-bsddb python/2.1/pkg/PLIST-bsddb
--- python.orig/2.1/pkg/PLIST-bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/PLIST-bsddb	Sat Jun 14 19:52:02 2003
@@ -0,0 +1,5 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-bsddb-2.1*
+lib/python2.1/lib-dynload/bsddb.so
+lib/python2.1/lib-dynload/bsddbmodule.so
diff python.orig/2.1/pkg/PLIST-gdbm python/2.1/pkg/PLIST-gdbm
--- python.orig/2.1/pkg/PLIST-gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/PLIST-gdbm	Sun Jun 15 13:34:14 2003
@@ -0,0 +1,5 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-gdbm-2.1*
+lib/python2.1/lib-dynload/gdbm.so
+lib/python2.1/lib-dynload/gdbmmodule.so
diff python.orig/2.1/pkg/PLIST-idle python/2.1/pkg/PLIST-idle
--- python.orig/2.1/pkg/PLIST-idle	Thu Jan  1 01:00:00 1970
+++ python/2.1/pkg/PLIST-idle	Mon Aug 11 17:35:32 2003
@@ -0,0 +1,76 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-idle-2.1*
+bin/idle2.1
+lib/python2.1/Tools/idle/AutoExpand.py
+lib/python2.1/Tools/idle/AutoIndent.py
+lib/python2.1/Tools/idle/Bindings.py
+lib/python2.1/Tools/idle/BrowserControl.py
+lib/python2.1/Tools/idle/CallTipWindow.py
+lib/python2.1/Tools/idle/CallTips.py
+lib/python2.1/Tools/idle/ChangeLog
+lib/python2.1/Tools/idle/ClassBrowser.py
+lib/python2.1/Tools/idle/ColorDelegator.py
+lib/python2.1/Tools/idle/Debugger.py
+lib/python2.1/Tools/idle/Delegator.py
+lib/python2.1/Tools/idle/EditorWindow.py
+lib/python2.1/Tools/idle/FileList.py
+lib/python2.1/Tools/idle/FormatParagraph.py
+lib/python2.1/Tools/idle/FrameViewer.py
+lib/python2.1/Tools/idle/GrepDialog.py
+lib/python2.1/Tools/idle/IOBinding.py
+lib/python2.1/Tools/idle/Icons/folder.gif
+lib/python2.1/Tools/idle/Icons/minusnode.gif
+lib/python2.1/Tools/idle/Icons/openfolder.gif
+lib/python2.1/Tools/idle/Icons/plusnode.gif
+lib/python2.1/Tools/idle/Icons/python.gif
+lib/python2.1/Tools/idle/Icons/tk.gif
+lib/python2.1/Tools/idle/IdleConf.py
+lib/python2.1/Tools/idle/IdleHistory.py
+lib/python2.1/Tools/idle/MultiScrolledLists.py
+lib/python2.1/Tools/idle/MultiStatusBar.py
+lib/python2.1/Tools/idle/NEWS.txt
+lib/python2.1/Tools/idle/ObjectBrowser.py
+lib/python2.1/Tools/idle/OldStackViewer.py
+lib/python2.1/Tools/idle/OutputWindow.py
+lib/python2.1/Tools/idle/ParenMatch.py
+lib/python2.1/Tools/idle/PathBrowser.py
+lib/python2.1/Tools/idle/Percolator.py
+lib/python2.1/Tools/idle/PyParse.py
+lib/python2.1/Tools/idle/PyShell.py
+lib/python2.1/Tools/idle/README.txt
+lib/python2.1/Tools/idle/RemoteInterp.py
+lib/python2.1/Tools/idle/ReplaceDialog.py
+lib/python2.1/Tools/idle/ScriptBinding.py
+lib/python2.1/Tools/idle/ScrolledList.py
+lib/python2.1/Tools/idle/SearchBinding.py
+lib/python2.1/Tools/idle/SearchDialog.py
+lib/python2.1/Tools/idle/SearchDialogBase.py
+lib/python2.1/Tools/idle/SearchEngine.py
+lib/python2.1/Tools/idle/Separator.py
+lib/python2.1/Tools/idle/StackViewer.py
+lib/python2.1/Tools/idle/TODO.txt
+lib/python2.1/Tools/idle/ToolTip.py
+lib/python2.1/Tools/idle/TreeWidget.py
+lib/python2.1/Tools/idle/UndoDelegator.py
+lib/python2.1/Tools/idle/WidgetRedirector.py
+lib/python2.1/Tools/idle/WindowList.py
+lib/python2.1/Tools/idle/ZoomHeight.py
+lib/python2.1/Tools/idle/__init__.py
+lib/python2.1/Tools/idle/config-unix.txt
+lib/python2.1/Tools/idle/config-win.txt
+lib/python2.1/Tools/idle/config.txt
+lib/python2.1/Tools/idle/eventparse.py
+lib/python2.1/Tools/idle/extend.txt
+lib/python2.1/Tools/idle/help.txt
+lib/python2.1/Tools/idle/idle
+lib/python2.1/Tools/idle/idle.bat
+lib/python2.1/Tools/idle/idle.py
+lib/python2.1/Tools/idle/idle.pyw
+lib/python2.1/Tools/idle/idlever.py
+lib/python2.1/Tools/idle/keydefs.py
+lib/python2.1/Tools/idle/setup.py
+lib/python2.1/Tools/idle/testcode.py
+@dirrm lib/python2.1/Tools/idle/Icons
+@dirrm lib/python2.1/Tools/idle
+@unexec rmdir %D/lib/python2.1/Tools 2>/dev/null || true
diff python.orig/2.1/pkg/PLIST-tools python/2.1/pkg/PLIST-tools
--- python.orig/2.1/pkg/PLIST-tools	Sat Mar 23 05:34:23 2002
+++ python/2.1/pkg/PLIST-tools	Sun Aug 10 01:24:52 2003
@@ -61,75 +61,6 @@
 lib/python2.1/Tools/freeze/winmakemakefile.py
 lib/python2.1/Tools/i18n/msgfmt.py
 lib/python2.1/Tools/i18n/pygettext.py
-lib/python2.1/Tools/idle/AutoExpand.py
-lib/python2.1/Tools/idle/AutoIndent.py
-lib/python2.1/Tools/idle/Bindings.py
-lib/python2.1/Tools/idle/BrowserControl.py
-lib/python2.1/Tools/idle/CallTipWindow.py
-lib/python2.1/Tools/idle/CallTips.py
-lib/python2.1/Tools/idle/ChangeLog
-lib/python2.1/Tools/idle/ClassBrowser.py
-lib/python2.1/Tools/idle/ColorDelegator.py
-lib/python2.1/Tools/idle/Debugger.py
-lib/python2.1/Tools/idle/Delegator.py
-lib/python2.1/Tools/idle/EditorWindow.py
-lib/python2.1/Tools/idle/FileList.py
-lib/python2.1/Tools/idle/FormatParagraph.py
-lib/python2.1/Tools/idle/FrameViewer.py
-lib/python2.1/Tools/idle/GrepDialog.py
-lib/python2.1/Tools/idle/IOBinding.py
-lib/python2.1/Tools/idle/Icons/folder.gif
-lib/python2.1/Tools/idle/Icons/minusnode.gif
-lib/python2.1/Tools/idle/Icons/openfolder.gif
-lib/python2.1/Tools/idle/Icons/plusnode.gif
-lib/python2.1/Tools/idle/Icons/python.gif
-lib/python2.1/Tools/idle/Icons/tk.gif
-lib/python2.1/Tools/idle/IdleConf.py
-lib/python2.1/Tools/idle/IdleHistory.py
-lib/python2.1/Tools/idle/MultiScrolledLists.py
-lib/python2.1/Tools/idle/MultiStatusBar.py
-lib/python2.1/Tools/idle/NEWS.txt
-lib/python2.1/Tools/idle/ObjectBrowser.py
-lib/python2.1/Tools/idle/OldStackViewer.py
-lib/python2.1/Tools/idle/OutputWindow.py
-lib/python2.1/Tools/idle/ParenMatch.py
-lib/python2.1/Tools/idle/PathBrowser.py
-lib/python2.1/Tools/idle/Percolator.py
-lib/python2.1/Tools/idle/PyParse.py
-lib/python2.1/Tools/idle/PyShell.py
-lib/python2.1/Tools/idle/README.txt
-lib/python2.1/Tools/idle/RemoteInterp.py
-lib/python2.1/Tools/idle/ReplaceDialog.py
-lib/python2.1/Tools/idle/ScriptBinding.py
-lib/python2.1/Tools/idle/ScrolledList.py
-lib/python2.1/Tools/idle/SearchBinding.py
-lib/python2.1/Tools/idle/SearchDialog.py
-lib/python2.1/Tools/idle/SearchDialogBase.py
-lib/python2.1/Tools/idle/SearchEngine.py
-lib/python2.1/Tools/idle/Separator.py
-lib/python2.1/Tools/idle/StackViewer.py
-lib/python2.1/Tools/idle/TODO.txt
-lib/python2.1/Tools/idle/ToolTip.py
-lib/python2.1/Tools/idle/TreeWidget.py
-lib/python2.1/Tools/idle/UndoDelegator.py
-lib/python2.1/Tools/idle/WidgetRedirector.py
-lib/python2.1/Tools/idle/WindowList.py
-lib/python2.1/Tools/idle/ZoomHeight.py
-lib/python2.1/Tools/idle/__init__.py
-lib/python2.1/Tools/idle/config-unix.txt
-lib/python2.1/Tools/idle/config-win.txt
-lib/python2.1/Tools/idle/config.txt
-lib/python2.1/Tools/idle/eventparse.py
-lib/python2.1/Tools/idle/extend.txt
-lib/python2.1/Tools/idle/help.txt
-lib/python2.1/Tools/idle/idle
-lib/python2.1/Tools/idle/idle.bat
-lib/python2.1/Tools/idle/idle.py
-lib/python2.1/Tools/idle/idle.pyw
-lib/python2.1/Tools/idle/idlever.py
-lib/python2.1/Tools/idle/keydefs.py
-lib/python2.1/Tools/idle/setup.py
-lib/python2.1/Tools/idle/testcode.py
 lib/python2.1/Tools/modulator/EXAMPLE.py
 lib/python2.1/Tools/modulator/README
 lib/python2.1/Tools/modulator/ScrolledListbox.py
@@ -251,8 +182,6 @@
 @dirrm lib/python2.1/Tools/pynche
 @dirrm lib/python2.1/Tools/modulator/Templates
 @dirrm lib/python2.1/Tools/modulator
-@dirrm lib/python2.1/Tools/idle/Icons
-@dirrm lib/python2.1/Tools/idle
 @dirrm lib/python2.1/Tools/i18n
 @dirrm lib/python2.1/Tools/freeze
 @dirrm lib/python2.1/Tools/faqwiz
@@ -261,4 +190,4 @@
 @dirrm lib/python2.1/Tools/bgen/bgen
 @dirrm lib/python2.1/Tools/bgen
 @dirrm lib/python2.1/Tools/audiopy
-@dirrm lib/python2.1/Tools
+@unexec rmdir %D/lib/python2.1/Tools 2>/dev/null || true
diff python.orig/2.2/CVS/Entries python/2.2/CVS/Entries
--- python.orig/2.2/CVS/Entries	Wed Jul 30 20:59:28 2003
+++ python/2.2/CVS/Entries	Tue Dec 10 00:00:00 2002
@@ -1,5 +1,5 @@
-/Makefile/1.3/Tue Oct  8 02:52:25 2002//
-/distinfo/1.2/Sat May 11 21:35:13 2002//
 D/files////
 D/patches////
 D/pkg////
+/Makefile/1.3/Mon Dec  9 22:35:50 2002//
+/distinfo/1.2/Mon Dec  9 22:35:50 2002//
diff python.orig/2.2/Makefile python/2.2/Makefile
--- python.orig/2.2/Makefile	Tue Oct  8 04:52:25 2002
+++ python/2.2/Makefile	Thu Jul 31 21:35:45 2003
@@ -1,8 +1,10 @@
 # $OpenBSD: Makefile,v 1.3 2002/10/08 02:52:25 brad Exp $
 
 VERSION=	2.2
-PATCHLEVEL=	.1
-PKG_PATCHLEVEL=	p1
+PATCHLEVEL=	.3
+PKG_PATCHLEVEL=
 
-.include <bsd.port.mk>
+CONFIGURE_STYLE=	dest
+CONFIGURE_ARGS=		--without-pymalloc
 
+.include <bsd.port.mk>
diff python.orig/2.2/distinfo python/2.2/distinfo
--- python.orig/2.2/distinfo	Sat May 11 23:35:13 2002
+++ python/2.2/distinfo	Tue Jun 17 23:22:19 2003
@@ -1,3 +1,3 @@
-MD5 (Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
-RMD160 (Python-2.2.1.tgz) = 793ea1959cddb81075f8b918f5cd573d7a8ebae3
-SHA1 (Python-2.2.1.tgz) = 12905ad4bc4f3006366a495275259661db7b8604
+MD5 (Python-2.2.3.tgz) = 169f89f318e252dac0c54dd1b165d229
+RMD160 (Python-2.2.3.tgz) = 3590f813582d65194b467f4ab450e360e35eb40e
+SHA1 (Python-2.2.3.tgz) = 177d587e77e0eaa14131ab0d0d0b470777de4400
diff python.orig/2.2/files/CHANGES.OpenBSD python/2.2/files/CHANGES.OpenBSD
--- python.orig/2.2/files/CHANGES.OpenBSD	Sat May 11 23:35:13 2002
+++ python/2.2/files/CHANGES.OpenBSD	Wed Jun 18 01:03:58 2003
@@ -4,26 +4,18 @@
 1.  tempfile.py was patched to not try /usr/tmp as a possible
     tempfile directory.
 
-2.  test_fcntl.py was patched to support OpenBSD 3.0 and above.
-
-3.  libpython is created as a shared library, and the pthread stack
+2.  libpython is created as a shared library, and the pthread stack
     size was doubled to support this with complex applications such
     as Zope.
 
-4.  OpenBSD threads are used for threading support.
+3.  OpenBSD threads are used for threading support.
 
-5.  The interpreter is called "python2.2", and pydoc "pydoc2.2" in
+4.  The interpreter is called "python2.2", and pydoc "pydoc2.2" in
     order to support multiple versions of Python coexisting on the
     same system.  If no "python" binary exists, a symlink to
     "python2.2" is created when the package is installed.
 
-6.  _localemodule.c was changed so it would build.
-
-7.  __va_copy was used where appropriate so python would work on
-    non-i386 architectures such as powerpc.
-
 These changes are available in the OpenBSD CVS repository
 <http://www.openbsd.org/anoncvs.html> in ports/lang/python.
 
 $Id: CHANGES.OpenBSD,v 1.1 2002/05/11 21:35:13 matt Exp $
-
diff python.orig/2.2/files/CVS/Entries python/2.2/files/CVS/Entries
--- python.orig/2.2/files/CVS/Entries	Wed Jul 30 20:53:54 2003
+++ python/2.2/files/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -1,7 +1,7 @@
-/CHANGES.OpenBSD/1.1/Sat May 11 21:35:13 2002//
-/Setup/1.1/Fri Feb 15 19:42:18 2002//
-/Setup.expat/1.1/Fri Feb 15 19:42:18 2002//
-/Setup.mpz/1.1/Fri Feb 15 19:42:18 2002//
-/Setup.tkinter/1.1/Fri Feb 15 19:42:18 2002//
-/pydoc/1.1/Fri Feb 15 19:42:18 2002//
+/CHANGES.OpenBSD/1.1/Mon Dec  9 22:35:50 2002//
+/Setup/1.1/Mon Dec  9 22:35:50 2002//
+/Setup.expat/1.1/Mon Dec  9 22:35:50 2002//
+/Setup.tkinter/1.1/Mon Dec  9 22:35:50 2002//
+/Setup.mpz/1.1/Tue Jun 17 23:20:54 2003//
+/pydoc/1.1/Fri Jul  4 17:14:13 2003//
 D
diff python.orig/2.2/files/Setup python/2.2/files/Setup
--- python.orig/2.2/files/Setup	Fri Feb 15 20:42:18 2002
+++ python/2.2/files/Setup	Wed Jun 18 01:57:22 2003
@@ -97,7 +97,9 @@
 # setup.py script in the root of the Python source tree.
 
 posix posixmodule.c		# posix (UNIX) system calls
+errno errnomodule.c		# posix (UNIX) errno values
 _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
 # default.  Usually they can be detected and built as dynamically
@@ -109,6 +111,9 @@
 
 # ======================================================================
 
+# The Python symtable module depends on .h files that setup.py doesn't track
+_symtable symtablemodule.c
+
 # The SGI specific GL module:
 
 GLHACK=-Dclear=__GLclear
@@ -162,7 +167,6 @@
 fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
 pwd pwdmodule.c		# pwd(3) 
 grp grpmodule.c		# grp(3)
-errno errnomodule.c	# posix (UNIX) errno values
 select selectmodule.c	# select(2); not on ancient System V
 
 # Memory-mapped files (also works on Win32).
@@ -169,7 +173,7 @@
 mmap mmapmodule.c
 
 # Dynamic readlines
-#xreadlines xreadlinesmodule.c
+xreadlines xreadlinesmodule.c
 
 # for socket(2), without SSL support.
 #_socket socketmodule.c
@@ -191,7 +195,7 @@
 # Some more UNIX dependent modules -- off by default, since these
 # are not supported by all UNIX systems:
 
-#nis nismodule.c -lnsl	# Sun yellow pages -- not everywhere
+nis nismodule.c #-lnsl	# Sun yellow pages -- not everywhere
 termios termios.c	# Steen Lumholt's termios module
 resource resource.c	# Jeremy Hylton's rlimit interface
 
@@ -217,22 +221,6 @@
 sha shamodule.c
 
 
-# The mpz module interfaces to the GNU Multiple Precision library.
-# You need to ftp the GNU MP library.  
-# The GMP variable must point to the GMP source directory.
-# This was originally written and tested against GMP 1.2 and 1.3.2.
-# It has been modified by Rob Hooft to work with 2.0.2 as well, but I
-# haven't tested it recently.
-
-# A compatible MP library unencombered by the GPL also exists.  It was
-# posted to comp.sources.misc in volume 40 and is widely available from
-# FTP archive sites. One URL for it is:
-# ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
-
-#GMP=/ufs/guido/src/gmp
-#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
-
-
 # SGI IRIX specific modules -- off by default.
 
 # These module work on any SGI machine:
@@ -285,49 +273,7 @@
 timing timingmodule.c
 
 
-# The _tkinter module.
-#
-# The command for _tkinter is long and site specific.  Please
-# uncomment and/or edit those parts as indicated.  If you don't have a
-# specific extension (e.g. Tix or BLT), leave the corresponding line
-# commented out.  (Leave the trailing backslashes in!  If you
-# experience strange errors, you may want to join all uncommented
-# lines and remove the backslashes -- the backslash interpretation is
-# done by the shell's "read" command and it may not be implemented on
-# every system.
 
-# *** Always uncomment this (leave the leading underscore in!):
-# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
-# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
-#	-L/usr/local/lib \
-# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-#	-I/usr/local/include \
-# *** Uncomment and edit to reflect where your X11 header files are:
-#	-I/usr/X11R6/include \
-# *** Or uncomment this for Solaris:
-#	-I/usr/openwin/include \
-# *** Uncomment and edit for Tix extension only:
-#	-DWITH_TIX -ltix8.1.8.2 \
-# *** Uncomment and edit for BLT extension only:
-#	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
-# *** Uncomment and edit for PIL (TkImaging) extension only:
-#     (See http://www.pythonware.com/products/pil/ for more info)
-#	-DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
-# *** Uncomment and edit for TOGL extension only:
-#	-DWITH_TOGL togl.c \
-# *** Uncomment and edit to reflect your Tcl/Tk versions:
-#	-ltk8.2 -ltcl8.2 \
-# *** Uncomment and edit to reflect where your X11 libraries are:
-#	-L/usr/X11R6/lib \
-# *** Or uncomment this for Solaris:
-#	-L/usr/openwin/lib \
-# *** Uncomment these for TOGL extension only:
-#	-lGL -lGLU -lXext -lXmu \
-# *** Uncomment for AIX:
-#	-lld \
-# *** Always uncomment this; X11 libraries to link with:
-#	-lX11
-
 # Lance Ellinghaus's modules:
 
 rotor rotormodule.c		# enigma-inspired encryption
@@ -343,14 +289,9 @@
 
 _curses _cursesmodule.c -lcurses -ltermcap
 # Wrapper for the panel library that's part of ncurses and SYSV curses.
-_curses_panel _curses_panel.c -lpanel -lcurses 
+_curses_panel _curses_panel.c -lpanel -lncurses 
 
 
-# Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
-
-new newmodule.c
-
-
 # Generic (SunOS / SVR4) dynamic loading module.
 # This is not needed for dynamic loading of Python modules --
 # it is a highly experimental and dangerous device for calling
@@ -375,36 +316,6 @@
 
 dbm dbmmodule.c 	# dbm(3) may require -lndbm or similar
 
-# Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
-#
-# First, look at Setup.config; configure may have set this for you.
-
-#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
-
-
-# Berkeley DB interface.
-#
-# This requires the Berkeley DB code, see
-# ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
-#
-# Edit the variables DB and DBPORT to point to the db top directory
-# and the subdirectory of PORT where you built it.
-#
-# (See http://electricrain.com/greg/python/bsddb3/ for an interface to
-# BSD DB 3.x.)
-
-# Note: If a db.h file is found by configure, bsddb will be enabled
-# automatically via Setup.config.in.  It only needs to be enabled here
-# if it is not automatically enabled there; check the generated
-# Setup.config before enabling it here.
-
-#DB=/depot/sundry/src/berkeley-db/db.1.85
-#DBPORT=$(DB)/PORT/irix.5.3
-#bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
-bsddb bsddbmodule.c
-
-
-
 # Helper module for various ascii-encoders
 binascii binascii.c
 
@@ -436,5 +347,12 @@
 # Andrew Kuchling's zlib module.
 # This require zlib 1.1.3 (or later).
 # See http://www.cdrom.com/pub/infozip/zlib/
-zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
+zlib zlibmodule.c -lz
 
+
+
+# Example -- included for reference only:
+# xx xxmodule.c
+
+# Another example -- the 'xxsubtype' module shows C-level subtyping in action
+xxsubtype xxsubtype.c
diff python.orig/2.2/files/Setup.bsddb python/2.2/files/Setup.bsddb
--- python.orig/2.2/files/Setup.bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.2/files/Setup.bsddb	Wed Jun 18 01:01:26 2003
@@ -0,0 +1,22 @@
+@NOSHARED@*shared*
+
+# Berkeley DB interface.
+#
+# This requires the Berkeley DB code, see
+# ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
+#
+# Edit the variables DB and DBPORT to point to the db top directory
+# and the subdirectory of PORT where you built it.
+#
+# (See http://electricrain.com/greg/python/bsddb3/ for an interface to
+# BSD DB 3.x.)
+
+# Note: If a db.h file is found by configure, bsddb will be enabled
+# automatically via Setup.config.in.  It only needs to be enabled here
+# if it is not automatically enabled there; check the generated
+# Setup.config before enabling it here.
+
+#DB=/depot/sundry/src/berkeley-db/db.1.85
+#DBPORT=$(DB)/PORT/irix.5.3
+#bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
+bsddb bsddbmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -ldb
diff python.orig/2.2/files/Setup.expat python/2.2/files/Setup.expat
--- python.orig/2.2/files/Setup.expat	Fri Feb 15 20:42:18 2002
+++ python/2.2/files/Setup.expat	Wed Jun 18 01:02:50 2003
@@ -2,22 +2,18 @@
 
 # Interface to the Expat XML parser
 #
-# Expat is written by James Clark and must be downloaded separately
-# (see below).  The pyexpat module was written by Paul Prescod after a
-# prototype by Jack Jansen.
+# Expat was written by James Clark and is now maintained by a group of
+# developers on SourceForge; see www.libexpat.org for more
+# information.  The pyexpat module was written by Paul Prescod after a
+# prototype by Jack Jansen.  Expat 1.95.2 is the recommended version
+# of Expat for use with Python.  Usage of a system shared
+# libexpat.so/expat.dll is not advised; a static version of the
+# library is sufficient.
 #
-# The Expat dist includes Windows .lib and .dll files.  Home page is at
-# http://www.jclark.com/xml/expat.html, the current production release is
-# always ftp://ftp.jclark.com/pub/xml/expat.zip.
+# The Expat library should be installed so that the linker will find
+# it properly.
 #
-# EXPAT_DIR, below, should point to the expat/ directory created by
-# unpacking the Expat source distribution.
+# More information on Expat can be found at www.libexpat.org.
 #
-# Note: the expat build process doesn't yet build a libexpat.a; you can
-# do this manually while we try convince the author to add it.  To do so,
-# cd to EXPAT_DIR, run "make" if you have not done so, then run:
-#
-#    ar cr libexpat.a xmltok/*.o xmlparse/*.o
-#
-pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(PREFIX)/include -L$(PREFIX)/lib -lexpat
-
+#pyexpat pyexpat.c -DHAVE_EXPAT_H -lexpat
+pyexpat pyexpat.c -DHAVE_EXPAT_H -I${LOCALBASE}/include -L${LOCALBASE}/lib -lexpat
diff python.orig/2.2/files/Setup.gdbm python/2.2/files/Setup.gdbm
--- python.orig/2.2/files/Setup.gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.2/files/Setup.gdbm	Wed Jun 18 01:00:17 2003
@@ -0,0 +1,7 @@
+@NOSHARED@*shared*
+
+# Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
+#
+# First, look at Setup.config; configure may have set this for you.
+
+gdbm gdbmmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -lgdbm
diff python.orig/2.2/files/Setup.tkinter python/2.2/files/Setup.tkinter
--- python.orig/2.2/files/Setup.tkinter	Fri Feb 15 20:42:18 2002
+++ python/2.2/files/Setup.tkinter	Wed Jun 18 01:05:39 2003
@@ -16,23 +16,24 @@
 
 # *** Always uncomment this (leave the leading underscore in!):
 _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
+# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
+	-L${LOCALBASE}/lib \
 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-	-I${PREFIX}/include/tcl8.3 \
-	-I${PREFIX}/include/tk8.3 \
+	-I${LOCALBASE}/include/tcl8.3 \
+	-I${LOCALBASE}/include/tk8.3 \
 # *** Uncomment and edit to reflect where your X11 header files are:
 	-I${X11BASE}/include \
 # *** Or uncomment this for Solaris:
 #	-I/usr/openwin/include \
 # *** Uncomment and edit for Tix extension only:
-#	-DWITH_TIX -ltix4.1.8.0 \
+#	-DWITH_TIX -ltix8.1.8.2 \
 # *** Uncomment and edit for BLT extension only:
 #	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
 # *** Uncomment and edit for PIL (TkImaging) extension only:
+#     (See http://www.pythonware.com/products/pil/ for more info)
 #	-DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
 # *** Uncomment and edit for TOGL extension only:
 #	-DWITH_TOGL togl.c \
-# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
-	-L${PREFIX}/lib \
 # *** Uncomment and edit to reflect your Tcl/Tk versions:
 	-ltk83 -ltcl83 \
 # *** Uncomment and edit to reflect where your X11 libraries are:
diff python.orig/2.2/files/idle python/2.2/files/idle
--- python.orig/2.2/files/idle	Thu Jan  1 01:00:00 1970
+++ python/2.2/files/idle	Mon Aug 11 17:25:03 2003
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+/usr/bin/env python@VERSION@ @LOCALBASE@/lib/python@VERSION@/Tools/idle/idle.py
diff python.orig/2.2/files/pydoc python/2.2/files/pydoc
--- python.orig/2.2/files/pydoc	Fri Feb 15 20:42:18 2002
+++ python/2.2/files/pydoc	Thu Jan  1 01:00:00 1970
@@ -1,4 +0,0 @@
-#!/usr/bin/env python2.2
-
-import pydoc
-pydoc.cli()
diff python.orig/2.2/patches/CVS/Entries python/2.2/patches/CVS/Entries
--- python.orig/2.2/patches/CVS/Entries	Wed Jul 30 20:53:58 2003
+++ python/2.2/patches/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -1,13 +1,13 @@
-/patch-Lib_os_py/1.1/Tue Oct  8 02:52:25 2002//
-/patch-Lib_tempfile_py/1.2/Sat May 11 21:35:13 2002//
-/patch-Lib_test_test_fcntl_py/1.1/Sat May 11 21:35:13 2002//
-/patch-Makefile_pre_in/1.1/Fri Feb 15 19:42:18 2002//
-/patch-Modules_Setup_dist/1.1/Tue Oct  8 02:52:25 2002//
-/patch-Modules__localemodule_c/1.1/Sat May 11 21:35:13 2002//
-/patch-Objects_abstract_c/1.2/Sat May 11 21:35:13 2002//
-/patch-Objects_stringobject_c/1.2/Sat May 11 21:35:13 2002//
-/patch-Python_getargs_c/1.2/Sat May 11 21:35:13 2002//
-/patch-Python_modsupport_c/1.2/Sat May 11 21:35:13 2002//
-/patch-configure_in/1.4/Sun May 12 01:05:49 2002//
-/patch-setup_py/1.3/Tue Oct  8 02:52:25 2002//
+/patch-Lib_tempfile_py/1.2/Mon Dec  9 22:35:51 2002//
+/patch-configure_in/1.4/Mon Dec  9 22:35:52 2002//
+/patch-setup_py/1.3/Mon Dec  9 22:35:52 2002//
+/patch-Lib_os_py/1.1/Fri Jul  4 17:14:13 2003//
+/patch-Lib_test_test_fcntl_py/1.1/Fri Jul  4 17:14:13 2003//
+/patch-Makefile_pre_in/1.1/Tue Jun 17 23:34:12 2003//
+/patch-Modules_Setup_dist/1.1/Fri Jul  4 17:14:13 2003//
+/patch-Modules__localemodule_c/1.1/Fri Jul  4 17:14:13 2003//
+/patch-Objects_abstract_c/1.2/Fri Jul  4 17:14:13 2003//
+/patch-Objects_stringobject_c/1.2/Fri Jul  4 17:14:13 2003//
+/patch-Python_getargs_c/1.2/Fri Jul  4 17:14:13 2003//
+/patch-Python_modsupport_c/1.2/Fri Jul  4 17:14:13 2003//
 D
diff python.orig/2.2/patches/patch-Lib_os_py python/2.2/patches/patch-Lib_os_py
--- python.orig/2.2/patches/patch-Lib_os_py	Tue Oct  8 04:52:25 2002
+++ python/2.2/patches/patch-Lib_os_py	Thu Jan  1 01:00:00 1970
@@ -1,79 +0,0 @@
-$OpenBSD: patch-Lib_os_py,v 1.1 2002/10/08 02:52:25 brad Exp $
---- Lib/os.py.orig	Mon Oct  7 22:16:49 2002
-+++ Lib/os.py	Mon Oct  7 22:16:51 2002
-@@ -298,7 +298,7 @@ def execvp(file, args):
-     _execvpe(file, args)
- 
- def execvpe(file, args, env):
--    """execv(file, args, env)
-+    """execvpe(file, args, env)
- 
-     Execute the executable file (which is searched for along $PATH)
-     with argument list args and environment env , replacing the
-@@ -308,8 +308,9 @@ def execvpe(file, args, env):
- 
- __all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"])
- 
--_notfound = None
- def _execvpe(file, args, env=None):
-+    from errno import ENOENT, ENOTDIR
-+
-     if env is not None:
-         func = execve
-         argrest = (args, env)
-@@ -317,7 +318,7 @@ def _execvpe(file, args, env=None):
-         func = execv
-         argrest = (args,)
-         env = environ
--    global _notfound
-+
-     head, tail = path.split(file)
-     if head:
-         apply(func, (file,) + argrest)
-@@ -327,30 +328,21 @@ def _execvpe(file, args, env=None):
-     else:
-         envpath = defpath
-     PATH = envpath.split(pathsep)
--    if not _notfound:
--        if sys.platform[:4] == 'beos':
--            #  Process handling (fork, wait) under BeOS (up to 5.0)
--            #  doesn't interoperate reliably with the thread interlocking
--            #  that happens during an import.  The actual error we need
--            #  is the same on BeOS for posix.open() et al., ENOENT.
--            try: unlink('/_#.# ## #.#')
--            except error, _notfound: pass
--        else:
--            import tempfile
--            t = tempfile.mktemp()
--            # Exec a file that is guaranteed not to exist
--            try: execv(t, ('blah',))
--            except error, _notfound: pass
--    exc, arg = error, _notfound
-+    saved_exc = None
-+    saved_tb = None
-     for dir in PATH:
-         fullname = path.join(dir, file)
-         try:
-             apply(func, (fullname,) + argrest)
--        except error, (errno, msg):
--            if errno != arg[0]:
--                exc, arg = error, (errno, msg)
--    raise exc, arg
--
-+        except error, e:
-+            tb = sys.exc_info()[2]
-+            if (e.errno != ENOENT and e.errno != ENOTDIR
-+                and saved_exc is None):
-+                saved_exc = e
-+                saved_tb = tb
-+    if saved_exc:
-+        raise error, saved_exc, saved_tb
-+    raise error, e, tb
- 
- # Change environ to automatically call putenv() if it exists
- try:
-@@ -618,3 +610,4 @@ try:
-                      _make_statvfs_result)
- except NameError: # statvfs_result may not exist
-     pass
-+
diff python.orig/2.2/patches/patch-Lib_test_test_fcntl_py python/2.2/patches/patch-Lib_test_test_fcntl_py
--- python.orig/2.2/patches/patch-Lib_test_test_fcntl_py	Sat May 11 23:35:13 2002
+++ python/2.2/patches/patch-Lib_test_test_fcntl_py	Thu Jan  1 01:00:00 1970
@@ -1,16 +0,0 @@
-$OpenBSD: patch-Lib_test_test_fcntl_py,v 1.1 2002/05/11 21:35:13 matt Exp $
-
-        This has been submitted to the Python team as part of patch
-        554719.
-
---- Lib/test/test_fcntl.py.orig	Wed Dec  5 18:27:32 2001
-+++ Lib/test/test_fcntl.py	Fri Apr 19 12:07:54 2002
-@@ -19,7 +19,7 @@ else:
- if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
-                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
-                     'bsdos2', 'bsdos3', 'bsdos4',
--                    'openbsd', 'openbsd2'):
-+                    'openbsd', 'openbsd2', 'openbsd3'):
-     lockdata = struct.pack('lxxxxlxxxxlhh', 0, 0, 0, fcntl.F_WRLCK, 0)
- elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']:
-     lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
diff python.orig/2.2/patches/patch-Modules_Setup_dist python/2.2/patches/patch-Modules_Setup_dist
--- python.orig/2.2/patches/patch-Modules_Setup_dist	Tue Oct  8 04:52:25 2002
+++ python/2.2/patches/patch-Modules_Setup_dist	Thu Jan  1 01:00:00 1970
@@ -1,19 +0,0 @@
-$OpenBSD: patch-Modules_Setup_dist,v 1.1 2002/10/08 02:52:25 brad Exp $
---- Modules/Setup.dist.orig	Mon Oct  7 22:18:01 2002
-+++ Modules/Setup.dist	Mon Oct  7 22:18:36 2002
-@@ -97,6 +97,7 @@ PYTHONPATH=$(COREPYTHONPATH)
- # setup.py script in the root of the Python source tree.
- 
- posix posixmodule.c		# posix (UNIX) system calls
-+errno errnomodule.c		# posix (UNIX) errno values
- _sre _sre.c			# Fredrik Lundh's new regular expressions
- new newmodule.c			# Tommy Burnette's 'new' module
- 
-@@ -166,7 +167,6 @@ GLHACK=-Dclear=__GLclear
- #fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
- #pwd pwdmodule.c		# pwd(3) 
- #grp grpmodule.c		# grp(3)
--#errno errnomodule.c	# posix (UNIX) errno values
- #select selectmodule.c	# select(2); not on ancient System V
- 
- # Memory-mapped files (also works on Win32).
diff python.orig/2.2/patches/patch-Modules__localemodule_c python/2.2/patches/patch-Modules__localemodule_c
--- python.orig/2.2/patches/patch-Modules__localemodule_c	Sat May 11 23:35:13 2002
+++ python/2.2/patches/patch-Modules__localemodule_c	Thu Jan  1 01:00:00 1970
@@ -1,45 +0,0 @@
-$OpenBSD: patch-Modules__localemodule_c,v 1.1 2002/05/11 21:35:13 matt Exp $
-
-        This patch is in Python CVS for the 2.2 branch and the head.
-
---- Modules/_localemodule.c.orig	Fri Apr  5 10:26:55 2002
-+++ Modules/_localemodule.c	Fri Apr 19 12:00:55 2002
-@@ -484,19 +484,36 @@ struct langinfo_constant{
-     LANGINFO(AM_STR),
-     LANGINFO(PM_STR),
- 
--    /* The following constants are available only with XPG4. AIX 3.2. only has
--       CODESET. */
-+    /* The following constants are available only with XPG4, but...
-+       AIX 3.2. only has CODESET.
-+       OpenBSD doesn't have CODESET but has T_FMT_AMPM, and doesn't have
-+       a few of the others.
-+       Solution: ifdef-test them all. */
- #ifdef CODESET
-     LANGINFO(CODESET),
- #endif
- #ifdef T_FMT_AMPM
-     LANGINFO(T_FMT_AMPM),
-+#endif
-+#ifdef ERA
-     LANGINFO(ERA),
-+#endif
-+#ifdef ERA_D_FMT
-     LANGINFO(ERA_D_FMT),
-+#endif
-+#ifdef ERA_D_T_FMT
-     LANGINFO(ERA_D_T_FMT),
-+#endif
-+#ifdef ERA_T_FMT
-     LANGINFO(ERA_T_FMT),
-+#endif
-+#ifdef ALT_DIGITS
-     LANGINFO(ALT_DIGITS),
-+#endif
-+#ifdef YESEXPR
-     LANGINFO(YESEXPR),
-+#endif
-+#ifdef NOEXPR
-     LANGINFO(NOEXPR),
- #endif
- #ifdef _DATE_FMT
diff python.orig/2.2/patches/patch-Objects_abstract_c python/2.2/patches/patch-Objects_abstract_c
--- python.orig/2.2/patches/patch-Objects_abstract_c	Sat May 11 23:35:13 2002
+++ python/2.2/patches/patch-Objects_abstract_c	Thu Jan  1 01:00:00 1970
@@ -1,19 +0,0 @@
-$OpenBSD: patch-Objects_abstract_c,v 1.2 2002/05/11 21:35:13 matt Exp $
-
-        This has been submitted to the Python team as part of patch
-        554716.
-
---- Objects/abstract.c.orig	Mon Mar 11 05:12:58 2002
-+++ Objects/abstract.c	Fri Apr 19 09:05:16 2002
-@@ -1789,7 +1789,11 @@ objargs_mktuple(va_list va)
- #ifdef VA_LIST_IS_ARRAY
- 	memcpy(countva, va, sizeof(va_list));
- #else
-+#ifdef __va_copy
-+	__va_copy(countva, va);
-+#else
- 	countva = va;
-+#endif
- #endif
- 
- 	while (((PyObject *)va_arg(countva, PyObject *)) != NULL)
diff python.orig/2.2/patches/patch-Objects_stringobject_c python/2.2/patches/patch-Objects_stringobject_c
--- python.orig/2.2/patches/patch-Objects_stringobject_c	Sat May 11 23:35:13 2002
+++ python/2.2/patches/patch-Objects_stringobject_c	Thu Jan  1 01:00:00 1970
@@ -1,19 +0,0 @@
-$OpenBSD: patch-Objects_stringobject_c,v 1.2 2002/05/11 21:35:13 matt Exp $
-
-        This has been submitted to the Python team as part of patch
-        554716.
-
---- Objects/stringobject.c.orig	Thu Mar 14 22:01:00 2002
-+++ Objects/stringobject.c	Thu Mar 14 22:01:54 2002
-@@ -175,7 +175,11 @@ PyString_FromFormatV(const char *format,
- #ifdef VA_LIST_IS_ARRAY
- 	memcpy(count, vargs, sizeof(va_list));
- #else
-+#ifdef  __va_copy
-+	__va_copy(count, vargs);
-+#else
- 	count = vargs;
-+#endif
- #endif
- 	/* step 1: figure out how large a buffer we need */
- 	for (f = format; *f; f++) {
diff python.orig/2.2/patches/patch-Python_getargs_c python/2.2/patches/patch-Python_getargs_c
--- python.orig/2.2/patches/patch-Python_getargs_c	Sat May 11 23:35:13 2002
+++ python/2.2/patches/patch-Python_getargs_c	Thu Jan  1 01:00:00 1970
@@ -1,19 +0,0 @@
-$OpenBSD: patch-Python_getargs_c,v 1.2 2002/05/11 21:35:13 matt Exp $
-
-        This has been submitted to the Python team as part of patch
-        554716.
-
---- Python/getargs.c.orig	Sun Dec  2 18:43:33 2001
-+++ Python/getargs.c	Thu Mar 14 22:17:09 2002
-@@ -61,7 +61,11 @@ PyArg_VaParse(PyObject *args, char *form
- #ifdef VA_LIST_IS_ARRAY
- 	memcpy(lva, va, sizeof(va_list));
- #else
-+#ifdef __va_copy
-+	__va_copy(lva, va);
-+#else
- 	lva = va;
-+#endif
- #endif
- 
- 	return vgetargs1(args, format, &lva, 0);
diff python.orig/2.2/patches/patch-Python_modsupport_c python/2.2/patches/patch-Python_modsupport_c
--- python.orig/2.2/patches/patch-Python_modsupport_c	Sat May 11 23:35:13 2002
+++ python/2.2/patches/patch-Python_modsupport_c	Thu Jan  1 01:00:00 1970
@@ -1,19 +0,0 @@
-$OpenBSD: patch-Python_modsupport_c,v 1.2 2002/05/11 21:35:13 matt Exp $
-
-        This has been submitted to the Python team as part of patch
-        554716.
-
---- Python/modsupport.c.orig	Fri Aug 17 13:39:25 2001
-+++ Python/modsupport.c	Thu Mar 14 22:17:27 2002
-@@ -411,7 +411,11 @@ Py_VaBuildValue(char *format, va_list va
- #ifdef VA_LIST_IS_ARRAY
- 	memcpy(lva, va, sizeof(va_list));
- #else
-+#ifdef __va_copy
-+	__va_copy(lva, va);
-+#else
- 	lva = va;
-+#endif
- #endif
- 
- 	if (n < 0)
diff python.orig/2.2/patches/patch-Tools_scripts_pydoc python/2.2/patches/patch-Tools_scripts_pydoc
--- python.orig/2.2/patches/patch-Tools_scripts_pydoc	Thu Jan  1 01:00:00 1970
+++ python/2.2/patches/patch-Tools_scripts_pydoc	Wed Jun 18 01:10:51 2003
@@ -0,0 +1,9 @@
+$OpenBSD$
+--- Tools/scripts/pydoc.orig	Tue Jun 17 23:10:26 2003
++++ Tools/scripts/pydoc	Tue Jun 17 23:10:36 2003
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2.2
+ 
+ import pydoc
+ pydoc.cli()
diff python.orig/2.2/patches/patch-configure_in python/2.2/patches/patch-configure_in
--- python.orig/2.2/patches/patch-configure_in	Sun May 12 03:05:49 2002
+++ python/2.2/patches/patch-configure_in	Wed Jun 18 00:42:27 2003
@@ -3,43 +3,32 @@
         This has been submitted to the Python team as part of patch
         554719.
 
---- configure.in.orig	Mon Mar 11 05:14:23 2002
-+++ configure.in	Sat May 11 20:24:08 2002
-@@ -802,7 +802,21 @@ then
- 	Linux*) LDSHARED="gcc -shared";;
+--- configure.in.orig	Sat Mar 29 22:25:17 2003
++++ configure.in	Tue Jun 17 22:42:09 2003
+@@ -827,13 +827,14 @@ then
+ 	Linux*) LDSHARED='$(CC) -shared';;
  	dgux*) LDSHARED="ld -G";;
  	BSD/OS*/4*) LDSHARED="gcc -shared";;
--	OpenBSD*|NetBSD*|FreeBSD*)
-+	OpenBSD*)
-+		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
-+		then
-+			LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
-+		else
-+			case `uname -r` in
-+			[01].* | 2.[[0-7]] | 2.[[0-7]].*)
-+			  LDSHARED="ld -Bshareable ${LDFLAGS}"
-+			  ;;
-+			*)
-+			  LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
-+			  ;;
-+			esac
-+		fi;;
-+	NetBSD*|FreeBSD*)
+-	OpenBSD*|FreeBSD*)
++	FreeBSD*)
  		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
  		then
  			LDSHARED="cc -shared ${LDFLAGS}"
-@@ -1016,6 +1030,14 @@ then
-     AC_DEFINE(WITH_THREAD)
-     posix_threads=yes
-     LIBOBJS="$LIBOBJS thread.o"
-+elif test "$ac_sys_system" = "OpenBSD"
-+then
-+    posix_threads=yes
-+    LIBS="-pthread $LIBS"
-+    LIBOBJS="$LIBOBJS thread.o"
-+    AC_DEFINE(WITH_THREAD)
-+    AC_DEFINE(_REENTRANT)
-+    AC_DEFINE(_POSIX_THREADS)
- else
-     if test ! -z "$with_threads" -a -d "$with_threads"
-     then LDFLAGS="$LDFLAGS -L$with_threads"
+ 		else
+ 			LDSHARED="ld -Bshareable ${LDFLAGS}"
+ 		fi;;
++	OpenBSD*) LDSHARED="${CC} -shared ${LDFLAGS}";;
+ 	NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
+ 	OpenUNIX*|UnixWare*)
+ 		if test "$GCC" = "yes"
+@@ -1083,8 +1084,8 @@ yes
+     # on HP/UX, pthread.h renames pthread_create to a different symbol name.
+     # So we really have to include pthread.h, and then link.
+     _libs=$LIBS
+-    LIBS="$LIBS -lpthread"
+-    AC_MSG_CHECKING([for pthread_create in -lpthread])
++    LIBS="$LIBS -pthread"
++    AC_MSG_CHECKING([for pthread_create in -pthread])
+     AC_TRY_LINK([#include <pthread.h>
+ 
+ void * start_routine (void *arg) { exit (0); }], [
diff python.orig/2.2/patches/patch-configure_in.orig python/2.2/patches/patch-configure_in.orig
--- python.orig/2.2/patches/patch-configure_in.orig	Thu Jan  1 01:00:00 1970
+++ python/2.2/patches/patch-configure_in.orig	Wed Jun 18 00:34:27 2003
@@ -0,0 +1,23 @@
+$OpenBSD: patch-configure_in,v 1.4 2002/05/12 01:05:49 brad Exp $
+
+        This has been submitted to the Python team as part of patch
+        554719.
+
+--- configure.in.orig	Tue Jun 17 21:50:47 2003
++++ configure.in	Tue Jun 17 21:58:46 2003
+@@ -827,13 +827,14 @@ then
+ 	Linux*) LDSHARED='$(CC) -shared';;
+ 	dgux*) LDSHARED="ld -G";;
+ 	BSD/OS*/4*) LDSHARED="gcc -shared";;
+-	OpenBSD*|FreeBSD*)
++	FreeBSD*)
+ 		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
+ 		then
+ 			LDSHARED="cc -shared ${LDFLAGS}"
+ 		else
+ 			LDSHARED="ld -Bshareable ${LDFLAGS}"
+ 		fi;;
++	OpenBSD*) LDSHARED="${CC} -shared ${LDFLAGS}";;
+ 	NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
+ 	OpenUNIX*|UnixWare*)
+ 		if test "$GCC" = "yes"
diff python.orig/2.2/patches/patch-setup_py python/2.2/patches/patch-setup_py
--- python.orig/2.2/patches/patch-setup_py	Tue Oct  8 04:52:25 2002
+++ python/2.2/patches/patch-setup_py	Wed Jun 18 00:04:01 2003
@@ -1,21 +1,11 @@
 $OpenBSD: patch-setup_py,v 1.3 2002/10/08 02:52:25 brad Exp $
---- setup.py.orig	Tue Mar 26 08:43:04 2002
-+++ setup.py	Mon Oct  7 22:19:31 2002
-@@ -273,8 +273,6 @@ class PyBuildExt(build_ext):
-         exts.append( Extension('pwd', ['pwdmodule.c']) )
-         # grp(3)
-         exts.append( Extension('grp', ['grpmodule.c']) )
--        # posix (UNIX) errno values
--        exts.append( Extension('errno', ['errnomodule.c']) )
-         # select(2); not on ancient System V
-         exts.append( Extension('select', ['selectmodule.c']) )
- 
-@@ -793,7 +791,8 @@ def main():
+--- setup.py.orig	Tue Jun 17 22:03:28 2003
++++ setup.py	Tue Jun 17 22:03:40 2003
+@@ -808,7 +808,7 @@ def main():
            ext_modules=[Extension('struct', ['structmodule.c'])],
  
            # Scripts to install
 -          scripts = ['Tools/scripts/pydoc']
-+          #scripts = ['Tools/scripts/pydoc']
 +          scripts = []
          )
  
diff python.orig/2.2/patches/patch-setup_py.orig python/2.2/patches/patch-setup_py.orig
--- python.orig/2.2/patches/patch-setup_py.orig	Thu Jan  1 01:00:00 1970
+++ python/2.2/patches/patch-setup_py.orig	Mon Dec  9 23:35:52 2002
@@ -0,0 +1,22 @@
+$OpenBSD: patch-setup_py,v 1.3 2002/10/08 02:52:25 brad Exp $
+--- setup.py.orig	Tue Mar 26 08:43:04 2002
++++ setup.py	Mon Oct  7 22:19:31 2002
+@@ -273,8 +273,6 @@ class PyBuildExt(build_ext):
+         exts.append( Extension('pwd', ['pwdmodule.c']) )
+         # grp(3)
+         exts.append( Extension('grp', ['grpmodule.c']) )
+-        # posix (UNIX) errno values
+-        exts.append( Extension('errno', ['errnomodule.c']) )
+         # select(2); not on ancient System V
+         exts.append( Extension('select', ['selectmodule.c']) )
+ 
+@@ -793,7 +791,8 @@ def main():
+           ext_modules=[Extension('struct', ['structmodule.c'])],
+ 
+           # Scripts to install
+-          scripts = ['Tools/scripts/pydoc']
++          #scripts = ['Tools/scripts/pydoc']
++          scripts = []
+         )
+ 
+ # --install-platlib
diff python.orig/2.2/pkg/CVS/Entries python/2.2/pkg/CVS/Entries
--- python.orig/2.2/pkg/CVS/Entries	Wed Jul 30 20:54:01 2003
+++ python/2.2/pkg/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -1,18 +1,18 @@
-/DEINSTALL/1.1/Fri Feb 15 19:42:19 2002//
-/DESCR/1.1/Fri Feb 15 19:42:19 2002//
-/DESCR-expat/1.1/Fri Feb 15 19:42:19 2002//
-/DESCR-mpz/1.1/Fri Feb 15 19:42:19 2002//
-/DESCR-tests/1.1/Fri Feb 15 19:42:19 2002//
-/DESCR-tkinter/1.1/Fri Feb 15 19:42:19 2002//
-/DESCR-tools/1.1/Fri Feb 15 19:42:19 2002//
-/INSTALL/1.1/Fri Feb 15 19:42:19 2002//
-/PFRAG-tkinter.no_shared/1.1/Fri Feb 15 19:42:19 2002//
-/PFRAG.mm/1.1/Fri Feb 15 19:42:19 2002//
-/PFRAG.shared/1.2/Mon Feb 25 21:25:38 2002//
-/PLIST/1.2/Sat May 11 21:35:13 2002//
-/PLIST-expat/1.2/Sat Mar 23 04:34:23 2002//
-/PLIST-mpz/1.2/Sat Mar 23 04:34:23 2002//
-/PLIST-tests/1.3/Sat May 11 21:35:13 2002//
-/PLIST-tkinter/1.2/Sat Mar 23 04:34:23 2002//
-/PLIST-tools/1.2/Sat Mar 23 04:34:23 2002//
+/DEINSTALL/1.1/Mon Dec  9 22:35:53 2002//
+/DESCR/1.1/Mon Dec  9 22:35:53 2002//
+/DESCR-expat/1.1/Mon Dec  9 22:35:53 2002//
+/DESCR-mpz/1.1/Mon Dec  9 22:35:53 2002//
+/DESCR-tests/1.1/Mon Dec  9 22:35:53 2002//
+/DESCR-tkinter/1.1/Mon Dec  9 22:35:53 2002//
+/DESCR-tools/1.1/Mon Dec  9 22:35:54 2002//
+/INSTALL/1.1/Mon Dec  9 22:35:54 2002//
+/PFRAG.shared/1.2/Mon Dec  9 22:35:54 2002//
+/PLIST/1.2/Mon Dec  9 22:35:54 2002//
+/PLIST-tests/1.3/Mon Dec  9 22:35:54 2002//
+/PLIST-tkinter/1.2/Mon Dec  9 22:35:54 2002//
+/PFRAG-tkinter.no_shared/1.1/Tue Jun 17 23:31:40 2003//
+/PFRAG.mm/1.1/Tue Jun 17 23:46:38 2003//
+/PLIST-expat/1.2/Tue Jun 17 23:24:21 2003//
+/PLIST-mpz/1.2/Tue Jun 17 23:24:21 2003//
+/PLIST-tools/1.2/Tue Jun 17 23:24:21 2003//
 D
diff python.orig/2.2/pkg/DEINSTALL python/2.2/pkg/DEINSTALL
--- python.orig/2.2/pkg/DEINSTALL	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DEINSTALL	Mon Aug 11 19:26:49 2003
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $OpenBSD: DEINSTALL,v 1.1 2002/02/15 19:42:19 matt Exp $
+# $OpenBSD$
 #
 # Clean up python symlink, if it was ours.
 #
diff python.orig/2.2/pkg/DEINSTALL-idle python/2.2/pkg/DEINSTALL-idle
--- python.orig/2.2/pkg/DEINSTALL-idle	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/DEINSTALL-idle	Mon Aug 11 19:26:53 2003
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# $OpenBSD$
+#
+# Clean up python symlink, if it was ours.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ ${PREFIX}/bin/idle -ef ${PREFIX}/bin/idle2.2 ]
+then
+	rm -f ${PREFIX}/bin/idle
+fi
+
diff python.orig/2.2/pkg/DESCR python/2.2/pkg/DESCR
--- python.orig/2.2/pkg/DESCR	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DESCR	Mon Aug 11 17:09:15 2003
@@ -1,18 +1,24 @@
-Python is an interpreted, interactive, object-oriented programming
-language that combines remarkable power with very clear syntax. For
-an introduction to programming in Python you are referred to the
-Python Tutorial. The Python Library Reference documents built-in
-and standard types, constants, functions and modules. Finally, the
-Python Reference Manual describes the syntax and semantics of the
+Python is an interpreted, interactive, object-oriented
+programming language that combines remarkable power with
+very clear syntax. For an introduction to programming in
+Python you are referred to the Python Tutorial. The Python
+Library Reference documents built-in and standard types,
+constants, functions and modules. Finally, the Python
+Reference Manual describes the syntax and semantics of the
 core language in (perhaps too) much detail.
 
-Python's basic power can be extended with your own modules written
-in C or C++.  On most systems such modules may be dynamically loaded.
-Python is also adaptable as an extension language for existing
-applications. See the internal documentation for hints.
+Python's basic power can be extended with your own modules
+written in C or C++.  On most systems such modules may be
+dynamically loaded. Python is also adaptable as an
+extension language for existing applications. See the
+internal documentation for hints.
 
 Flavors:
-	no_tkinter	do not build Tkinter (requires tk)
-	no_mpz		do not build mpz (requires gmp)
-
-WWW: ${HOMEPAGE}
+	no_bsddb   - do not build bsdb package
+	no_expat   - do not build expat package
+   no_gdbm    - do not build gdbm package
+   no_idle    - do not build idle package
+   no_mpz     - do not build mpz package
+   no_tests   - do not build tests package
+	no_tkinter - do not build tkinter package
+	no_tools   - do not build tools package
diff python.orig/2.2/pkg/DESCR-bsddb python/2.2/pkg/DESCR-bsddb
--- python.orig/2.2/pkg/DESCR-bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/DESCR-bsddb	Mon Aug 11 17:09:15 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the bsddb, for using the Berkeley DB library in
+Python.
diff python.orig/2.2/pkg/DESCR-expat python/2.2/pkg/DESCR-expat
--- python.orig/2.2/pkg/DESCR-expat	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DESCR-expat	Mon Aug 11 17:09:15 2003
@@ -12,6 +12,3 @@
 applications. See the internal documentation for hints.
 
 This package contains support for the expat XML parser.
-
-WWW: ${HOMEPAGE}
-
diff python.orig/2.2/pkg/DESCR-gdbm python/2.2/pkg/DESCR-gdbm
--- python.orig/2.2/pkg/DESCR-gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/DESCR-gdbm	Mon Aug 11 17:09:15 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the gdbm, for using the GNU DBM library in
+Python.
diff python.orig/2.2/pkg/DESCR-idle python/2.2/pkg/DESCR-idle
--- python.orig/2.2/pkg/DESCR-idle	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/DESCR-idle	Mon Aug 11 17:09:15 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains IDE for Python.
diff python.orig/2.2/pkg/DESCR-mpz python/2.2/pkg/DESCR-mpz
--- python.orig/2.2/pkg/DESCR-mpz	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DESCR-mpz	Mon Aug 11 17:09:15 2003
@@ -13,6 +13,3 @@
 
 This package contains mpz, the GNU arbitrary magnitude integer
 module.
-
-WWW: ${HOMEPAGE}
-
diff python.orig/2.2/pkg/DESCR-tests python/2.2/pkg/DESCR-tests
--- python.orig/2.2/pkg/DESCR-tests	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DESCR-tests	Mon Aug 11 17:09:15 2003
@@ -12,5 +12,3 @@
 applications. See the internal documentation for hints.
 
 This package contains the Python testsuite.
-
-WWW: ${HOMEPAGE}
diff python.orig/2.2/pkg/DESCR-tkinter python/2.2/pkg/DESCR-tkinter
--- python.orig/2.2/pkg/DESCR-tkinter	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DESCR-tkinter	Mon Aug 11 17:09:15 2003
@@ -13,5 +13,3 @@
 
 This package contains the Tkinter module, for using the tk toolkit
 in Python.
-
-WWW: ${HOMEPAGE}
diff python.orig/2.2/pkg/DESCR-tools python/2.2/pkg/DESCR-tools
--- python.orig/2.2/pkg/DESCR-tools	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/DESCR-tools	Mon Aug 11 17:09:15 2003
@@ -12,5 +12,3 @@
 applications. See the internal documentation for hints.
 
 This package contains extra tools that Python users may find useful.
-
-WWW: ${HOMEPAGE}
diff python.orig/2.2/pkg/INSTALL python/2.2/pkg/INSTALL
--- python.orig/2.2/pkg/INSTALL	Fri Feb 15 20:42:19 2002
+++ python/2.2/pkg/INSTALL	Mon Aug 11 19:26:43 2003
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $OpenBSD: INSTALL,v 1.1 2002/02/15 19:42:19 matt Exp $
+# $OpenBSD$
 #
 # Set us up as the default python if there is not one already.
 #
diff python.orig/2.2/pkg/INSTALL-idle python/2.2/pkg/INSTALL-idle
--- python.orig/2.2/pkg/INSTALL-idle	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/INSTALL-idle	Mon Aug 11 17:49:02 2003
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# $OpenBSD$
+#
+# Set us up as the default python if there is not one already.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ x$2 = xPOST-INSTALL ]
+then
+	if [ ! -e ${PREFIX}/bin/idle ]
+	then
+		cd ${PREFIX}/bin
+		ln -s idle2.2 idle
+	else
+		cat <<EOT
+
++---------------
+| ${PREFIX}/bin/idle already exists.  If you want to use this
+| package as your system default idle, make ${PREFIX}/bin/idle a
+| symlink to ${PREFIX}/bin/idle2.2.
++---------------
+
+EOT
+	fi
+fi
+
diff python.orig/2.2/pkg/PFRAG.shared python/2.2/pkg/PFRAG.shared
--- python.orig/2.2/pkg/PFRAG.shared	Mon Feb 25 22:25:38 2002
+++ python/2.2/pkg/PFRAG.shared	Wed Jun 18 01:58:01 2003
@@ -1,8 +1,8 @@
 @comment $OpenBSD: PFRAG.shared,v 1.2 2002/02/25 21:25:38 matt Exp $
-%%mm%%
 lib/libpython2.2.so.0.0
-DYNLIBDIR(%B)
+DYNLIBDIR(%D/lib)
 lib/python2.2/config/libpython2.2.so.0.0
+%%mm%%
 lib/python2.2/lib-dynload/_codecsmodule.so
 lib/python2.2/lib-dynload/_curses_panel.so
 lib/python2.2/lib-dynload/_cursesmodule.so
@@ -13,13 +13,11 @@
 lib/python2.2/lib-dynload/_weakref.so
 lib/python2.2/lib-dynload/arraymodule.so
 lib/python2.2/lib-dynload/binascii.so
-lib/python2.2/lib-dynload/bsddbmodule.so
 lib/python2.2/lib-dynload/cPickle.so
 lib/python2.2/lib-dynload/cStringIO.so
 lib/python2.2/lib-dynload/cmathmodule.so
 lib/python2.2/lib-dynload/cryptmodule.so
 lib/python2.2/lib-dynload/dbmmodule.so
-lib/python2.2/lib-dynload/errnomodule.so
 lib/python2.2/lib-dynload/fcntlmodule.so
 lib/python2.2/lib-dynload/fpectlmodule.so
 lib/python2.2/lib-dynload/fpetestmodule.so
@@ -27,8 +25,7 @@
 lib/python2.2/lib-dynload/mathmodule.so
 lib/python2.2/lib-dynload/md5module.so
 lib/python2.2/lib-dynload/mmapmodule.so
-lib/python2.2/lib-dynload/newmodule.so
-lib/python2.2/lib-dynload/nis.so
+lib/python2.2/lib-dynload/nismodule.so
 lib/python2.2/lib-dynload/operator.so
 lib/python2.2/lib-dynload/parsermodule.so
 lib/python2.2/lib-dynload/pcre.so
@@ -46,6 +43,7 @@
 lib/python2.2/lib-dynload/timemodule.so
 lib/python2.2/lib-dynload/timingmodule.so
 lib/python2.2/lib-dynload/unicodedata.so
-lib/python2.2/lib-dynload/xreadlines.so
+lib/python2.2/lib-dynload/xreadlinesmodule.so
+lib/python2.2/lib-dynload/xxsubtype.so
 lib/python2.2/lib-dynload/zlibmodule.so
 @dirrm lib/python2.2/lib-dynload
diff python.orig/2.2/pkg/PLIST python/2.2/pkg/PLIST
--- python.orig/2.2/pkg/PLIST	Sat May 11 23:35:13 2002
+++ python/2.2/pkg/PLIST	Wed Jun 18 01:57:46 2003
@@ -1,6 +1,7 @@
 @comment $OpenBSD: PLIST,v 1.2 2002/05/11 21:35:13 matt Exp $
 @option no-default-conflict
 @pkgcfl python-2.2*
+%%tkinter%%
 bin/pydoc2.2
 bin/python2.2
 include/python2.2/Python.h
@@ -404,6 +405,9 @@
 lib/python2.2/dumbdbm.py
 lib/python2.2/dumbdbm.pyc
 lib/python2.2/dumbdbm.pyo
+lib/python2.2/email/Charset.py
+lib/python2.2/email/Charset.pyc
+lib/python2.2/email/Charset.pyo
 lib/python2.2/email/Encoders.py
 lib/python2.2/email/Encoders.pyc
 lib/python2.2/email/Encoders.pyo
@@ -413,6 +417,9 @@
 lib/python2.2/email/Generator.py
 lib/python2.2/email/Generator.pyc
 lib/python2.2/email/Generator.pyo
+lib/python2.2/email/Header.py
+lib/python2.2/email/Header.pyc
+lib/python2.2/email/Header.pyo
 lib/python2.2/email/Iterators.py
 lib/python2.2/email/Iterators.pyc
 lib/python2.2/email/Iterators.pyo
@@ -428,6 +435,12 @@
 lib/python2.2/email/MIMEMessage.py
 lib/python2.2/email/MIMEMessage.pyc
 lib/python2.2/email/MIMEMessage.pyo
+lib/python2.2/email/MIMEMultipart.py
+lib/python2.2/email/MIMEMultipart.pyc
+lib/python2.2/email/MIMEMultipart.pyo
+lib/python2.2/email/MIMENonMultipart.py
+lib/python2.2/email/MIMENonMultipart.pyc
+lib/python2.2/email/MIMENonMultipart.pyo
 lib/python2.2/email/MIMEText.py
 lib/python2.2/email/MIMEText.pyc
 lib/python2.2/email/MIMEText.pyo
@@ -443,6 +456,70 @@
 lib/python2.2/email/__init__.py
 lib/python2.2/email/__init__.pyc
 lib/python2.2/email/__init__.pyo
+lib/python2.2/email/_compat21.py
+lib/python2.2/email/_compat21.pyc
+lib/python2.2/email/_compat21.pyo
+lib/python2.2/email/_compat22.py
+lib/python2.2/email/_compat22.pyc
+lib/python2.2/email/_compat22.pyo
+lib/python2.2/email/_parseaddr.py
+lib/python2.2/email/_parseaddr.pyc
+lib/python2.2/email/_parseaddr.pyo
+lib/python2.2/email/base64MIME.py
+lib/python2.2/email/base64MIME.pyc
+lib/python2.2/email/base64MIME.pyo
+lib/python2.2/email/quopriMIME.py
+lib/python2.2/email/quopriMIME.pyc
+lib/python2.2/email/quopriMIME.pyo
+lib/python2.2/email/test/__init__.py
+lib/python2.2/email/test/__init__.pyc
+lib/python2.2/email/test/__init__.pyo
+lib/python2.2/email/test/data/PyBanner048.gif
+lib/python2.2/email/test/data/audiotest.au
+lib/python2.2/email/test/data/msg_01.txt
+lib/python2.2/email/test/data/msg_02.txt
+lib/python2.2/email/test/data/msg_03.txt
+lib/python2.2/email/test/data/msg_04.txt
+lib/python2.2/email/test/data/msg_05.txt
+lib/python2.2/email/test/data/msg_06.txt
+lib/python2.2/email/test/data/msg_07.txt
+lib/python2.2/email/test/data/msg_08.txt
+lib/python2.2/email/test/data/msg_09.txt
+lib/python2.2/email/test/data/msg_10.txt
+lib/python2.2/email/test/data/msg_11.txt
+lib/python2.2/email/test/data/msg_12.txt
+lib/python2.2/email/test/data/msg_13.txt
+lib/python2.2/email/test/data/msg_14.txt
+lib/python2.2/email/test/data/msg_15.txt
+lib/python2.2/email/test/data/msg_16.txt
+lib/python2.2/email/test/data/msg_17.txt
+lib/python2.2/email/test/data/msg_18.txt
+lib/python2.2/email/test/data/msg_19.txt
+lib/python2.2/email/test/data/msg_20.txt
+lib/python2.2/email/test/data/msg_21.txt
+lib/python2.2/email/test/data/msg_22.txt
+lib/python2.2/email/test/data/msg_23.txt
+lib/python2.2/email/test/data/msg_24.txt
+lib/python2.2/email/test/data/msg_25.txt
+lib/python2.2/email/test/data/msg_26.txt
+lib/python2.2/email/test/data/msg_27.txt
+lib/python2.2/email/test/data/msg_28.txt
+lib/python2.2/email/test/data/msg_29.txt
+lib/python2.2/email/test/data/msg_30.txt
+lib/python2.2/email/test/data/msg_31.txt
+lib/python2.2/email/test/data/msg_32.txt
+lib/python2.2/email/test/data/msg_33.txt
+lib/python2.2/email/test/data/msg_34.txt
+lib/python2.2/email/test/data/msg_35.txt
+lib/python2.2/email/test/test_email.py
+lib/python2.2/email/test/test_email.pyc
+lib/python2.2/email/test/test_email.pyo
+lib/python2.2/email/test/test_email_codecs.py
+lib/python2.2/email/test/test_email_codecs.pyc
+lib/python2.2/email/test/test_email_codecs.pyo
+lib/python2.2/email/test/test_email_torture.py
+lib/python2.2/email/test/test_email_torture.pyc
+lib/python2.2/email/test/test_email_torture.pyo
 lib/python2.2/encodings/__init__.py
 lib/python2.2/encodings/__init__.pyc
 lib/python2.2/encodings/__init__.pyo
@@ -602,6 +679,9 @@
 lib/python2.2/encodings/koi8_r.py
 lib/python2.2/encodings/koi8_r.pyc
 lib/python2.2/encodings/koi8_r.pyo
+lib/python2.2/encodings/koi8_u.py
+lib/python2.2/encodings/koi8_u.pyc
+lib/python2.2/encodings/koi8_u.pyo
 lib/python2.2/encodings/latin_1.py
 lib/python2.2/encodings/latin_1.pyc
 lib/python2.2/encodings/latin_1.pyo
@@ -803,7 +883,6 @@
 lib/python2.2/lib-old/zmod.py
 lib/python2.2/lib-old/zmod.pyc
 lib/python2.2/lib-old/zmod.pyo
-%%tkinter%%
 lib/python2.2/linecache.py
 lib/python2.2/linecache.pyc
 lib/python2.2/linecache.pyo
@@ -1138,6 +1217,7 @@
 man/man1/python2.2.1
 share/doc/python2.2/CHANGES.OpenBSD
 %%SHARED%%
+@dirrm share/doc/python2.2
 @dirrm lib/python2.2/xml/sax
 @dirrm lib/python2.2/xml/parsers
 @dirrm lib/python2.2/xml/dom
@@ -1147,6 +1227,8 @@
 @dirrm lib/python2.2/lib-old
 @dirrm lib/python2.2/hotshot
 @dirrm lib/python2.2/encodings
+@dirrm lib/python2.2/email/test/data
+@dirrm lib/python2.2/email/test
 @dirrm lib/python2.2/email
 @dirrm lib/python2.2/distutils/command
 @dirrm lib/python2.2/distutils
@@ -1155,4 +1237,3 @@
 @dirrm lib/python2.2/compiler
 @dirrm lib/python2.2
 @dirrm include/python2.2
-@dirrm share/doc/python2.2
diff python.orig/2.2/pkg/PLIST-bsddb python/2.2/pkg/PLIST-bsddb
--- python.orig/2.2/pkg/PLIST-bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/PLIST-bsddb	Wed Jun 18 02:58:33 2003
@@ -0,0 +1,4 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-bsddb-2.2*
+lib/python2.2/lib-dynload/bsddbmodule.so
diff python.orig/2.2/pkg/PLIST-gdbm python/2.2/pkg/PLIST-gdbm
--- python.orig/2.2/pkg/PLIST-gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/PLIST-gdbm	Wed Jun 18 01:50:15 2003
@@ -0,0 +1,5 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-gdbm-2.2*
+lib/python2.2/lib-dynload/gdbm.so
+lib/python2.2/lib-dynload/gdbmmodule.so
diff python.orig/2.2/pkg/PLIST-idle python/2.2/pkg/PLIST-idle
--- python.orig/2.2/pkg/PLIST-idle	Thu Jan  1 01:00:00 1970
+++ python/2.2/pkg/PLIST-idle	Mon Aug 11 17:57:30 2003
@@ -0,0 +1,76 @@
+@comment $OpenBSD: PLIST-tools,v 1.2 2002/03/23 04:34:23 matt Exp $
+@option no-default-conflict
+@pkgcfl python-idle-2.2*
+bin/idle2.2
+lib/python2.2/Tools/idle/AutoExpand.py
+lib/python2.2/Tools/idle/AutoIndent.py
+lib/python2.2/Tools/idle/Bindings.py
+lib/python2.2/Tools/idle/CallTipWindow.py
+lib/python2.2/Tools/idle/CallTips.py
+lib/python2.2/Tools/idle/ChangeLog
+lib/python2.2/Tools/idle/ClassBrowser.py
+lib/python2.2/Tools/idle/ColorDelegator.py
+lib/python2.2/Tools/idle/Debugger.py
+lib/python2.2/Tools/idle/Delegator.py
+lib/python2.2/Tools/idle/EditorWindow.py
+lib/python2.2/Tools/idle/FileList.py
+lib/python2.2/Tools/idle/FormatParagraph.py
+lib/python2.2/Tools/idle/FrameViewer.py
+lib/python2.2/Tools/idle/GrepDialog.py
+lib/python2.2/Tools/idle/IOBinding.py
+lib/python2.2/Tools/idle/Icons/folder.gif
+lib/python2.2/Tools/idle/Icons/minusnode.gif
+lib/python2.2/Tools/idle/Icons/openfolder.gif
+lib/python2.2/Tools/idle/Icons/plusnode.gif
+lib/python2.2/Tools/idle/Icons/python.gif
+lib/python2.2/Tools/idle/Icons/tk.gif
+lib/python2.2/Tools/idle/IdleConf.py
+lib/python2.2/Tools/idle/IdleHistory.py
+lib/python2.2/Tools/idle/MultiScrolledLists.py
+lib/python2.2/Tools/idle/MultiStatusBar.py
+lib/python2.2/Tools/idle/NEWS.txt
+lib/python2.2/Tools/idle/ObjectBrowser.py
+lib/python2.2/Tools/idle/OldStackViewer.py
+lib/python2.2/Tools/idle/OutputWindow.py
+lib/python2.2/Tools/idle/ParenMatch.py
+lib/python2.2/Tools/idle/PathBrowser.py
+lib/python2.2/Tools/idle/Percolator.py
+lib/python2.2/Tools/idle/PyParse.py
+lib/python2.2/Tools/idle/PyShell.py
+lib/python2.2/Tools/idle/README.txt
+lib/python2.2/Tools/idle/RemoteInterp.py
+lib/python2.2/Tools/idle/ReplaceDialog.py
+lib/python2.2/Tools/idle/ScriptBinding.py
+lib/python2.2/Tools/idle/ScrolledList.py
+lib/python2.2/Tools/idle/SearchBinding.py
+lib/python2.2/Tools/idle/SearchDialog.py
+lib/python2.2/Tools/idle/SearchDialogBase.py
+lib/python2.2/Tools/idle/SearchEngine.py
+lib/python2.2/Tools/idle/Separator.py
+lib/python2.2/Tools/idle/StackViewer.py
+lib/python2.2/Tools/idle/TODO.txt
+lib/python2.2/Tools/idle/ToolTip.py
+lib/python2.2/Tools/idle/TreeWidget.py
+lib/python2.2/Tools/idle/UndoDelegator.py
+lib/python2.2/Tools/idle/WidgetRedirector.py
+lib/python2.2/Tools/idle/WindowList.py
+lib/python2.2/Tools/idle/ZoomHeight.py
+lib/python2.2/Tools/idle/__init__.py
+lib/python2.2/Tools/idle/config-mac.txt
+lib/python2.2/Tools/idle/config-unix.txt
+lib/python2.2/Tools/idle/config-win.txt
+lib/python2.2/Tools/idle/config.txt
+lib/python2.2/Tools/idle/eventparse.py
+lib/python2.2/Tools/idle/extend.txt
+lib/python2.2/Tools/idle/help.txt
+lib/python2.2/Tools/idle/idle
+lib/python2.2/Tools/idle/idle.bat
+lib/python2.2/Tools/idle/idle.py
+lib/python2.2/Tools/idle/idle.pyw
+lib/python2.2/Tools/idle/idlever.py
+lib/python2.2/Tools/idle/keydefs.py
+lib/python2.2/Tools/idle/setup.py
+lib/python2.2/Tools/idle/testcode.py
+@dirrm lib/python2.2/Tools/idle/Icons
+@dirrm lib/python2.2/Tools/idle
+@unexec rmdir %D/lib/python2.2/Tools 2>/dev/null || true
diff python.orig/2.2/pkg/PLIST-tests python/2.2/pkg/PLIST-tests
--- python.orig/2.2/pkg/PLIST-tests	Sat May 11 23:35:13 2002
+++ python/2.2/pkg/PLIST-tests	Wed Jun 18 01:30:00 2003
@@ -45,9 +45,7 @@
 lib/python2.2/test/greyrgb.uue
 lib/python2.2/test/output/test_MimeWriter
 lib/python2.2/test/output/test_asynchat
-lib/python2.2/test/output/test_atexit
 lib/python2.2/test/output/test_augassign
-lib/python2.2/test/output/test_bastion
 lib/python2.2/test/output/test_binascii
 lib/python2.2/test/output/test_builtin
 lib/python2.2/test/output/test_cfgparser
@@ -71,7 +69,6 @@
 lib/python2.2/test/output/test_math
 lib/python2.2/test/output/test_md5
 lib/python2.2/test/output/test_mimetools
-lib/python2.2/test/output/test_minidom
 lib/python2.2/test/output/test_mmap
 lib/python2.2/test/output/test_new
 lib/python2.2/test/output/test_nis
@@ -175,6 +172,9 @@
 lib/python2.2/test/test_b2.py
 lib/python2.2/test/test_b2.pyc
 lib/python2.2/test/test_b2.pyo
+lib/python2.2/test/test_base64.py
+lib/python2.2/test/test_base64.pyc
+lib/python2.2/test/test_base64.pyo
 lib/python2.2/test/test_bastion.py
 lib/python2.2/test/test_bastion.pyc
 lib/python2.2/test/test_bastion.pyo
@@ -301,6 +301,9 @@
 lib/python2.2/test/test_email.py
 lib/python2.2/test/test_email.pyc
 lib/python2.2/test/test_email.pyo
+lib/python2.2/test/test_email_codecs.py
+lib/python2.2/test/test_email_codecs.pyc
+lib/python2.2/test/test_email_codecs.pyo
 lib/python2.2/test/test_errno.py
 lib/python2.2/test/test_errno.pyc
 lib/python2.2/test/test_errno.pyo
@@ -463,6 +466,9 @@
 lib/python2.2/test/test_mmap.py
 lib/python2.2/test/test_mmap.pyc
 lib/python2.2/test/test_mmap.pyo
+lib/python2.2/test/test_multifile.py
+lib/python2.2/test/test_multifile.pyc
+lib/python2.2/test/test_multifile.pyo
 lib/python2.2/test/test_mutants.py
 lib/python2.2/test/test_mutants.pyc
 lib/python2.2/test/test_mutants.pyo
@@ -541,9 +547,15 @@
 lib/python2.2/test/test_pyexpat.py
 lib/python2.2/test/test_pyexpat.pyc
 lib/python2.2/test/test_pyexpat.pyo
+lib/python2.2/test/test_queue.py
+lib/python2.2/test/test_queue.pyc
+lib/python2.2/test/test_queue.pyo
 lib/python2.2/test/test_quopri.py
 lib/python2.2/test/test_quopri.pyc
 lib/python2.2/test/test_quopri.pyo
+lib/python2.2/test/test_random.py
+lib/python2.2/test/test_random.pyc
+lib/python2.2/test/test_random.pyo
 lib/python2.2/test/test_re.py
 lib/python2.2/test/test_re.pyc
 lib/python2.2/test/test_re.pyo
@@ -646,6 +658,9 @@
 lib/python2.2/test/test_tokenize.py
 lib/python2.2/test/test_tokenize.pyc
 lib/python2.2/test/test_tokenize.pyo
+lib/python2.2/test/test_trace.py
+lib/python2.2/test/test_trace.pyc
+lib/python2.2/test/test_trace.pyo
 lib/python2.2/test/test_traceback.py
 lib/python2.2/test/test_traceback.pyc
 lib/python2.2/test/test_traceback.pyo
diff python.orig/2.2/pkg/PLIST-tkinter python/2.2/pkg/PLIST-tkinter
--- python.orig/2.2/pkg/PLIST-tkinter	Sat Mar 23 05:34:23 2002
+++ python/2.2/pkg/PLIST-tkinter	Wed Jun 18 02:53:03 2003
@@ -1,5 +1,5 @@
 @comment $OpenBSD: PLIST-tkinter,v 1.2 2002/03/23 04:34:23 matt Exp $
 @option no-default-conflict
 @pkgcfl python-tkinter-2.2*
-lib/python2.2/lib-dynload/_tkinter.so
 %%tkinter_no_shared%%
+lib/python2.2/lib-dynload/_tkinter.so
diff python.orig/2.2/pkg/PLIST-tools python/2.2/pkg/PLIST-tools
--- python.orig/2.2/pkg/PLIST-tools	Sat Mar 23 05:34:23 2002
+++ python/2.2/pkg/PLIST-tools	Mon Aug 11 17:35:30 2003
@@ -51,75 +51,6 @@
 lib/python2.2/Tools/freeze/winmakemakefile.py
 lib/python2.2/Tools/i18n/msgfmt.py
 lib/python2.2/Tools/i18n/pygettext.py
-lib/python2.2/Tools/idle/AutoExpand.py
-lib/python2.2/Tools/idle/AutoIndent.py
-lib/python2.2/Tools/idle/Bindings.py
-lib/python2.2/Tools/idle/CallTipWindow.py
-lib/python2.2/Tools/idle/CallTips.py
-lib/python2.2/Tools/idle/ChangeLog
-lib/python2.2/Tools/idle/ClassBrowser.py
-lib/python2.2/Tools/idle/ColorDelegator.py
-lib/python2.2/Tools/idle/Debugger.py
-lib/python2.2/Tools/idle/Delegator.py
-lib/python2.2/Tools/idle/EditorWindow.py
-lib/python2.2/Tools/idle/FileList.py
-lib/python2.2/Tools/idle/FormatParagraph.py
-lib/python2.2/Tools/idle/FrameViewer.py
-lib/python2.2/Tools/idle/GrepDialog.py
-lib/python2.2/Tools/idle/IOBinding.py
-lib/python2.2/Tools/idle/Icons/folder.gif
-lib/python2.2/Tools/idle/Icons/minusnode.gif
-lib/python2.2/Tools/idle/Icons/openfolder.gif
-lib/python2.2/Tools/idle/Icons/plusnode.gif
-lib/python2.2/Tools/idle/Icons/python.gif
-lib/python2.2/Tools/idle/Icons/tk.gif
-lib/python2.2/Tools/idle/IdleConf.py
-lib/python2.2/Tools/idle/IdleHistory.py
-lib/python2.2/Tools/idle/MultiScrolledLists.py
-lib/python2.2/Tools/idle/MultiStatusBar.py
-lib/python2.2/Tools/idle/NEWS.txt
-lib/python2.2/Tools/idle/ObjectBrowser.py
-lib/python2.2/Tools/idle/OldStackViewer.py
-lib/python2.2/Tools/idle/OutputWindow.py
-lib/python2.2/Tools/idle/ParenMatch.py
-lib/python2.2/Tools/idle/PathBrowser.py
-lib/python2.2/Tools/idle/Percolator.py
-lib/python2.2/Tools/idle/PyParse.py
-lib/python2.2/Tools/idle/PyShell.py
-lib/python2.2/Tools/idle/README.txt
-lib/python2.2/Tools/idle/RemoteInterp.py
-lib/python2.2/Tools/idle/ReplaceDialog.py
-lib/python2.2/Tools/idle/ScriptBinding.py
-lib/python2.2/Tools/idle/ScrolledList.py
-lib/python2.2/Tools/idle/SearchBinding.py
-lib/python2.2/Tools/idle/SearchDialog.py
-lib/python2.2/Tools/idle/SearchDialogBase.py
-lib/python2.2/Tools/idle/SearchEngine.py
-lib/python2.2/Tools/idle/Separator.py
-lib/python2.2/Tools/idle/StackViewer.py
-lib/python2.2/Tools/idle/TODO.txt
-lib/python2.2/Tools/idle/ToolTip.py
-lib/python2.2/Tools/idle/TreeWidget.py
-lib/python2.2/Tools/idle/UndoDelegator.py
-lib/python2.2/Tools/idle/WidgetRedirector.py
-lib/python2.2/Tools/idle/WindowList.py
-lib/python2.2/Tools/idle/ZoomHeight.py
-lib/python2.2/Tools/idle/__init__.py
-lib/python2.2/Tools/idle/config-mac.txt
-lib/python2.2/Tools/idle/config-unix.txt
-lib/python2.2/Tools/idle/config-win.txt
-lib/python2.2/Tools/idle/config.txt
-lib/python2.2/Tools/idle/eventparse.py
-lib/python2.2/Tools/idle/extend.txt
-lib/python2.2/Tools/idle/help.txt
-lib/python2.2/Tools/idle/idle
-lib/python2.2/Tools/idle/idle.bat
-lib/python2.2/Tools/idle/idle.py
-lib/python2.2/Tools/idle/idle.pyw
-lib/python2.2/Tools/idle/idlever.py
-lib/python2.2/Tools/idle/keydefs.py
-lib/python2.2/Tools/idle/setup.py
-lib/python2.2/Tools/idle/testcode.py
 lib/python2.2/Tools/modulator/EXAMPLE.py
 lib/python2.2/Tools/modulator/README
 lib/python2.2/Tools/modulator/ScrolledListbox.py
@@ -246,8 +177,6 @@
 @dirrm lib/python2.2/Tools/pynche
 @dirrm lib/python2.2/Tools/modulator/Templates
 @dirrm lib/python2.2/Tools/modulator
-@dirrm lib/python2.2/Tools/idle/Icons
-@dirrm lib/python2.2/Tools/idle
 @dirrm lib/python2.2/Tools/i18n
 @dirrm lib/python2.2/Tools/freeze
 @dirrm lib/python2.2/Tools/faqwiz
@@ -255,4 +184,4 @@
 @dirrm lib/python2.2/Tools/bgen/bgen
 @dirrm lib/python2.2/Tools/bgen
 @dirrm lib/python2.2/Tools/audiopy
-@dirrm lib/python2.2/Tools
+@unexec rmdir %D/lib/python2.2/Tools 2>/dev/null || true
diff python.orig/2.3/Makefile python/2.3/Makefile
--- python.orig/2.3/Makefile	Thu Jan  1 01:00:00 1970
+++ python/2.3/Makefile	Tue Aug 12 00:00:15 2003
@@ -0,0 +1,36 @@
+# $OpenBSD$
+
+VERSION=		2.3
+PATCHLEVEL=		
+PKG_PATCHLEVEL=
+
+COMMENT-bzip2=		"bzip2 module for Python"
+
+FULLPKGNAME-bzip2=	python-bzip2-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+
+FLAVORS=		no_bzip2
+FLAVOR?=
+
+MULTI_PACKAGES=
+SUBPACKAGE?=
+
+.if empty(FLAVOR:L:Mno_bzip2)
+BUILD_DEPENDS+=		::archivers/bzip2
+SETUP_LOCAL+=		Setup.bz2
+.  if !defined(NO_SHARED_LIBS) || ${NO_SHARED_LIBS:U} != YES
+MULTI_PACKAGES+= 	-bzip2
+.  else
+LIB_DEPENDS+=		bzip2::archivers/bzip2
+.  endif
+.endif
+
+.if defined(PACKAGING) && ${SUBPACKAGE} == "-bz2"
+LIB_DEPENDS+=		bzip2::archivers/bzip2
+.endif
+
+CONFIGURE_ARGS=		--enable-ipv6
+
+AUTOCONF_VERSION=	2.57
+MODULES=		gettext
+
+.include <bsd.port.mk>
diff python.orig/2.3/distinfo python/2.3/distinfo
--- python.orig/2.3/distinfo	Thu Jan  1 01:00:00 1970
+++ python/2.3/distinfo	Thu Jul 31 21:09:10 2003
@@ -0,0 +1,3 @@
+MD5 (Python-2.3.tgz) = 595620a4769073a812e353597585c4e8
+RMD160 (Python-2.3.tgz) = 32e83b1811a9494391f9182256a9a5fb2271982c
+SHA1 (Python-2.3.tgz) = ce5fbde09be17ea5dddd4baa62d2b90e06e7e5c1
diff python.orig/2.3/files/CHANGES.OpenBSD python/2.3/files/CHANGES.OpenBSD
--- python.orig/2.3/files/CHANGES.OpenBSD	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/CHANGES.OpenBSD	Fri Jun 20 01:10:11 2003
@@ -0,0 +1,21 @@
+As required by item 3 of the PSF license, here is a brief summary
+of changes made to this version of Python for the OpenBSD package.
+
+1.  tempfile.py was patched to not try /usr/tmp as a possible
+    tempfile directory.
+
+2.  libpython is created as a shared library, and the pthread stack
+    size was doubled to support this with complex applications such
+    as Zope.
+
+3.  OpenBSD threads are used for threading support.
+
+4.  The interpreter is called "python2.3", and pydoc "pydoc2.3" in
+    order to support multiple versions of Python coexisting on the
+    same system.  If no "python" binary exists, a symlink to
+    "python2.3" is created when the package is installed.
+
+These changes are available in the OpenBSD CVS repository
+<http://www.openbsd.org/anoncvs.html> in ports/lang/python.
+
+$Id: CHANGES.OpenBSD,v 1.1 2002/05/11 21:35:13 matt Exp $
diff python.orig/2.3/files/Setup python/2.3/files/Setup
--- python.orig/2.3/files/Setup	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup	Thu Jul 31 21:52:39 2003
@@ -0,0 +1,384 @@
+# -*- makefile -*-
+# The file Setup is used by the makesetup script to construct the files
+# Makefile and config.c, from Makefile.pre and config.c.in,
+# respectively.  The file Setup itself is initially copied from
+# Setup.dist; once it exists it will not be overwritten, so you can edit
+# Setup to your heart's content.  Note that Makefile.pre is created
+# from Makefile.pre.in by the toplevel configure script.
+
+# (VPATH notes: Setup and Makefile.pre are in the build directory, as
+# are Makefile and config.c; the *.in and *.dist files are in the source
+# directory.)
+
+# Each line in this file describes one or more optional modules.
+# Modules enabled here will not be compiled by the setup.py script,
+# so the file can be used to override setup.py's behavior.
+
+# Lines have the following structure:
+#
+# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
+#
+# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
+# <cpparg> is anything starting with -I, -D, -U or -C
+# <library> is anything ending in .a or beginning with -l or -L
+# <module> is anything else but should be a valid Python
+# identifier (letters, digits, underscores, beginning with non-digit)
+#
+# (As the makesetup script changes, it may recognize some other
+# arguments as well, e.g. *.so and *.sl as libraries.  See the big
+# case statement in the makesetup script.)
+#
+# Lines can also have the form
+#
+# <name> = <value>
+#
+# which defines a Make variable definition inserted into Makefile.in
+#
+# Finally, if a line contains just the word "*shared*" (without the
+# quotes but with the stars), then the following modules will not be
+# built statically.  The build process works like this:
+#
+# 1. Build all modules that are declared as static in Modules/Setup,
+#    combine them into libpythonxy.a, combine that into python.
+# 2. Build all modules that are listed as shared in Modules/Setup.
+# 3. Invoke setup.py. That builds all modules that
+#    a) are not builtin, and
+#    b) are not listed in Modules/Setup, and
+#    c) can be build on the target
+#
+# Therefore, modules declared to be shared will not be
+# included in the config.c file, nor in the list of objects to be
+# added to the library archive, and their linker options won't be
+# added to the linker options. Rules to create their .o files and
+# their shared libraries will still be added to the Makefile, and
+# their names will be collected in the Make variable SHAREDMODS.  This
+# is used to build modules as shared libraries.  (They can be
+# installed using "make sharedinstall", which is implied by the
+# toplevel "make install" target.)  (For compatibility,
+# *noconfig* has the same effect as *shared*.)
+#
+# In addition, *static* explicitly declares the following modules to
+# be static.  Lines containing "*static*" and "*shared*" may thus
+# alternate thoughout this file.
+
+# NOTE: As a standard policy, as many modules as can be supported by a
+# platform should be present.  The distribution comes with all modules
+# enabled that are supported by most platforms and don't require you
+# to ftp sources from elsewhere.
+
+
+# Some special rules to define PYTHONPATH.
+# Edit the definitions below to indicate which options you are using.
+# Don't add any whitespace or comments!
+
+# Directories where library files get installed.
+# DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
+DESTLIB=$(LIBDEST)
+MACHDESTLIB=$(BINLIBDEST)
+
+# NOTE: all the paths are now relative to the prefix that is computed
+# at run time!
+
+# Standard path -- don't edit.
+# No leading colon since this is the first entry.
+# Empty since this is now just the runtime prefix.
+DESTPATH=
+
+# Site specific path components -- should begin with : if non-empty
+SITEPATH=
+
+# Standard path components for test modules
+TESTPATH=
+
+# Path components for machine- or system-dependent modules and shared libraries
+MACHDEPPATH=:plat-$(MACHDEP)
+EXTRAMACHDEPPATH=
+
+# Path component for the Tkinter-related modules
+# The TKPATH variable is always enabled, to save you the effort.
+TKPATH=:lib-tk
+
+COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)$(TKPATH)
+PYTHONPATH=$(COREPYTHONPATH)
+
+
+# The modules listed here can't be built as shared libraries for
+# various reasons; therefore they are listed here instead of in the
+# normal order.
+
+# This only contains the minimal set of modules required to run the 
+# setup.py script in the root of the Python source tree.
+
+posix posixmodule.c		# posix (UNIX) system calls
+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 zipimport module is always imported at startup. Having it as a
+# builtin module avoids some bootstrapping problems and reduces overhead.
+zipimport zipimport.c
+
+# The rest of the modules listed in this file are all commented out by
+# default.  Usually they can be detected and built as dynamically
+# loaded modules by the new setup.py script added in Python 2.1.  If
+# you're on a platform that doesn't support dynamic loading, want to 
+# compile modules statically into the Python binary, or need to 
+# specify some odd set of compiler switches, you can uncomment the 
+# appropriate lines below.
+
+# ======================================================================
+
+# The Python symtable module depends on .h files that setup.py doesn't track
+_symtable symtablemodule.c
+
+# The SGI specific GL module:
+
+GLHACK=-Dclear=__GLclear
+#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
+
+# Pure module.  Cannot be linked dynamically.
+# -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
+#WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
+#PURE_INCLS=-I/usr/local/include
+#PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
+#pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
+
+# Uncommenting the following line tells makesetup that all following
+# modules are to be built as shared libraries (see above for more
+# detail; also note that *static* reverses this effect):
+
+@NOSHARED@*shared*
+
+# GNU readline.  Unlike previous Python incarnations, GNU readline is
+# now incorporated in an optional module, configured in the Setup file
+# instead of by a configure script switch.  You may have to insert a
+# -L option pointing to the directory where libreadline.* lives,
+# and you may have to change -ltermcap to -ltermlib or perhaps remove
+# it, depending on your system -- see the GNU readline instructions.
+# It's okay for this to be a shared library, too.
+
+readline readline.c -lreadline -ltermcap
+
+
+# Modules that should always be present (non UNIX dependent):
+
+array arraymodule.c	# array objects
+cmath cmathmodule.c # -lm # complex math library functions
+math mathmodule.c # -lm # math library functions, e.g. sin()
+struct structmodule.c	# binary structure packing/unpacking
+time timemodule.c # -lm # time operations and variables
+operator operator.c	# operator.add() and similar goodies
+_weakref _weakref.c	# basic weak reference support
+_testcapi _testcapimodule.c    # Python C API test module
+
+unicodedata unicodedata.c    # static Unicode character database
+
+_locale _localemodule.c -I${LOCALBASE}/include # access to ISO C locale support
+
+
+# Modules with some UNIX dependencies -- on by default:
+# (If you have a really backward UNIX, select and socket may not be
+# supported...)
+
+fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
+pwd pwdmodule.c		# pwd(3) 
+grp grpmodule.c		# grp(3)
+select selectmodule.c	# select(2); not on ancient System V
+
+# Memory-mapped files (also works on Win32).
+mmap mmapmodule.c
+
+# Dynamic readlines
+xreadlines xreadlinesmodule.c
+
+# CSV file helper
+_csv _csv.c
+
+# Socket module helper for socket(2)
+_socket socketmodule.c
+
+# Socket module helper for SSL support; you must comment out the other
+# socket line above, and possibly edit the SSL variable:
+SSL=/usr
+_ssl _ssl.c \
+	-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
+	-L$(SSL)/lib -lssl -lcrypto
+
+# The crypt module is now disabled by default because it breaks builds
+# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
+#
+# First, look at Setup.config; configure may have set this for you.
+
+crypt cryptmodule.c # -lcrypt	# crypt(3); needs -lcrypt on some systems
+
+
+# Some more UNIX dependent modules -- off by default, since these
+# are not supported by all UNIX systems:
+
+nis nismodule.c # -lnsl	# Sun yellow pages -- not everywhere
+termios termios.c	# Steen Lumholt's termios module
+resource resource.c	# Jeremy Hylton's rlimit interface
+
+
+# Multimedia modules -- off by default.
+# These don't work for 64-bit platforms!!!
+# These represent audio samples or images as strings:
+
+@NO64BIT@audioop audioop.c	# Operations on audio samples
+@NO64BIT@imageop imageop.c	# Operations on images
+@NO64BIT@rgbimg rgbimgmodule.c	# Read SGI RGB image files (but coded portably)
+
+
+# The md5 module implements the RSA Data Security, Inc. MD5
+# Message-Digest Algorithm, described in RFC 1321.  The necessary files
+# md5c.c and md5.h are included here.
+
+md5 md5module.c md5c.c
+
+
+# The sha module implements the SHA checksum algorithm.
+# (NIST's Secure Hash Algorithm.)
+sha shamodule.c
+
+# SGI IRIX specific modules -- off by default.
+
+# These module work on any SGI machine:
+
+# *** gl must be enabled higher up in this file ***
+#fm fmmodule.c $(GLHACK) -lfm -lgl		# Font Manager
+#sgi sgimodule.c			# sgi.nap() and a few more
+
+# This module requires the header file
+# /usr/people/4Dgifts/iristools/include/izoom.h:
+#imgfile imgfile.c -limage -lgutil -lgl -lm	# Image Processing Utilities
+
+
+# These modules require the Multimedia Development Option (I think):
+
+#al almodule.c -laudio			# Audio Library
+#cd cdmodule.c -lcdaudio -lds -lmediad	# CD Audio Library
+#cl clmodule.c -lcl -lawareaudio	# Compression Library
+#sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11	# Starter Video
+
+
+# The FORMS library, by Mark Overmars, implements user interface
+# components such as dialogs and buttons using SGI's GL and FM
+# libraries.  You must ftp the FORMS library separately from
+# ftp://ftp.cs.ruu.nl/pub/SGI/FORMS.  It was tested with FORMS 2.2a.
+# NOTE: if you want to be able to use FORMS and curses simultaneously
+# (or both link them statically into the same binary), you must
+# compile all of FORMS with the cc option "-Dclear=__GLclear".
+
+# The FORMS variable must point to the FORMS subdirectory of the forms
+# toplevel directory:
+
+#FORMS=/ufs/guido/src/forms/FORMS
+#fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
+
+
+# SunOS specific modules -- off by default:
+
+#sunaudiodev sunaudiodev.c
+
+
+# A Linux specific module -- off by default; this may also work on 
+# some *BSDs.
+
+#linuxaudiodev linuxaudiodev.c
+
+
+# George Neville-Neil's timing module:
+
+timing timingmodule.c
+
+# Lance Ellinghaus's modules:
+
+rotor rotormodule.c		# enigma-inspired encryption
+syslog syslogmodule.c		# syslog daemon interface
+
+
+# Curses support, requring the System V version of curses, often
+# provided by the ncurses library.  e.g. on Linux, link with -lncurses
+# instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
+# -L/usr/5lib before -lcurses).
+#
+# First, look at Setup.config; configure may have set this for you.
+
+_curses _cursesmodule.c -lcurses -ltermcap
+# Wrapper for the panel library that's part of ncurses and SYSV curses.
+_curses_panel _curses_panel.c -lpanel -lncurses 
+
+
+# Generic (SunOS / SVR4) dynamic loading module.
+# This is not needed for dynamic loading of Python modules --
+# it is a highly experimental and dangerous device for calling
+# *arbitrary* C functions in *arbitrary* shared libraries:
+
+#dl dlmodule.c
+
+
+# Modules that provide persistent dictionary-like semantics.  You will
+# probably want to arrange for at least one of them to be available on
+# your machine, though none are defined by default because of library
+# dependencies.  The Python module anydbm.py provides an
+# implementation independent wrapper for these; dumbdbm.py provides
+# similar functionality (but slower of course) implemented in Python.
+
+# The standard Unix dbm module has been moved to Setup.config so that
+# it will be compiled as a shared library by default.  Compiling it as
+# a built-in module causes conflicts with the pybsddb3 module since it
+# creates a static dependency on an out-of-date version of db.so.
+#
+# First, look at Setup.config; configure may have set this for you.
+
+dbm dbmmodule.c -DHAVE_NDBM_H 	# dbm(3) may require -lndbm or similar
+
+
+# Historical Berkeley DB 1.85
+#
+# This module is deprecated; the 1.85 version of the Berkeley DB library has
+# bugs that can cause data corruption. If you can, use later versions of the
+# library instead, available from <http://www.sleepycat.com/>.
+
+#DB=/depot/sundry/src/berkeley-db/db.1.85
+#DBPORT=$(DB)/PORT/irix.5.3
+#bsddb185 bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
+
+# Helper module for various ascii-encoders
+binascii binascii.c
+
+# Fred Drake's interface to the Python parser
+parser parsermodule.c
+
+# cStringIO and cPickle
+cStringIO cStringIO.c
+cPickle cPickle.c
+
+
+# Lee Busby's SIGFPE modules.
+# The library to link fpectl with is platform specific.
+# Choose *one* of the options below for fpectl:
+
+# For SGI IRIX (tested on 5.3):
+#fpectl fpectlmodule.c -lfpe
+
+# For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
+# (Without the compiler you don't have -lsunmath.)
+#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
+
+# For other systems: see instructions in fpectlmodule.c.
+fpectl fpectlmodule.c
+
+# Test module for fpectl.  No extra libraries needed.
+fpetest fpetestmodule.c
+
+# Andrew Kuchling's zlib module.
+# This require zlib 1.1.3 (or later).
+# See http://www.cdrom.com/pub/infozip/zlib/
+zlib zlibmodule.c -lz
+
+# Example -- included for reference only:
+# xx xxmodule.c
+
+# Another example -- the 'xxsubtype' module shows C-level subtyping in action
+xxsubtype xxsubtype.c
diff python.orig/2.3/files/Setup.bsddb python/2.3/files/Setup.bsddb
--- python.orig/2.3/files/Setup.bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup.bsddb	Fri Jun 20 01:05:54 2003
@@ -0,0 +1,19 @@
+@NOSHARED@*shared*
+
+# Sleepycat Berkeley DB interface.
+#
+# This requires the Sleepycat DB code, see http://www.sleepycat.com/
+# The earliest supported version of that library is 3.0, the latest
+# supported version is 4.0 (4.1 is specifically not supported, as that
+# changes the semantics of transactional databases). A list of available
+# releases can be found at
+#
+# http://www.sleepycat.com/update/index.html
+#
+# Edit the variables DB and DBLIBVERto point to the db top directory
+# and the subdirectory of PORT where you built it.
+#DB=/usr/local/BerkeleyDB.4.0
+#DBLIBVER=4.0
+#DBINC=$(DB)/include
+#DBLIB=$(DB)/lib
+_bsddb _bsddb.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -ldb
diff python.orig/2.3/files/Setup.bz2 python/2.3/files/Setup.bz2
--- python.orig/2.3/files/Setup.bz2	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup.bz2	Fri Jun 20 20:23:04 2003
@@ -0,0 +1,3 @@
+@NOSHARED@*shared*
+
+bz2 bz2module.c -I${LOCALBASE}/include -L${LOCALBASE}/lib/ -lbz2
diff python.orig/2.3/files/Setup.expat python/2.3/files/Setup.expat
--- python.orig/2.3/files/Setup.expat	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup.expat	Fri Jun 20 13:04:43 2003
@@ -0,0 +1,15 @@
+@NOSHARED@*shared*
+
+# Interface to the Expat XML parser
+#
+# Expat was written by James Clark and is now maintained by a group of
+# developers on SourceForge; see www.libexpat.org for more
+# information.  The pyexpat module was written by Paul Prescod after a
+# prototype by Jack Jansen.  Source of Expat 1.95.2 is included in
+# Modules/expat/.  Usage of a system shared libexpat.so/expat.dll is
+# not advised.
+#
+# More information on Expat can be found at www.libexpat.org.
+#
+#EXPAT_DIR=/usr/local/src/expat-1.95.2
+pyexpat pyexpat.c -DHAVE_EXPAT_H -I${LOCALBASE}/include -L${LOCALBASE}/lib -lexpat
diff python.orig/2.3/files/Setup.gdbm python/2.3/files/Setup.gdbm
--- python.orig/2.3/files/Setup.gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup.gdbm	Fri Jun 20 01:06:59 2003
@@ -0,0 +1,7 @@
+@NOSHARED@*shared*
+
+# Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
+#
+# First, look at Setup.config; configure may have set this for you.
+
+gdbm gdbmmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -lgdbm
diff python.orig/2.3/files/Setup.mpz python/2.3/files/Setup.mpz
--- python.orig/2.3/files/Setup.mpz	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup.mpz	Fri Jun 20 13:01:32 2003
@@ -0,0 +1,16 @@
+@NOSHARED@*shared*
+
+# The mpz module interfaces to the GNU Multiple Precision library.
+# You need to ftp the GNU MP library.  
+# The GMP variable must point to the GMP source directory.
+# This was originally written and tested against GMP 1.2 and 1.3.2.
+# It has been modified by Rob Hooft to work with 2.0.2 as well, but I
+# haven't tested it recently.
+
+# A compatible MP library unencombered by the GPL also exists.  It was
+# posted to comp.sources.misc in volume 40 and is widely available from
+# FTP archive sites. One URL for it is:
+# ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
+
+#GMP=/ufs/guido/src/gmp
+mpz mpzmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib/ -lgmp
diff python.orig/2.3/files/Setup.tkinter python/2.3/files/Setup.tkinter
--- python.orig/2.3/files/Setup.tkinter	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/Setup.tkinter	Fri Jun 20 12:17:14 2003
@@ -0,0 +1,49 @@
+@NOSHARED@*shared*
+
+# The _tkinter module.
+#
+# The command for _tkinter is long and site specific.  Please
+# uncomment and/or edit those parts as indicated.  If you don't have a
+# specific extension (e.g. Tix or BLT), leave the corresponding line
+# commented out.  (Leave the trailing backslashes in!  If you
+# experience strange errors, you may want to join all uncommented
+# lines and remove the backslashes -- the backslash interpretation is
+# done by the shell's "read" command and it may not be implemented on
+# every system.
+
+# Path component for the Tkinter-related modules
+# The TKPATH variable is always enabled, to save you the effort.
+TKPATH=:lib-tk
+
+# *** Always uncomment this (leave the leading underscore in!):
+_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
+# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
+	-L${LOCALBASE}/lib \
+# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
+	-I${LOCALBASE}/include/tcl8.3 \
+	-I${LOCALBASE}/include/tk8.3 \
+# *** Uncomment and edit to reflect where your X11 header files are:
+	-I${X11BASE}/include \
+# *** Or uncomment this for Solaris:
+#	-I/usr/openwin/include \
+# *** Uncomment and edit for Tix extension only:
+#	-DWITH_TIX -ltix8.1.8.2 \
+# *** Uncomment and edit for BLT extension only:
+#	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
+# *** Uncomment and edit for PIL (TkImaging) extension only:
+#     (See http://www.pythonware.com/products/pil/ for more info)
+#	-DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
+# *** Uncomment and edit for TOGL extension only:
+#	-DWITH_TOGL togl.c \
+# *** Uncomment and edit to reflect your Tcl/Tk versions:
+	-ltk83 -ltcl83 \
+# *** Uncomment and edit to reflect where your X11 libraries are:
+	-L${X11BASE}/lib \
+# *** Or uncomment this for Solaris:
+#	-L/usr/openwin/lib \
+# *** Uncomment these for TOGL extension only:
+#	-lGL -lGLU -lXext -lXmu \
+# *** Uncomment for AIX:
+#	-lld \
+# *** Always uncomment this; X11 libraries to link with:
+	-lX11
diff python.orig/2.3/files/idle python/2.3/files/idle
--- python.orig/2.3/files/idle	Thu Jan  1 01:00:00 1970
+++ python/2.3/files/idle	Mon Aug 11 20:25:05 2003
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+/usr/bin/env python@VERSION@ @LOCALBASE@/lib/python@VERSION@/idlelib/idle.py
diff python.orig/2.3/patches/patch-Lib_tempfile_py python/2.3/patches/patch-Lib_tempfile_py
--- python.orig/2.3/patches/patch-Lib_tempfile_py	Thu Jan  1 01:00:00 1970
+++ python/2.3/patches/patch-Lib_tempfile_py	Sun Jul 20 18:59:51 2003
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- Lib/tempfile.py.orig	Fri Mar 21 13:55:10 2003
++++ Lib/tempfile.py	Sun Jul 20 17:37:32 2003
+@@ -136,7 +136,7 @@ def _candidate_tempdir_list():
+     elif _os.name == 'nt':
+         dirlist.extend([ r'c:\temp', r'c:\tmp', r'\temp', r'\tmp' ])
+     else:
+-        dirlist.extend([ '/tmp', '/var/tmp', '/usr/tmp' ])
++        dirlist.extend([ '/tmp', '/var/tmp' ])
+ 
+     # As a last resort, the current directory.
+     try:
diff python.orig/2.3/patches/patch-Makefile_pre_in python/2.3/patches/patch-Makefile_pre_in
--- python.orig/2.3/patches/patch-Makefile_pre_in	Thu Jan  1 01:00:00 1970
+++ python/2.3/patches/patch-Makefile_pre_in	Sun Jul 20 18:59:51 2003
@@ -0,0 +1,68 @@
+$OpenBSD$
+--- Makefile.pre.in.orig	Sun Jul 13 12:10:42 2003
++++ Makefile.pre.in	Sun Jul 20 18:40:57 2003
+@@ -305,7 +305,7 @@ all:		$(BUILDPYTHON) oldsharedmods share
+ $(BUILDPYTHON):	Modules/$(MAINOBJ) $(LIBRARY) $(LDLIBRARY)
+ 		$(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
+ 			Modules/$(MAINOBJ) \
+-			$(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
++			-lpython$(VERSION) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
+ 
+ platform: $(BUILDPYTHON)
+ 	$(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
+@@ -354,6 +354,11 @@ libpython$(VERSION).so: $(LIBRARY_OBJS)
+ libpython$(VERSION).sl: $(LIBRARY_OBJS)
+ 	$(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
+ 
++# This rule for OpenBSD...
++libpython$(VERSION).so.$(MAJOR).$(MINOR):      $(LIBRARY)
++	$(LDSHARED) -o $@ $(LIBRARY_OBJS)
++
++
+ # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
+ # minimal framework (not including the Lib directory and such) in the current
+ # directory.
+@@ -580,11 +585,6 @@ $(DESTSHARED):
+ 
+ # Install the interpreter (by creating a hard link to python$(VERSION))
+ bininstall:	altbininstall
+-	-if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
+-	then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
+-	else true; \
+-	fi
+-	(cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
+ 
+ # Install the interpreter with $(VERSION) affixed
+ # This goes into $(exec_prefix)
+@@ -595,7 +595,7 @@ altbininstall:	$(BUILDPYTHON)
+ 			exit 1; \
+ 		fi; \
+ 	fi
+-	@for i in $(BINDIR) $(LIBDIR); \
++	@for i in $(BINDIR) $(LIBDIR) $(LIBPL); \
+ 	do \
+ 		if test ! -d $(DESTDIR)$$i; then \
+ 			echo "Creating directory $$i"; \
+@@ -604,11 +604,11 @@ altbininstall:	$(BUILDPYTHON)
+ 		fi; \
+ 	done
+ 	$(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
+-	if test -f libpython$(VERSION)$(SO); then \
++	if test -f libpython$(VERSION)$(SO).$(MAJOR).$(MINOR); then \
+ 		if test "$(SO)" = .dll; then \
+ 			$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
+ 		else \
+-			$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
++			$(INSTALL_SHARED) libpython$(VERSION)$(SO).$(MAJOR).$(MINOR) $(DESTDIR)$(LIBPL)/libpython$(VERSION)$(SO).$(MAJOR).$(MINOR); \
+ 		fi; \
+ 	else	true; \
+ 	fi
+@@ -624,7 +624,7 @@ maninstall:
+ 		fi; \
+ 	done
+ 	$(INSTALL_DATA) $(srcdir)/Misc/python.man \
+-		$(DESTDIR)$(MANDIR)/man1/python.1
++		$(DESTDIR)$(MANDIR)/man1/python2.3.1
+ 
+ # Install the library
+ PLATDIR=	plat-$(MACHDEP)
diff python.orig/2.3/patches/patch-Modules__bsddb_c python/2.3/patches/patch-Modules__bsddb_c
--- python.orig/2.3/patches/patch-Modules__bsddb_c	Thu Jan  1 01:00:00 1970
+++ python/2.3/patches/patch-Modules__bsddb_c	Sun Jul 20 18:59:51 2003
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- Modules/_bsddb.c.orig	Tue Jul 15 21:12:54 2003
++++ Modules/_bsddb.c	Sun Jul 20 17:37:33 2003
+@@ -85,7 +85,7 @@
+ /* --------------------------------------------------------------------- */
+ 
+ #include <Python.h>
+-#include <db.h>
++#include <db3.h>
+ 
+ /* --------------------------------------------------------------------- */
+ /* Various macro definitions */
diff python.orig/2.3/patches/patch-Tools_scripts_pydoc python/2.3/patches/patch-Tools_scripts_pydoc
--- python.orig/2.3/patches/patch-Tools_scripts_pydoc	Thu Jan  1 01:00:00 1970
+++ python/2.3/patches/patch-Tools_scripts_pydoc	Sun Jul 20 18:59:51 2003
@@ -0,0 +1,9 @@
+$OpenBSD$
+--- Tools/scripts/pydoc.orig	Thu Mar  1 01:25:40 2001
++++ Tools/scripts/pydoc	Sun Jul 20 17:37:33 2003
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2.3
+ 
+ import pydoc
+ pydoc.cli()
diff python.orig/2.3/patches/patch-configure_in python/2.3/patches/patch-configure_in
--- python.orig/2.3/patches/patch-configure_in	Thu Jan  1 01:00:00 1970
+++ python/2.3/patches/patch-configure_in	Sun Jul 20 18:59:52 2003
@@ -0,0 +1,30 @@
+$OpenBSD$
+--- configure.in.orig	Sun Jul 13 11:46:13 2003
++++ configure.in	Sun Jul 20 17:37:33 2003
+@@ -1269,13 +1269,14 @@ then
+ 	Linux*|GNU*) LDSHARED='$(CC) -shared';;
+ 	dgux*) LDSHARED="ld -G";;
+ 	BSD/OS*/4*) LDSHARED="gcc -shared";;
+-	OpenBSD*|FreeBSD*)
++	FreeBSD*)
+ 		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
+ 		then
+ 			LDSHARED="cc -shared ${LDFLAGS}"
+ 		else
+ 			LDSHARED="ld -Bshareable ${LDFLAGS}"
+ 		fi;;
++	OpenBSD*) LDSHARED="${CC} -shared ${LDFLAGS}";;
+ 	NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
+ 	OpenUNIX*|UnixWare*)
+ 		if test "$GCC" = "yes"
+@@ -1592,8 +1593,8 @@ yes
+     # on HP/UX, pthread.h renames pthread_create to a different symbol name.
+     # So we really have to include pthread.h, and then link.
+     _libs=$LIBS
+-    LIBS="$LIBS -lpthread"
+-    AC_MSG_CHECKING([for pthread_create in -lpthread])
++    LIBS="$LIBS -pthread"
++    AC_MSG_CHECKING([for pthread_create in -pthread])
+     AC_TRY_LINK([#include <pthread.h>
+ 
+ void * start_routine (void *arg) { exit (0); }], [
diff python.orig/2.3/patches/patch-setup_py python/2.3/patches/patch-setup_py
--- python.orig/2.3/patches/patch-setup_py	Thu Jan  1 01:00:00 1970
+++ python/2.3/patches/patch-setup_py	Sun Jul 20 19:00:10 2003
@@ -0,0 +1,25 @@
+$OpenBSD$
+--- setup.py.orig	Thu Jul 10 14:48:39 2003
++++ setup.py	Sun Jul 20 17:37:33 2003
+@@ -710,9 +710,9 @@ class PyBuildExt(build_ext):
+                                            libraries = ['z']) )
+ 
+         # Gustavo Niemeyer's bz2 module.
+-        if (self.compiler.find_library_file(lib_dirs, 'bz2')):
+-            exts.append( Extension('bz2', ['bz2module.c'],
+-                                   libraries = ['bz2']) )
++        # if (self.compiler.find_library_file(lib_dirs, 'bz2')):
++        #     exts.append( Extension('bz2', ['bz2module.c'],
++        #                            libraries = ['bz2']) )
+ 
+         # Interface to the Expat XML parser
+         #
+@@ -1128,7 +1128,7 @@ def main():
+           ext_modules=[Extension('struct', ['structmodule.c'])],
+ 
+           # Scripts to install
+-          scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle']
++          scripts = []
+         )
+ 
+ # --install-platlib
diff python.orig/2.3/pkg/DEINSTALL python/2.3/pkg/DEINSTALL
--- python.orig/2.3/pkg/DEINSTALL	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DEINSTALL	Mon Aug 11 19:26:22 2003
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# $OpenBSD$
+#
+# Clean up python symlink, if it was ours.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ ${PREFIX}/bin/python -ef ${PREFIX}/bin/python2.3 ]
+then
+	rm -f ${PREFIX}/bin/python
+fi
+
diff python.orig/2.3/pkg/DEINSTALL-idle python/2.3/pkg/DEINSTALL-idle
--- python.orig/2.3/pkg/DEINSTALL-idle	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DEINSTALL-idle	Mon Aug 11 19:26:26 2003
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# $OpenBSD$
+#
+# Clean up python symlink, if it was ours.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ ${PREFIX}/bin/idle -ef ${PREFIX}/bin/idle2.3 ]
+then
+	rm -f ${PREFIX}/bin/idle
+fi
+
diff python.orig/2.3/pkg/DESCR python/2.3/pkg/DESCR
--- python.orig/2.3/pkg/DESCR	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,24 @@
+Python is an interpreted, interactive, object-oriented
+programming language that combines remarkable power with
+very clear syntax. For an introduction to programming in
+Python you are referred to the Python Tutorial. The Python
+Library Reference documents built-in and standard types,
+constants, functions and modules. Finally, the Python
+Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules
+written in C or C++.  On most systems such modules may be
+dynamically loaded. Python is also adaptable as an
+extension language for existing applications. See the
+internal documentation for hints.
+
+Flavors:
+	no_bsddb   - do not build bsdb package
+	no_expat   - do not build expat package
+   no_gdbm    - do not build gdbm package
+   no_idle    - do not build idle package
+   no_mpz     - do not build mpz package
+   no_tests   - do not build tests package
+	no_tkinter - do not build tkinter package
+	no_tools   - do not build tools package
diff python.orig/2.3/pkg/DESCR-bsddb python/2.3/pkg/DESCR-bsddb
--- python.orig/2.3/pkg/DESCR-bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-bsddb	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the bsddb, for using the Berkeley DB library in
+Python.
diff python.orig/2.3/pkg/DESCR-bzip2 python/2.3/pkg/DESCR-bzip2
--- python.orig/2.3/pkg/DESCR-bzip2	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-bzip2	Mon Aug 11 19:27:42 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains python bipz2 library interface.
diff python.orig/2.3/pkg/DESCR-db python/2.3/pkg/DESCR-db
--- python.orig/2.3/pkg/DESCR-db	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-db	Mon Feb 10 22:25:24 2003
@@ -0,0 +1,16 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the Berkeley db module.
+
+WWW: ${HOMEPAGE}
diff python.orig/2.3/pkg/DESCR-expat python/2.3/pkg/DESCR-expat
--- python.orig/2.3/pkg/DESCR-expat	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-expat	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains support for the expat XML parser.
diff python.orig/2.3/pkg/DESCR-gdbm python/2.3/pkg/DESCR-gdbm
--- python.orig/2.3/pkg/DESCR-gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-gdbm	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the gdbm, for using the GNU DBM library in
+Python.
diff python.orig/2.3/pkg/DESCR-idle python/2.3/pkg/DESCR-idle
--- python.orig/2.3/pkg/DESCR-idle	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-idle	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains IDE for Python.
diff python.orig/2.3/pkg/DESCR-mpz python/2.3/pkg/DESCR-mpz
--- python.orig/2.3/pkg/DESCR-mpz	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-mpz	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains mpz, the GNU arbitrary magnitude integer
+module.
diff python.orig/2.3/pkg/DESCR-tests python/2.3/pkg/DESCR-tests
--- python.orig/2.3/pkg/DESCR-tests	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-tests	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the Python testsuite.
diff python.orig/2.3/pkg/DESCR-tkinter python/2.3/pkg/DESCR-tkinter
--- python.orig/2.3/pkg/DESCR-tkinter	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-tkinter	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,15 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains the Tkinter module, for using the tk toolkit
+in Python.
diff python.orig/2.3/pkg/DESCR-tools python/2.3/pkg/DESCR-tools
--- python.orig/2.3/pkg/DESCR-tools	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/DESCR-tools	Mon Aug 11 19:27:28 2003
@@ -0,0 +1,14 @@
+Python is an interpreted, interactive, object-oriented programming
+language that combines remarkable power with very clear syntax. For
+an introduction to programming in Python you are referred to the
+Python Tutorial. The Python Library Reference documents built-in
+and standard types, constants, functions and modules. Finally, the
+Python Reference Manual describes the syntax and semantics of the
+core language in (perhaps too) much detail.
+
+Python's basic power can be extended with your own modules written
+in C or C++.  On most systems such modules may be dynamically loaded.
+Python is also adaptable as an extension language for existing
+applications. See the internal documentation for hints.
+
+This package contains extra tools that Python users may find useful.
diff python.orig/2.3/pkg/INSTALL python/2.3/pkg/INSTALL
--- python.orig/2.3/pkg/INSTALL	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/INSTALL	Mon Aug 11 19:26:08 2003
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# $OpenBSD$
+#
+# Set us up as the default python if there is not one already.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ x$2 = xPOST-INSTALL ]
+then
+	if [ ! -e ${PREFIX}/bin/python ]
+	then
+		cd ${PREFIX}/bin
+		ln -s python2.3 python
+	else
+		cat <<EOT
+
++---------------
+| ${PREFIX}/bin/python already exists.  If you want to use this
+| package as your system default python, make ${PREFIX}/bin/python a
+| symlink to ${PREFIX}/bin/python2.3.
++---------------
+
+EOT
+	fi
+fi
+
diff python.orig/2.3/pkg/INSTALL-idle python/2.3/pkg/INSTALL-idle
--- python.orig/2.3/pkg/INSTALL-idle	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/INSTALL-idle	Mon Aug 11 19:26:16 2003
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# $OpenBSD$
+#
+# Set us up as the default python if there is not one already.
+#
+
+set -e
+PATH=/bin
+PREFIX=${PKG_PREFIX:-/usr/local}
+
+if [ x$2 = xPOST-INSTALL ]
+then
+	if [ ! -e ${PREFIX}/bin/idle ]
+	then
+		cd ${PREFIX}/bin
+		ln -s idle2.3 idle
+	else
+		cat <<EOT
+
++---------------
+| ${PREFIX}/bin/idle already exists.  If you want to use this
+| package as your system default idle, make ${PREFIX}/bin/idle a
+| symlink to ${PREFIX}/bin/idle2.3.
++---------------
+
+EOT
+	fi
+fi
+
diff python.orig/2.3/pkg/PFRAG-tkinter.no_shared python/2.3/pkg/PFRAG-tkinter.no_shared
--- python.orig/2.3/pkg/PFRAG-tkinter.no_shared	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PFRAG-tkinter.no_shared	Mon Aug 11 20:22:55 2003
@@ -0,0 +1,53 @@
+@comment $OpenBSD$
+lib/python2.3/lib-tk/Canvas.py
+lib/python2.3/lib-tk/Canvas.pyc
+lib/python2.3/lib-tk/Canvas.pyo
+lib/python2.3/lib-tk/Dialog.py
+lib/python2.3/lib-tk/Dialog.pyc
+lib/python2.3/lib-tk/Dialog.pyo
+lib/python2.3/lib-tk/FileDialog.py
+lib/python2.3/lib-tk/FileDialog.pyc
+lib/python2.3/lib-tk/FileDialog.pyo
+lib/python2.3/lib-tk/FixTk.py
+lib/python2.3/lib-tk/FixTk.pyc
+lib/python2.3/lib-tk/FixTk.pyo
+lib/python2.3/lib-tk/ScrolledText.py
+lib/python2.3/lib-tk/ScrolledText.pyc
+lib/python2.3/lib-tk/ScrolledText.pyo
+lib/python2.3/lib-tk/SimpleDialog.py
+lib/python2.3/lib-tk/SimpleDialog.pyc
+lib/python2.3/lib-tk/SimpleDialog.pyo
+lib/python2.3/lib-tk/Tix.py
+lib/python2.3/lib-tk/Tix.pyc
+lib/python2.3/lib-tk/Tix.pyo
+lib/python2.3/lib-tk/Tkconstants.py
+lib/python2.3/lib-tk/Tkconstants.pyc
+lib/python2.3/lib-tk/Tkconstants.pyo
+lib/python2.3/lib-tk/Tkdnd.py
+lib/python2.3/lib-tk/Tkdnd.pyc
+lib/python2.3/lib-tk/Tkdnd.pyo
+lib/python2.3/lib-tk/Tkinter.py
+lib/python2.3/lib-tk/Tkinter.pyc
+lib/python2.3/lib-tk/Tkinter.pyo
+lib/python2.3/lib-tk/tkColorChooser.py
+lib/python2.3/lib-tk/tkColorChooser.pyc
+lib/python2.3/lib-tk/tkColorChooser.pyo
+lib/python2.3/lib-tk/tkCommonDialog.py
+lib/python2.3/lib-tk/tkCommonDialog.pyc
+lib/python2.3/lib-tk/tkCommonDialog.pyo
+lib/python2.3/lib-tk/tkFileDialog.py
+lib/python2.3/lib-tk/tkFileDialog.pyc
+lib/python2.3/lib-tk/tkFileDialog.pyo
+lib/python2.3/lib-tk/tkFont.py
+lib/python2.3/lib-tk/tkFont.pyc
+lib/python2.3/lib-tk/tkFont.pyo
+lib/python2.3/lib-tk/tkMessageBox.py
+lib/python2.3/lib-tk/tkMessageBox.pyc
+lib/python2.3/lib-tk/tkMessageBox.pyo
+lib/python2.3/lib-tk/tkSimpleDialog.py
+lib/python2.3/lib-tk/tkSimpleDialog.pyc
+lib/python2.3/lib-tk/tkSimpleDialog.pyo
+lib/python2.3/lib-tk/turtle.py
+lib/python2.3/lib-tk/turtle.pyc
+lib/python2.3/lib-tk/turtle.pyo
+@dirrm lib/python2.3/lib-tk
diff python.orig/2.3/pkg/PFRAG.mm python/2.3/pkg/PFRAG.mm
--- python.orig/2.3/pkg/PFRAG.mm	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PFRAG.mm	Mon Aug 11 20:22:29 2003
@@ -0,0 +1,4 @@
+@comment $OpenBSD$
+lib/python2.3/lib-dynload/audioop.so
+lib/python2.3/lib-dynload/imageop.so
+lib/python2.3/lib-dynload/rgbimgmodule.so
diff python.orig/2.3/pkg/PFRAG.shared python/2.3/pkg/PFRAG.shared
--- python.orig/2.3/pkg/PFRAG.shared	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PFRAG.shared	Mon Aug 11 20:35:19 2003
@@ -0,0 +1,55 @@
+%%mm%%
+@comment $OpenBSD$
+lib/python2.3/lib-dynload/_csv.so
+lib/python2.3/lib-dynload/_curses_panel.so
+lib/python2.3/lib-dynload/_cursesmodule.so
+lib/python2.3/lib-dynload/_hotshot.so
+lib/python2.3/lib-dynload/_localemodule.so
+lib/python2.3/lib-dynload/_random.so
+lib/python2.3/lib-dynload/_socketmodule.so
+lib/python2.3/lib-dynload/_ssl.so
+lib/python2.3/lib-dynload/_testcapimodule.so
+lib/python2.3/lib-dynload/_weakref.so
+lib/python2.3/lib-dynload/arraymodule.so
+lib/python2.3/lib-dynload/binascii.so
+lib/python2.3/lib-dynload/bsddb185.so
+lib/python2.3/lib-dynload/cPickle.so
+lib/python2.3/lib-dynload/cStringIO.so
+lib/python2.3/lib-dynload/cmathmodule.so
+lib/python2.3/lib-dynload/cryptmodule.so
+lib/python2.3/lib-dynload/datetime.so
+lib/python2.3/lib-dynload/dbmmodule.so
+lib/python2.3/lib-dynload/dl.so
+lib/python2.3/lib-dynload/fcntlmodule.so
+lib/python2.3/lib-dynload/fpectlmodule.so
+lib/python2.3/lib-dynload/fpetestmodule.so
+lib/python2.3/lib-dynload/grpmodule.so
+lib/python2.3/lib-dynload/itertools.so
+lib/python2.3/lib-dynload/mathmodule.so
+lib/python2.3/lib-dynload/md5module.so
+lib/python2.3/lib-dynload/mmapmodule.so
+lib/python2.3/lib-dynload/nismodule.so
+lib/python2.3/lib-dynload/operator.so
+lib/python2.3/lib-dynload/parsermodule.so
+lib/python2.3/lib-dynload/pcre.so
+lib/python2.3/lib-dynload/pwdmodule.so
+lib/python2.3/lib-dynload/readline.so
+lib/python2.3/lib-dynload/regex.so
+lib/python2.3/lib-dynload/resource.so
+lib/python2.3/lib-dynload/rotormodule.so
+lib/python2.3/lib-dynload/selectmodule.so
+lib/python2.3/lib-dynload/shamodule.so
+lib/python2.3/lib-dynload/strop.so
+lib/python2.3/lib-dynload/structmodule.so
+lib/python2.3/lib-dynload/syslogmodule.so
+lib/python2.3/lib-dynload/termios.so
+lib/python2.3/lib-dynload/timemodule.so
+lib/python2.3/lib-dynload/timingmodule.so
+lib/python2.3/lib-dynload/unicodedata.so
+lib/python2.3/lib-dynload/xreadlinesmodule.so
+lib/python2.3/lib-dynload/xxsubtype.so
+lib/python2.3/lib-dynload/zlibmodule.so
+lib/libpython2.3.so.0.0
+lib/python2.3/config/libpython2.3.so.0.0
+DYNLIBDIR(%D/lib)
+@dirrm lib/python2.3/lib-dynload
diff python.orig/2.3/pkg/PFRAG.shared.orig python/2.3/pkg/PFRAG.shared.orig
--- python.orig/2.3/pkg/PFRAG.shared.orig	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PFRAG.shared.orig	Thu Jul 31 21:52:16 2003
@@ -0,0 +1,55 @@
+@comment $OpenBSD$
+%%mm%%
+lib/python2.3/lib-dynload/_csv.so
+lib/python2.3/lib-dynload/_curses_panel.so
+lib/python2.3/lib-dynload/_cursesmodule.so
+lib/python2.3/lib-dynload/_hotshot.so
+lib/python2.3/lib-dynload/_localemodule.so
+lib/python2.3/lib-dynload/_random.so
+lib/python2.3/lib-dynload/_socketmodule.so
+lib/python2.3/lib-dynload/_ssl.so
+lib/python2.3/lib-dynload/_testcapimodule.so
+lib/python2.3/lib-dynload/_weakref.so
+lib/python2.3/lib-dynload/arraymodule.so
+lib/python2.3/lib-dynload/binascii.so
+lib/python2.3/lib-dynload/bsddb185.so
+lib/python2.3/lib-dynload/cPickle.so
+lib/python2.3/lib-dynload/cStringIO.so
+lib/python2.3/lib-dynload/cmathmodule.so
+lib/python2.3/lib-dynload/cryptmodule.so
+lib/python2.3/lib-dynload/datetime.so
+lib/python2.3/lib-dynload/dbmmodule.so
+lib/python2.3/lib-dynload/dl.so
+lib/python2.3/lib-dynload/fcntlmodule.so
+lib/python2.3/lib-dynload/fpectlmodule.so
+lib/python2.3/lib-dynload/fpetestmodule.so
+lib/python2.3/lib-dynload/grpmodule.so
+lib/python2.3/lib-dynload/itertools.so
+lib/python2.3/lib-dynload/mathmodule.so
+lib/python2.3/lib-dynload/md5module.so
+lib/python2.3/lib-dynload/mmapmodule.so
+lib/python2.3/lib-dynload/nismodule.so
+lib/python2.3/lib-dynload/operator.so
+lib/python2.3/lib-dynload/parsermodule.so
+lib/python2.3/lib-dynload/pcre.so
+lib/python2.3/lib-dynload/pwdmodule.so
+lib/python2.3/lib-dynload/readline.so
+lib/python2.3/lib-dynload/regex.so
+lib/python2.3/lib-dynload/resource.so
+lib/python2.3/lib-dynload/rotormodule.so
+lib/python2.3/lib-dynload/selectmodule.so
+lib/python2.3/lib-dynload/shamodule.so
+lib/python2.3/lib-dynload/strop.so
+lib/python2.3/lib-dynload/structmodule.so
+lib/python2.3/lib-dynload/syslogmodule.so
+lib/python2.3/lib-dynload/termios.so
+lib/python2.3/lib-dynload/timemodule.so
+lib/python2.3/lib-dynload/timingmodule.so
+lib/python2.3/lib-dynload/unicodedata.so
+lib/python2.3/lib-dynload/xreadlinesmodule.so
+lib/python2.3/lib-dynload/xxsubtype.so
+lib/python2.3/lib-dynload/zlibmodule.so
+lib/libpython2.3.so.0.0
+lib/python2.3/config/libpython2.3.so.0.0
+DYNLIBDIR(%D/lib)
+@dirrm lib/python2.3/lib-dynload
diff python.orig/2.3/pkg/PLIST python/2.3/pkg/PLIST
--- python.orig/2.3/pkg/PLIST	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST	Mon Aug 11 20:22:54 2003
@@ -0,0 +1,1417 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-2.3*
+bin/pydoc2.3
+bin/python2.3
+include/python2.3/Python.h
+include/python2.3/abstract.h
+include/python2.3/bitset.h
+include/python2.3/boolobject.h
+include/python2.3/bufferobject.h
+include/python2.3/cStringIO.h
+include/python2.3/cellobject.h
+include/python2.3/ceval.h
+include/python2.3/classobject.h
+include/python2.3/cobject.h
+include/python2.3/codecs.h
+include/python2.3/compile.h
+include/python2.3/complexobject.h
+include/python2.3/datetime.h
+include/python2.3/descrobject.h
+include/python2.3/dictobject.h
+include/python2.3/enumobject.h
+include/python2.3/errcode.h
+include/python2.3/eval.h
+include/python2.3/fileobject.h
+include/python2.3/floatobject.h
+include/python2.3/frameobject.h
+include/python2.3/funcobject.h
+include/python2.3/graminit.h
+include/python2.3/grammar.h
+include/python2.3/import.h
+include/python2.3/intobject.h
+include/python2.3/intrcheck.h
+include/python2.3/iterobject.h
+include/python2.3/listobject.h
+include/python2.3/longintrepr.h
+include/python2.3/longobject.h
+include/python2.3/marshal.h
+include/python2.3/metagrammar.h
+include/python2.3/methodobject.h
+include/python2.3/modsupport.h
+include/python2.3/moduleobject.h
+include/python2.3/node.h
+include/python2.3/object.h
+include/python2.3/objimpl.h
+include/python2.3/opcode.h
+include/python2.3/osdefs.h
+include/python2.3/parsetok.h
+include/python2.3/patchlevel.h
+include/python2.3/pgen.h
+include/python2.3/pgenheaders.h
+include/python2.3/py_curses.h
+include/python2.3/pyconfig.h
+include/python2.3/pydebug.h
+include/python2.3/pyerrors.h
+include/python2.3/pyfpe.h
+include/python2.3/pygetopt.h
+include/python2.3/pymactoolbox.h
+include/python2.3/pymem.h
+include/python2.3/pyport.h
+include/python2.3/pystate.h
+include/python2.3/pythonrun.h
+include/python2.3/pythread.h
+include/python2.3/rangeobject.h
+include/python2.3/sliceobject.h
+include/python2.3/stringobject.h
+include/python2.3/structmember.h
+include/python2.3/structseq.h
+include/python2.3/symtable.h
+include/python2.3/sysmodule.h
+include/python2.3/token.h
+include/python2.3/traceback.h
+include/python2.3/tupleobject.h
+include/python2.3/ucnhash.h
+include/python2.3/unicodeobject.h
+include/python2.3/weakrefobject.h
+lib/python2.3/BaseHTTPServer.py
+lib/python2.3/BaseHTTPServer.pyc
+lib/python2.3/BaseHTTPServer.pyo
+lib/python2.3/Bastion.py
+lib/python2.3/Bastion.pyc
+lib/python2.3/Bastion.pyo
+lib/python2.3/CGIHTTPServer.py
+lib/python2.3/CGIHTTPServer.pyc
+lib/python2.3/CGIHTTPServer.pyo
+lib/python2.3/ConfigParser.py
+lib/python2.3/ConfigParser.pyc
+lib/python2.3/ConfigParser.pyo
+lib/python2.3/Cookie.py
+lib/python2.3/Cookie.pyc
+lib/python2.3/Cookie.pyo
+lib/python2.3/DocXMLRPCServer.py
+lib/python2.3/DocXMLRPCServer.pyc
+lib/python2.3/DocXMLRPCServer.pyo
+lib/python2.3/FCNTL.py
+lib/python2.3/FCNTL.pyc
+lib/python2.3/FCNTL.pyo
+lib/python2.3/HTMLParser.py
+lib/python2.3/HTMLParser.pyc
+lib/python2.3/HTMLParser.pyo
+lib/python2.3/LICENSE.txt
+lib/python2.3/MimeWriter.py
+lib/python2.3/MimeWriter.pyc
+lib/python2.3/MimeWriter.pyo
+lib/python2.3/Queue.py
+lib/python2.3/Queue.pyc
+lib/python2.3/Queue.pyo
+lib/python2.3/SimpleHTTPServer.py
+lib/python2.3/SimpleHTTPServer.pyc
+lib/python2.3/SimpleHTTPServer.pyo
+lib/python2.3/SimpleXMLRPCServer.py
+lib/python2.3/SimpleXMLRPCServer.pyc
+lib/python2.3/SimpleXMLRPCServer.pyo
+lib/python2.3/SocketServer.py
+lib/python2.3/SocketServer.pyc
+lib/python2.3/SocketServer.pyo
+lib/python2.3/StringIO.py
+lib/python2.3/StringIO.pyc
+lib/python2.3/StringIO.pyo
+lib/python2.3/TERMIOS.py
+lib/python2.3/TERMIOS.pyc
+lib/python2.3/TERMIOS.pyo
+lib/python2.3/UserDict.py
+lib/python2.3/UserDict.pyc
+lib/python2.3/UserDict.pyo
+lib/python2.3/UserList.py
+lib/python2.3/UserList.pyc
+lib/python2.3/UserList.pyo
+lib/python2.3/UserString.py
+lib/python2.3/UserString.pyc
+lib/python2.3/UserString.pyo
+lib/python2.3/__future__.py
+lib/python2.3/__future__.pyc
+lib/python2.3/__future__.pyo
+lib/python2.3/__phello__.foo.py
+lib/python2.3/__phello__.foo.pyc
+lib/python2.3/__phello__.foo.pyo
+lib/python2.3/_strptime.py
+lib/python2.3/_strptime.pyc
+lib/python2.3/_strptime.pyo
+lib/python2.3/aifc.py
+lib/python2.3/aifc.pyc
+lib/python2.3/aifc.pyo
+lib/python2.3/anydbm.py
+lib/python2.3/anydbm.pyc
+lib/python2.3/anydbm.pyo
+lib/python2.3/asynchat.py
+lib/python2.3/asynchat.pyc
+lib/python2.3/asynchat.pyo
+lib/python2.3/asyncore.py
+lib/python2.3/asyncore.pyc
+lib/python2.3/asyncore.pyo
+lib/python2.3/atexit.py
+lib/python2.3/atexit.pyc
+lib/python2.3/atexit.pyo
+lib/python2.3/audiodev.py
+lib/python2.3/audiodev.pyc
+lib/python2.3/audiodev.pyo
+lib/python2.3/base64.py
+lib/python2.3/base64.pyc
+lib/python2.3/base64.pyo
+lib/python2.3/bdb.py
+lib/python2.3/bdb.pyc
+lib/python2.3/bdb.pyo
+lib/python2.3/binhex.py
+lib/python2.3/binhex.pyc
+lib/python2.3/binhex.pyo
+lib/python2.3/bisect.py
+lib/python2.3/bisect.pyc
+lib/python2.3/bisect.pyo
+lib/python2.3/bsddb/__init__.py
+lib/python2.3/bsddb/__init__.pyc
+lib/python2.3/bsddb/__init__.pyo
+lib/python2.3/bsddb/db.py
+lib/python2.3/bsddb/db.pyc
+lib/python2.3/bsddb/db.pyo
+lib/python2.3/bsddb/dbobj.py
+lib/python2.3/bsddb/dbobj.pyc
+lib/python2.3/bsddb/dbobj.pyo
+lib/python2.3/bsddb/dbrecio.py
+lib/python2.3/bsddb/dbrecio.pyc
+lib/python2.3/bsddb/dbrecio.pyo
+lib/python2.3/bsddb/dbshelve.py
+lib/python2.3/bsddb/dbshelve.pyc
+lib/python2.3/bsddb/dbshelve.pyo
+lib/python2.3/bsddb/dbtables.py
+lib/python2.3/bsddb/dbtables.pyc
+lib/python2.3/bsddb/dbtables.pyo
+lib/python2.3/bsddb/dbutils.py
+lib/python2.3/bsddb/dbutils.pyc
+lib/python2.3/bsddb/dbutils.pyo
+lib/python2.3/bsddb/test/__init__.py
+lib/python2.3/bsddb/test/__init__.pyc
+lib/python2.3/bsddb/test/__init__.pyo
+lib/python2.3/bsddb/test/test_all.py
+lib/python2.3/bsddb/test/test_all.pyc
+lib/python2.3/bsddb/test/test_all.pyo
+lib/python2.3/bsddb/test/test_associate.py
+lib/python2.3/bsddb/test/test_associate.pyc
+lib/python2.3/bsddb/test/test_associate.pyo
+lib/python2.3/bsddb/test/test_basics.py
+lib/python2.3/bsddb/test/test_basics.pyc
+lib/python2.3/bsddb/test/test_basics.pyo
+lib/python2.3/bsddb/test/test_compat.py
+lib/python2.3/bsddb/test/test_compat.pyc
+lib/python2.3/bsddb/test/test_compat.pyo
+lib/python2.3/bsddb/test/test_dbobj.py
+lib/python2.3/bsddb/test/test_dbobj.pyc
+lib/python2.3/bsddb/test/test_dbobj.pyo
+lib/python2.3/bsddb/test/test_dbshelve.py
+lib/python2.3/bsddb/test/test_dbshelve.pyc
+lib/python2.3/bsddb/test/test_dbshelve.pyo
+lib/python2.3/bsddb/test/test_dbtables.py
+lib/python2.3/bsddb/test/test_dbtables.pyc
+lib/python2.3/bsddb/test/test_dbtables.pyo
+lib/python2.3/bsddb/test/test_env_close.py
+lib/python2.3/bsddb/test/test_env_close.pyc
+lib/python2.3/bsddb/test/test_env_close.pyo
+lib/python2.3/bsddb/test/test_get_none.py
+lib/python2.3/bsddb/test/test_get_none.pyc
+lib/python2.3/bsddb/test/test_get_none.pyo
+lib/python2.3/bsddb/test/test_join.py
+lib/python2.3/bsddb/test/test_join.pyc
+lib/python2.3/bsddb/test/test_join.pyo
+lib/python2.3/bsddb/test/test_lock.py
+lib/python2.3/bsddb/test/test_lock.pyc
+lib/python2.3/bsddb/test/test_lock.pyo
+lib/python2.3/bsddb/test/test_misc.py
+lib/python2.3/bsddb/test/test_misc.pyc
+lib/python2.3/bsddb/test/test_misc.pyo
+lib/python2.3/bsddb/test/test_queue.py
+lib/python2.3/bsddb/test/test_queue.pyc
+lib/python2.3/bsddb/test/test_queue.pyo
+lib/python2.3/bsddb/test/test_recno.py
+lib/python2.3/bsddb/test/test_recno.pyc
+lib/python2.3/bsddb/test/test_recno.pyo
+lib/python2.3/bsddb/test/test_thread.py
+lib/python2.3/bsddb/test/test_thread.pyc
+lib/python2.3/bsddb/test/test_thread.pyo
+lib/python2.3/calendar.py
+lib/python2.3/calendar.pyc
+lib/python2.3/calendar.pyo
+lib/python2.3/cgi.py
+lib/python2.3/cgi.pyc
+lib/python2.3/cgi.pyo
+lib/python2.3/cgitb.py
+lib/python2.3/cgitb.pyc
+lib/python2.3/cgitb.pyo
+lib/python2.3/chunk.py
+lib/python2.3/chunk.pyc
+lib/python2.3/chunk.pyo
+lib/python2.3/cmd.py
+lib/python2.3/cmd.pyc
+lib/python2.3/cmd.pyo
+lib/python2.3/code.py
+lib/python2.3/code.pyc
+lib/python2.3/code.pyo
+lib/python2.3/codecs.py
+lib/python2.3/codecs.pyc
+lib/python2.3/codecs.pyo
+lib/python2.3/codeop.py
+lib/python2.3/codeop.pyc
+lib/python2.3/codeop.pyo
+lib/python2.3/colorsys.py
+lib/python2.3/colorsys.pyc
+lib/python2.3/colorsys.pyo
+lib/python2.3/commands.py
+lib/python2.3/commands.pyc
+lib/python2.3/commands.pyo
+lib/python2.3/compileall.py
+lib/python2.3/compileall.pyc
+lib/python2.3/compileall.pyo
+lib/python2.3/compiler/__init__.py
+lib/python2.3/compiler/__init__.pyc
+lib/python2.3/compiler/__init__.pyo
+lib/python2.3/compiler/ast.py
+lib/python2.3/compiler/ast.pyc
+lib/python2.3/compiler/ast.pyo
+lib/python2.3/compiler/consts.py
+lib/python2.3/compiler/consts.pyc
+lib/python2.3/compiler/consts.pyo
+lib/python2.3/compiler/future.py
+lib/python2.3/compiler/future.pyc
+lib/python2.3/compiler/future.pyo
+lib/python2.3/compiler/misc.py
+lib/python2.3/compiler/misc.pyc
+lib/python2.3/compiler/misc.pyo
+lib/python2.3/compiler/pyassem.py
+lib/python2.3/compiler/pyassem.pyc
+lib/python2.3/compiler/pyassem.pyo
+lib/python2.3/compiler/pycodegen.py
+lib/python2.3/compiler/pycodegen.pyc
+lib/python2.3/compiler/pycodegen.pyo
+lib/python2.3/compiler/symbols.py
+lib/python2.3/compiler/symbols.pyc
+lib/python2.3/compiler/symbols.pyo
+lib/python2.3/compiler/syntax.py
+lib/python2.3/compiler/syntax.pyc
+lib/python2.3/compiler/syntax.pyo
+lib/python2.3/compiler/transformer.py
+lib/python2.3/compiler/transformer.pyc
+lib/python2.3/compiler/transformer.pyo
+lib/python2.3/compiler/visitor.py
+lib/python2.3/compiler/visitor.pyc
+lib/python2.3/compiler/visitor.pyo
+lib/python2.3/config/Makefile
+lib/python2.3/config/Setup
+lib/python2.3/config/Setup.config
+lib/python2.3/config/Setup.local
+lib/python2.3/config/config.c
+lib/python2.3/config/config.c.in
+lib/python2.3/config/install-sh
+lib/python2.3/config/libpython2.3.a
+lib/python2.3/config/makesetup
+lib/python2.3/config/python.o
+lib/python2.3/copy.py
+lib/python2.3/copy.pyc
+lib/python2.3/copy.pyo
+lib/python2.3/copy_reg.py
+lib/python2.3/copy_reg.pyc
+lib/python2.3/copy_reg.pyo
+lib/python2.3/csv.py
+lib/python2.3/csv.pyc
+lib/python2.3/csv.pyo
+lib/python2.3/curses/__init__.py
+lib/python2.3/curses/__init__.pyc
+lib/python2.3/curses/__init__.pyo
+lib/python2.3/curses/ascii.py
+lib/python2.3/curses/ascii.pyc
+lib/python2.3/curses/ascii.pyo
+lib/python2.3/curses/has_key.py
+lib/python2.3/curses/has_key.pyc
+lib/python2.3/curses/has_key.pyo
+lib/python2.3/curses/panel.py
+lib/python2.3/curses/panel.pyc
+lib/python2.3/curses/panel.pyo
+lib/python2.3/curses/textpad.py
+lib/python2.3/curses/textpad.pyc
+lib/python2.3/curses/textpad.pyo
+lib/python2.3/curses/wrapper.py
+lib/python2.3/curses/wrapper.pyc
+lib/python2.3/curses/wrapper.pyo
+lib/python2.3/dbhash.py
+lib/python2.3/dbhash.pyc
+lib/python2.3/dbhash.pyo
+lib/python2.3/difflib.py
+lib/python2.3/difflib.pyc
+lib/python2.3/difflib.pyo
+lib/python2.3/dircache.py
+lib/python2.3/dircache.pyc
+lib/python2.3/dircache.pyo
+lib/python2.3/dis.py
+lib/python2.3/dis.pyc
+lib/python2.3/dis.pyo
+lib/python2.3/distutils/README
+lib/python2.3/distutils/__init__.py
+lib/python2.3/distutils/__init__.pyc
+lib/python2.3/distutils/__init__.pyo
+lib/python2.3/distutils/archive_util.py
+lib/python2.3/distutils/archive_util.pyc
+lib/python2.3/distutils/archive_util.pyo
+lib/python2.3/distutils/bcppcompiler.py
+lib/python2.3/distutils/bcppcompiler.pyc
+lib/python2.3/distutils/bcppcompiler.pyo
+lib/python2.3/distutils/ccompiler.py
+lib/python2.3/distutils/ccompiler.pyc
+lib/python2.3/distutils/ccompiler.pyo
+lib/python2.3/distutils/cmd.py
+lib/python2.3/distutils/cmd.pyc
+lib/python2.3/distutils/cmd.pyo
+lib/python2.3/distutils/command/__init__.py
+lib/python2.3/distutils/command/__init__.pyc
+lib/python2.3/distutils/command/__init__.pyo
+lib/python2.3/distutils/command/bdist.py
+lib/python2.3/distutils/command/bdist.pyc
+lib/python2.3/distutils/command/bdist.pyo
+lib/python2.3/distutils/command/bdist_dumb.py
+lib/python2.3/distutils/command/bdist_dumb.pyc
+lib/python2.3/distutils/command/bdist_dumb.pyo
+lib/python2.3/distutils/command/bdist_rpm.py
+lib/python2.3/distutils/command/bdist_rpm.pyc
+lib/python2.3/distutils/command/bdist_rpm.pyo
+lib/python2.3/distutils/command/bdist_wininst.py
+lib/python2.3/distutils/command/bdist_wininst.pyc
+lib/python2.3/distutils/command/bdist_wininst.pyo
+lib/python2.3/distutils/command/build.py
+lib/python2.3/distutils/command/build.pyc
+lib/python2.3/distutils/command/build.pyo
+lib/python2.3/distutils/command/build_clib.py
+lib/python2.3/distutils/command/build_clib.pyc
+lib/python2.3/distutils/command/build_clib.pyo
+lib/python2.3/distutils/command/build_ext.py
+lib/python2.3/distutils/command/build_ext.pyc
+lib/python2.3/distutils/command/build_ext.pyo
+lib/python2.3/distutils/command/build_py.py
+lib/python2.3/distutils/command/build_py.pyc
+lib/python2.3/distutils/command/build_py.pyo
+lib/python2.3/distutils/command/build_scripts.py
+lib/python2.3/distutils/command/build_scripts.pyc
+lib/python2.3/distutils/command/build_scripts.pyo
+lib/python2.3/distutils/command/clean.py
+lib/python2.3/distutils/command/clean.pyc
+lib/python2.3/distutils/command/clean.pyo
+lib/python2.3/distutils/command/command_template
+lib/python2.3/distutils/command/config.py
+lib/python2.3/distutils/command/config.pyc
+lib/python2.3/distutils/command/config.pyo
+lib/python2.3/distutils/command/install.py
+lib/python2.3/distutils/command/install.pyc
+lib/python2.3/distutils/command/install.pyo
+lib/python2.3/distutils/command/install_data.py
+lib/python2.3/distutils/command/install_data.pyc
+lib/python2.3/distutils/command/install_data.pyo
+lib/python2.3/distutils/command/install_headers.py
+lib/python2.3/distutils/command/install_headers.pyc
+lib/python2.3/distutils/command/install_headers.pyo
+lib/python2.3/distutils/command/install_lib.py
+lib/python2.3/distutils/command/install_lib.pyc
+lib/python2.3/distutils/command/install_lib.pyo
+lib/python2.3/distutils/command/install_scripts.py
+lib/python2.3/distutils/command/install_scripts.pyc
+lib/python2.3/distutils/command/install_scripts.pyo
+lib/python2.3/distutils/command/register.py
+lib/python2.3/distutils/command/register.pyc
+lib/python2.3/distutils/command/register.pyo
+lib/python2.3/distutils/command/sdist.py
+lib/python2.3/distutils/command/sdist.pyc
+lib/python2.3/distutils/command/sdist.pyo
+lib/python2.3/distutils/command/wininst.exe
+lib/python2.3/distutils/core.py
+lib/python2.3/distutils/core.pyc
+lib/python2.3/distutils/core.pyo
+lib/python2.3/distutils/cygwinccompiler.py
+lib/python2.3/distutils/cygwinccompiler.pyc
+lib/python2.3/distutils/cygwinccompiler.pyo
+lib/python2.3/distutils/debug.py
+lib/python2.3/distutils/debug.pyc
+lib/python2.3/distutils/debug.pyo
+lib/python2.3/distutils/dep_util.py
+lib/python2.3/distutils/dep_util.pyc
+lib/python2.3/distutils/dep_util.pyo
+lib/python2.3/distutils/dir_util.py
+lib/python2.3/distutils/dir_util.pyc
+lib/python2.3/distutils/dir_util.pyo
+lib/python2.3/distutils/dist.py
+lib/python2.3/distutils/dist.pyc
+lib/python2.3/distutils/dist.pyo
+lib/python2.3/distutils/emxccompiler.py
+lib/python2.3/distutils/emxccompiler.pyc
+lib/python2.3/distutils/emxccompiler.pyo
+lib/python2.3/distutils/errors.py
+lib/python2.3/distutils/errors.pyc
+lib/python2.3/distutils/errors.pyo
+lib/python2.3/distutils/extension.py
+lib/python2.3/distutils/extension.pyc
+lib/python2.3/distutils/extension.pyo
+lib/python2.3/distutils/fancy_getopt.py
+lib/python2.3/distutils/fancy_getopt.pyc
+lib/python2.3/distutils/fancy_getopt.pyo
+lib/python2.3/distutils/file_util.py
+lib/python2.3/distutils/file_util.pyc
+lib/python2.3/distutils/file_util.pyo
+lib/python2.3/distutils/filelist.py
+lib/python2.3/distutils/filelist.pyc
+lib/python2.3/distutils/filelist.pyo
+lib/python2.3/distutils/log.py
+lib/python2.3/distutils/log.pyc
+lib/python2.3/distutils/log.pyo
+lib/python2.3/distutils/msvccompiler.py
+lib/python2.3/distutils/msvccompiler.pyc
+lib/python2.3/distutils/msvccompiler.pyo
+lib/python2.3/distutils/mwerkscompiler.py
+lib/python2.3/distutils/mwerkscompiler.pyc
+lib/python2.3/distutils/mwerkscompiler.pyo
+lib/python2.3/distutils/spawn.py
+lib/python2.3/distutils/spawn.pyc
+lib/python2.3/distutils/spawn.pyo
+lib/python2.3/distutils/sysconfig.py
+lib/python2.3/distutils/sysconfig.pyc
+lib/python2.3/distutils/sysconfig.pyo
+lib/python2.3/distutils/text_file.py
+lib/python2.3/distutils/text_file.pyc
+lib/python2.3/distutils/text_file.pyo
+lib/python2.3/distutils/unixccompiler.py
+lib/python2.3/distutils/unixccompiler.pyc
+lib/python2.3/distutils/unixccompiler.pyo
+lib/python2.3/distutils/util.py
+lib/python2.3/distutils/util.pyc
+lib/python2.3/distutils/util.pyo
+lib/python2.3/distutils/version.py
+lib/python2.3/distutils/version.pyc
+lib/python2.3/distutils/version.pyo
+lib/python2.3/doctest.py
+lib/python2.3/doctest.pyc
+lib/python2.3/doctest.pyo
+lib/python2.3/dumbdbm.py
+lib/python2.3/dumbdbm.pyc
+lib/python2.3/dumbdbm.pyo
+lib/python2.3/dummy_thread.py
+lib/python2.3/dummy_thread.pyc
+lib/python2.3/dummy_thread.pyo
+lib/python2.3/dummy_threading.py
+lib/python2.3/dummy_threading.pyc
+lib/python2.3/dummy_threading.pyo
+lib/python2.3/email/Charset.py
+lib/python2.3/email/Charset.pyc
+lib/python2.3/email/Charset.pyo
+lib/python2.3/email/Encoders.py
+lib/python2.3/email/Encoders.pyc
+lib/python2.3/email/Encoders.pyo
+lib/python2.3/email/Errors.py
+lib/python2.3/email/Errors.pyc
+lib/python2.3/email/Errors.pyo
+lib/python2.3/email/Generator.py
+lib/python2.3/email/Generator.pyc
+lib/python2.3/email/Generator.pyo
+lib/python2.3/email/Header.py
+lib/python2.3/email/Header.pyc
+lib/python2.3/email/Header.pyo
+lib/python2.3/email/Iterators.py
+lib/python2.3/email/Iterators.pyc
+lib/python2.3/email/Iterators.pyo
+lib/python2.3/email/MIMEAudio.py
+lib/python2.3/email/MIMEAudio.pyc
+lib/python2.3/email/MIMEAudio.pyo
+lib/python2.3/email/MIMEBase.py
+lib/python2.3/email/MIMEBase.pyc
+lib/python2.3/email/MIMEBase.pyo
+lib/python2.3/email/MIMEImage.py
+lib/python2.3/email/MIMEImage.pyc
+lib/python2.3/email/MIMEImage.pyo
+lib/python2.3/email/MIMEMessage.py
+lib/python2.3/email/MIMEMessage.pyc
+lib/python2.3/email/MIMEMessage.pyo
+lib/python2.3/email/MIMEMultipart.py
+lib/python2.3/email/MIMEMultipart.pyc
+lib/python2.3/email/MIMEMultipart.pyo
+lib/python2.3/email/MIMENonMultipart.py
+lib/python2.3/email/MIMENonMultipart.pyc
+lib/python2.3/email/MIMENonMultipart.pyo
+lib/python2.3/email/MIMEText.py
+lib/python2.3/email/MIMEText.pyc
+lib/python2.3/email/MIMEText.pyo
+lib/python2.3/email/Message.py
+lib/python2.3/email/Message.pyc
+lib/python2.3/email/Message.pyo
+lib/python2.3/email/Parser.py
+lib/python2.3/email/Parser.pyc
+lib/python2.3/email/Parser.pyo
+lib/python2.3/email/Utils.py
+lib/python2.3/email/Utils.pyc
+lib/python2.3/email/Utils.pyo
+lib/python2.3/email/__init__.py
+lib/python2.3/email/__init__.pyc
+lib/python2.3/email/__init__.pyo
+lib/python2.3/email/_compat21.py
+lib/python2.3/email/_compat21.pyc
+lib/python2.3/email/_compat21.pyo
+lib/python2.3/email/_compat22.py
+lib/python2.3/email/_compat22.pyc
+lib/python2.3/email/_compat22.pyo
+lib/python2.3/email/_parseaddr.py
+lib/python2.3/email/_parseaddr.pyc
+lib/python2.3/email/_parseaddr.pyo
+lib/python2.3/email/base64MIME.py
+lib/python2.3/email/base64MIME.pyc
+lib/python2.3/email/base64MIME.pyo
+lib/python2.3/email/quopriMIME.py
+lib/python2.3/email/quopriMIME.pyc
+lib/python2.3/email/quopriMIME.pyo
+lib/python2.3/email/test/__init__.py
+lib/python2.3/email/test/__init__.pyc
+lib/python2.3/email/test/__init__.pyo
+lib/python2.3/email/test/data/PyBanner048.gif
+lib/python2.3/email/test/data/audiotest.au
+lib/python2.3/email/test/data/msg_01.txt
+lib/python2.3/email/test/data/msg_02.txt
+lib/python2.3/email/test/data/msg_03.txt
+lib/python2.3/email/test/data/msg_04.txt
+lib/python2.3/email/test/data/msg_05.txt
+lib/python2.3/email/test/data/msg_06.txt
+lib/python2.3/email/test/data/msg_07.txt
+lib/python2.3/email/test/data/msg_08.txt
+lib/python2.3/email/test/data/msg_09.txt
+lib/python2.3/email/test/data/msg_10.txt
+lib/python2.3/email/test/data/msg_11.txt
+lib/python2.3/email/test/data/msg_12.txt
+lib/python2.3/email/test/data/msg_13.txt
+lib/python2.3/email/test/data/msg_14.txt
+lib/python2.3/email/test/data/msg_15.txt
+lib/python2.3/email/test/data/msg_16.txt
+lib/python2.3/email/test/data/msg_17.txt
+lib/python2.3/email/test/data/msg_18.txt
+lib/python2.3/email/test/data/msg_19.txt
+lib/python2.3/email/test/data/msg_20.txt
+lib/python2.3/email/test/data/msg_21.txt
+lib/python2.3/email/test/data/msg_22.txt
+lib/python2.3/email/test/data/msg_23.txt
+lib/python2.3/email/test/data/msg_24.txt
+lib/python2.3/email/test/data/msg_25.txt
+lib/python2.3/email/test/data/msg_26.txt
+lib/python2.3/email/test/data/msg_27.txt
+lib/python2.3/email/test/data/msg_28.txt
+lib/python2.3/email/test/data/msg_29.txt
+lib/python2.3/email/test/data/msg_30.txt
+lib/python2.3/email/test/data/msg_31.txt
+lib/python2.3/email/test/data/msg_32.txt
+lib/python2.3/email/test/data/msg_33.txt
+lib/python2.3/email/test/data/msg_34.txt
+lib/python2.3/email/test/data/msg_35.txt
+lib/python2.3/email/test/test_email.py
+lib/python2.3/email/test/test_email.pyc
+lib/python2.3/email/test/test_email.pyo
+lib/python2.3/email/test/test_email_codecs.py
+lib/python2.3/email/test/test_email_codecs.pyc
+lib/python2.3/email/test/test_email_codecs.pyo
+lib/python2.3/email/test/test_email_torture.py
+lib/python2.3/email/test/test_email_torture.pyc
+lib/python2.3/email/test/test_email_torture.pyo
+lib/python2.3/encodings/__init__.py
+lib/python2.3/encodings/__init__.pyc
+lib/python2.3/encodings/__init__.pyo
+lib/python2.3/encodings/aliases.py
+lib/python2.3/encodings/aliases.pyc
+lib/python2.3/encodings/aliases.pyo
+lib/python2.3/encodings/ascii.py
+lib/python2.3/encodings/ascii.pyc
+lib/python2.3/encodings/ascii.pyo
+lib/python2.3/encodings/base64_codec.py
+lib/python2.3/encodings/base64_codec.pyc
+lib/python2.3/encodings/base64_codec.pyo
+lib/python2.3/encodings/charmap.py
+lib/python2.3/encodings/charmap.pyc
+lib/python2.3/encodings/charmap.pyo
+lib/python2.3/encodings/cp037.py
+lib/python2.3/encodings/cp037.pyc
+lib/python2.3/encodings/cp037.pyo
+lib/python2.3/encodings/cp1006.py
+lib/python2.3/encodings/cp1006.pyc
+lib/python2.3/encodings/cp1006.pyo
+lib/python2.3/encodings/cp1026.py
+lib/python2.3/encodings/cp1026.pyc
+lib/python2.3/encodings/cp1026.pyo
+lib/python2.3/encodings/cp1140.py
+lib/python2.3/encodings/cp1140.pyc
+lib/python2.3/encodings/cp1140.pyo
+lib/python2.3/encodings/cp1250.py
+lib/python2.3/encodings/cp1250.pyc
+lib/python2.3/encodings/cp1250.pyo
+lib/python2.3/encodings/cp1251.py
+lib/python2.3/encodings/cp1251.pyc
+lib/python2.3/encodings/cp1251.pyo
+lib/python2.3/encodings/cp1252.py
+lib/python2.3/encodings/cp1252.pyc
+lib/python2.3/encodings/cp1252.pyo
+lib/python2.3/encodings/cp1253.py
+lib/python2.3/encodings/cp1253.pyc
+lib/python2.3/encodings/cp1253.pyo
+lib/python2.3/encodings/cp1254.py
+lib/python2.3/encodings/cp1254.pyc
+lib/python2.3/encodings/cp1254.pyo
+lib/python2.3/encodings/cp1255.py
+lib/python2.3/encodings/cp1255.pyc
+lib/python2.3/encodings/cp1255.pyo
+lib/python2.3/encodings/cp1256.py
+lib/python2.3/encodings/cp1256.pyc
+lib/python2.3/encodings/cp1256.pyo
+lib/python2.3/encodings/cp1257.py
+lib/python2.3/encodings/cp1257.pyc
+lib/python2.3/encodings/cp1257.pyo
+lib/python2.3/encodings/cp1258.py
+lib/python2.3/encodings/cp1258.pyc
+lib/python2.3/encodings/cp1258.pyo
+lib/python2.3/encodings/cp424.py
+lib/python2.3/encodings/cp424.pyc
+lib/python2.3/encodings/cp424.pyo
+lib/python2.3/encodings/cp437.py
+lib/python2.3/encodings/cp437.pyc
+lib/python2.3/encodings/cp437.pyo
+lib/python2.3/encodings/cp500.py
+lib/python2.3/encodings/cp500.pyc
+lib/python2.3/encodings/cp500.pyo
+lib/python2.3/encodings/cp737.py
+lib/python2.3/encodings/cp737.pyc
+lib/python2.3/encodings/cp737.pyo
+lib/python2.3/encodings/cp775.py
+lib/python2.3/encodings/cp775.pyc
+lib/python2.3/encodings/cp775.pyo
+lib/python2.3/encodings/cp850.py
+lib/python2.3/encodings/cp850.pyc
+lib/python2.3/encodings/cp850.pyo
+lib/python2.3/encodings/cp852.py
+lib/python2.3/encodings/cp852.pyc
+lib/python2.3/encodings/cp852.pyo
+lib/python2.3/encodings/cp855.py
+lib/python2.3/encodings/cp855.pyc
+lib/python2.3/encodings/cp855.pyo
+lib/python2.3/encodings/cp856.py
+lib/python2.3/encodings/cp856.pyc
+lib/python2.3/encodings/cp856.pyo
+lib/python2.3/encodings/cp857.py
+lib/python2.3/encodings/cp857.pyc
+lib/python2.3/encodings/cp857.pyo
+lib/python2.3/encodings/cp860.py
+lib/python2.3/encodings/cp860.pyc
+lib/python2.3/encodings/cp860.pyo
+lib/python2.3/encodings/cp861.py
+lib/python2.3/encodings/cp861.pyc
+lib/python2.3/encodings/cp861.pyo
+lib/python2.3/encodings/cp862.py
+lib/python2.3/encodings/cp862.pyc
+lib/python2.3/encodings/cp862.pyo
+lib/python2.3/encodings/cp863.py
+lib/python2.3/encodings/cp863.pyc
+lib/python2.3/encodings/cp863.pyo
+lib/python2.3/encodings/cp864.py
+lib/python2.3/encodings/cp864.pyc
+lib/python2.3/encodings/cp864.pyo
+lib/python2.3/encodings/cp865.py
+lib/python2.3/encodings/cp865.pyc
+lib/python2.3/encodings/cp865.pyo
+lib/python2.3/encodings/cp866.py
+lib/python2.3/encodings/cp866.pyc
+lib/python2.3/encodings/cp866.pyo
+lib/python2.3/encodings/cp869.py
+lib/python2.3/encodings/cp869.pyc
+lib/python2.3/encodings/cp869.pyo
+lib/python2.3/encodings/cp874.py
+lib/python2.3/encodings/cp874.pyc
+lib/python2.3/encodings/cp874.pyo
+lib/python2.3/encodings/cp875.py
+lib/python2.3/encodings/cp875.pyc
+lib/python2.3/encodings/cp875.pyo
+lib/python2.3/encodings/hex_codec.py
+lib/python2.3/encodings/hex_codec.pyc
+lib/python2.3/encodings/hex_codec.pyo
+lib/python2.3/encodings/idna.py
+lib/python2.3/encodings/idna.pyc
+lib/python2.3/encodings/idna.pyo
+lib/python2.3/encodings/iso8859_1.py
+lib/python2.3/encodings/iso8859_1.pyc
+lib/python2.3/encodings/iso8859_1.pyo
+lib/python2.3/encodings/iso8859_10.py
+lib/python2.3/encodings/iso8859_10.pyc
+lib/python2.3/encodings/iso8859_10.pyo
+lib/python2.3/encodings/iso8859_13.py
+lib/python2.3/encodings/iso8859_13.pyc
+lib/python2.3/encodings/iso8859_13.pyo
+lib/python2.3/encodings/iso8859_14.py
+lib/python2.3/encodings/iso8859_14.pyc
+lib/python2.3/encodings/iso8859_14.pyo
+lib/python2.3/encodings/iso8859_15.py
+lib/python2.3/encodings/iso8859_15.pyc
+lib/python2.3/encodings/iso8859_15.pyo
+lib/python2.3/encodings/iso8859_2.py
+lib/python2.3/encodings/iso8859_2.pyc
+lib/python2.3/encodings/iso8859_2.pyo
+lib/python2.3/encodings/iso8859_3.py
+lib/python2.3/encodings/iso8859_3.pyc
+lib/python2.3/encodings/iso8859_3.pyo
+lib/python2.3/encodings/iso8859_4.py
+lib/python2.3/encodings/iso8859_4.pyc
+lib/python2.3/encodings/iso8859_4.pyo
+lib/python2.3/encodings/iso8859_5.py
+lib/python2.3/encodings/iso8859_5.pyc
+lib/python2.3/encodings/iso8859_5.pyo
+lib/python2.3/encodings/iso8859_6.py
+lib/python2.3/encodings/iso8859_6.pyc
+lib/python2.3/encodings/iso8859_6.pyo
+lib/python2.3/encodings/iso8859_7.py
+lib/python2.3/encodings/iso8859_7.pyc
+lib/python2.3/encodings/iso8859_7.pyo
+lib/python2.3/encodings/iso8859_8.py
+lib/python2.3/encodings/iso8859_8.pyc
+lib/python2.3/encodings/iso8859_8.pyo
+lib/python2.3/encodings/iso8859_9.py
+lib/python2.3/encodings/iso8859_9.pyc
+lib/python2.3/encodings/iso8859_9.pyo
+lib/python2.3/encodings/koi8_r.py
+lib/python2.3/encodings/koi8_r.pyc
+lib/python2.3/encodings/koi8_r.pyo
+lib/python2.3/encodings/koi8_u.py
+lib/python2.3/encodings/koi8_u.pyc
+lib/python2.3/encodings/koi8_u.pyo
+lib/python2.3/encodings/latin_1.py
+lib/python2.3/encodings/latin_1.pyc
+lib/python2.3/encodings/latin_1.pyo
+lib/python2.3/encodings/mac_cyrillic.py
+lib/python2.3/encodings/mac_cyrillic.pyc
+lib/python2.3/encodings/mac_cyrillic.pyo
+lib/python2.3/encodings/mac_greek.py
+lib/python2.3/encodings/mac_greek.pyc
+lib/python2.3/encodings/mac_greek.pyo
+lib/python2.3/encodings/mac_iceland.py
+lib/python2.3/encodings/mac_iceland.pyc
+lib/python2.3/encodings/mac_iceland.pyo
+lib/python2.3/encodings/mac_latin2.py
+lib/python2.3/encodings/mac_latin2.pyc
+lib/python2.3/encodings/mac_latin2.pyo
+lib/python2.3/encodings/mac_roman.py
+lib/python2.3/encodings/mac_roman.pyc
+lib/python2.3/encodings/mac_roman.pyo
+lib/python2.3/encodings/mac_turkish.py
+lib/python2.3/encodings/mac_turkish.pyc
+lib/python2.3/encodings/mac_turkish.pyo
+lib/python2.3/encodings/mbcs.py
+lib/python2.3/encodings/mbcs.pyc
+lib/python2.3/encodings/mbcs.pyo
+lib/python2.3/encodings/palmos.py
+lib/python2.3/encodings/palmos.pyc
+lib/python2.3/encodings/palmos.pyo
+lib/python2.3/encodings/punycode.py
+lib/python2.3/encodings/punycode.pyc
+lib/python2.3/encodings/punycode.pyo
+lib/python2.3/encodings/quopri_codec.py
+lib/python2.3/encodings/quopri_codec.pyc
+lib/python2.3/encodings/quopri_codec.pyo
+lib/python2.3/encodings/raw_unicode_escape.py
+lib/python2.3/encodings/raw_unicode_escape.pyc
+lib/python2.3/encodings/raw_unicode_escape.pyo
+lib/python2.3/encodings/rot_13.py
+lib/python2.3/encodings/rot_13.pyc
+lib/python2.3/encodings/rot_13.pyo
+lib/python2.3/encodings/string_escape.py
+lib/python2.3/encodings/string_escape.pyc
+lib/python2.3/encodings/string_escape.pyo
+lib/python2.3/encodings/undefined.py
+lib/python2.3/encodings/undefined.pyc
+lib/python2.3/encodings/undefined.pyo
+lib/python2.3/encodings/unicode_escape.py
+lib/python2.3/encodings/unicode_escape.pyc
+lib/python2.3/encodings/unicode_escape.pyo
+lib/python2.3/encodings/unicode_internal.py
+lib/python2.3/encodings/unicode_internal.pyc
+lib/python2.3/encodings/unicode_internal.pyo
+lib/python2.3/encodings/utf_16.py
+lib/python2.3/encodings/utf_16.pyc
+lib/python2.3/encodings/utf_16.pyo
+lib/python2.3/encodings/utf_16_be.py
+lib/python2.3/encodings/utf_16_be.pyc
+lib/python2.3/encodings/utf_16_be.pyo
+lib/python2.3/encodings/utf_16_le.py
+lib/python2.3/encodings/utf_16_le.pyc
+lib/python2.3/encodings/utf_16_le.pyo
+lib/python2.3/encodings/utf_7.py
+lib/python2.3/encodings/utf_7.pyc
+lib/python2.3/encodings/utf_7.pyo
+lib/python2.3/encodings/utf_8.py
+lib/python2.3/encodings/utf_8.pyc
+lib/python2.3/encodings/utf_8.pyo
+lib/python2.3/encodings/uu_codec.py
+lib/python2.3/encodings/uu_codec.pyc
+lib/python2.3/encodings/uu_codec.pyo
+lib/python2.3/encodings/zlib_codec.py
+lib/python2.3/encodings/zlib_codec.pyc
+lib/python2.3/encodings/zlib_codec.pyo
+lib/python2.3/filecmp.py
+lib/python2.3/filecmp.pyc
+lib/python2.3/filecmp.pyo
+lib/python2.3/fileinput.py
+lib/python2.3/fileinput.pyc
+lib/python2.3/fileinput.pyo
+lib/python2.3/fnmatch.py
+lib/python2.3/fnmatch.pyc
+lib/python2.3/fnmatch.pyo
+lib/python2.3/formatter.py
+lib/python2.3/formatter.pyc
+lib/python2.3/formatter.pyo
+lib/python2.3/fpformat.py
+lib/python2.3/fpformat.pyc
+lib/python2.3/fpformat.pyo
+lib/python2.3/ftplib.py
+lib/python2.3/ftplib.pyc
+lib/python2.3/ftplib.pyo
+lib/python2.3/getopt.py
+lib/python2.3/getopt.pyc
+lib/python2.3/getopt.pyo
+lib/python2.3/getpass.py
+lib/python2.3/getpass.pyc
+lib/python2.3/getpass.pyo
+lib/python2.3/gettext.py
+lib/python2.3/gettext.pyc
+lib/python2.3/gettext.pyo
+lib/python2.3/glob.py
+lib/python2.3/glob.pyc
+lib/python2.3/glob.pyo
+lib/python2.3/gopherlib.py
+lib/python2.3/gopherlib.pyc
+lib/python2.3/gopherlib.pyo
+lib/python2.3/gzip.py
+lib/python2.3/gzip.pyc
+lib/python2.3/gzip.pyo
+lib/python2.3/heapq.py
+lib/python2.3/heapq.pyc
+lib/python2.3/heapq.pyo
+lib/python2.3/hmac.py
+lib/python2.3/hmac.pyc
+lib/python2.3/hmac.pyo
+lib/python2.3/hotshot/__init__.py
+lib/python2.3/hotshot/__init__.pyc
+lib/python2.3/hotshot/__init__.pyo
+lib/python2.3/hotshot/log.py
+lib/python2.3/hotshot/log.pyc
+lib/python2.3/hotshot/log.pyo
+lib/python2.3/hotshot/stats.py
+lib/python2.3/hotshot/stats.pyc
+lib/python2.3/hotshot/stats.pyo
+lib/python2.3/hotshot/stones.py
+lib/python2.3/hotshot/stones.pyc
+lib/python2.3/hotshot/stones.pyo
+lib/python2.3/htmlentitydefs.py
+lib/python2.3/htmlentitydefs.pyc
+lib/python2.3/htmlentitydefs.pyo
+lib/python2.3/htmllib.py
+lib/python2.3/htmllib.pyc
+lib/python2.3/htmllib.pyo
+lib/python2.3/httplib.py
+lib/python2.3/httplib.pyc
+lib/python2.3/httplib.pyo
+lib/python2.3/ihooks.py
+lib/python2.3/ihooks.pyc
+lib/python2.3/ihooks.pyo
+lib/python2.3/imaplib.py
+lib/python2.3/imaplib.pyc
+lib/python2.3/imaplib.pyo
+lib/python2.3/imghdr.py
+lib/python2.3/imghdr.pyc
+lib/python2.3/imghdr.pyo
+lib/python2.3/imputil.py
+lib/python2.3/imputil.pyc
+lib/python2.3/imputil.pyo
+lib/python2.3/inspect.py
+lib/python2.3/inspect.pyc
+lib/python2.3/inspect.pyo
+lib/python2.3/keyword.py
+lib/python2.3/keyword.pyc
+lib/python2.3/keyword.pyo
+lib/python2.3/lib-old/Para.py
+lib/python2.3/lib-old/Para.pyc
+lib/python2.3/lib-old/Para.pyo
+lib/python2.3/lib-old/addpack.py
+lib/python2.3/lib-old/addpack.pyc
+lib/python2.3/lib-old/addpack.pyo
+lib/python2.3/lib-old/cmp.py
+lib/python2.3/lib-old/cmp.pyc
+lib/python2.3/lib-old/cmp.pyo
+lib/python2.3/lib-old/cmpcache.py
+lib/python2.3/lib-old/cmpcache.pyc
+lib/python2.3/lib-old/cmpcache.pyo
+lib/python2.3/lib-old/codehack.py
+lib/python2.3/lib-old/codehack.pyc
+lib/python2.3/lib-old/codehack.pyo
+lib/python2.3/lib-old/dircmp.py
+lib/python2.3/lib-old/dircmp.pyc
+lib/python2.3/lib-old/dircmp.pyo
+lib/python2.3/lib-old/dump.py
+lib/python2.3/lib-old/dump.pyc
+lib/python2.3/lib-old/dump.pyo
+lib/python2.3/lib-old/find.py
+lib/python2.3/lib-old/find.pyc
+lib/python2.3/lib-old/find.pyo
+lib/python2.3/lib-old/fmt.py
+lib/python2.3/lib-old/fmt.pyc
+lib/python2.3/lib-old/fmt.pyo
+lib/python2.3/lib-old/grep.py
+lib/python2.3/lib-old/grep.pyc
+lib/python2.3/lib-old/grep.pyo
+lib/python2.3/lib-old/lockfile.py
+lib/python2.3/lib-old/lockfile.pyc
+lib/python2.3/lib-old/lockfile.pyo
+lib/python2.3/lib-old/newdir.py
+lib/python2.3/lib-old/newdir.pyc
+lib/python2.3/lib-old/newdir.pyo
+lib/python2.3/lib-old/ni.py
+lib/python2.3/lib-old/ni.pyc
+lib/python2.3/lib-old/ni.pyo
+lib/python2.3/lib-old/packmail.py
+lib/python2.3/lib-old/packmail.pyc
+lib/python2.3/lib-old/packmail.pyo
+lib/python2.3/lib-old/poly.py
+lib/python2.3/lib-old/poly.pyc
+lib/python2.3/lib-old/poly.pyo
+lib/python2.3/lib-old/rand.py
+lib/python2.3/lib-old/rand.pyc
+lib/python2.3/lib-old/rand.pyo
+lib/python2.3/lib-old/tb.py
+lib/python2.3/lib-old/tb.pyc
+lib/python2.3/lib-old/tb.pyo
+lib/python2.3/lib-old/util.py
+lib/python2.3/lib-old/util.pyc
+lib/python2.3/lib-old/util.pyo
+lib/python2.3/lib-old/whatsound.py
+lib/python2.3/lib-old/whatsound.pyc
+lib/python2.3/lib-old/whatsound.pyo
+lib/python2.3/lib-old/zmod.py
+lib/python2.3/lib-old/zmod.pyc
+lib/python2.3/lib-old/zmod.pyo
+lib/python2.3/linecache.py
+lib/python2.3/linecache.pyc
+lib/python2.3/linecache.pyo
+lib/python2.3/locale.py
+lib/python2.3/locale.pyc
+lib/python2.3/locale.pyo
+lib/python2.3/logging/__init__.py
+lib/python2.3/logging/__init__.pyc
+lib/python2.3/logging/__init__.pyo
+lib/python2.3/logging/config.py
+lib/python2.3/logging/config.pyc
+lib/python2.3/logging/config.pyo
+lib/python2.3/logging/handlers.py
+lib/python2.3/logging/handlers.pyc
+lib/python2.3/logging/handlers.pyo
+lib/python2.3/macpath.py
+lib/python2.3/macpath.pyc
+lib/python2.3/macpath.pyo
+lib/python2.3/macurl2path.py
+lib/python2.3/macurl2path.pyc
+lib/python2.3/macurl2path.pyo
+lib/python2.3/mailbox.py
+lib/python2.3/mailbox.pyc
+lib/python2.3/mailbox.pyo
+lib/python2.3/mailcap.py
+lib/python2.3/mailcap.pyc
+lib/python2.3/mailcap.pyo
+lib/python2.3/markupbase.py
+lib/python2.3/markupbase.pyc
+lib/python2.3/markupbase.pyo
+lib/python2.3/mhlib.py
+lib/python2.3/mhlib.pyc
+lib/python2.3/mhlib.pyo
+lib/python2.3/mimetools.py
+lib/python2.3/mimetools.pyc
+lib/python2.3/mimetools.pyo
+lib/python2.3/mimetypes.py
+lib/python2.3/mimetypes.pyc
+lib/python2.3/mimetypes.pyo
+lib/python2.3/mimify.py
+lib/python2.3/mimify.pyc
+lib/python2.3/mimify.pyo
+lib/python2.3/modulefinder.py
+lib/python2.3/modulefinder.pyc
+lib/python2.3/modulefinder.pyo
+lib/python2.3/multifile.py
+lib/python2.3/multifile.pyc
+lib/python2.3/multifile.pyo
+lib/python2.3/mutex.py
+lib/python2.3/mutex.pyc
+lib/python2.3/mutex.pyo
+lib/python2.3/netrc.py
+lib/python2.3/netrc.pyc
+lib/python2.3/netrc.pyo
+lib/python2.3/new.py
+lib/python2.3/new.pyc
+lib/python2.3/new.pyo
+lib/python2.3/nntplib.py
+lib/python2.3/nntplib.pyc
+lib/python2.3/nntplib.pyo
+lib/python2.3/ntpath.py
+lib/python2.3/ntpath.pyc
+lib/python2.3/ntpath.pyo
+lib/python2.3/nturl2path.py
+lib/python2.3/nturl2path.pyc
+lib/python2.3/nturl2path.pyo
+lib/python2.3/opcode.py
+lib/python2.3/opcode.pyc
+lib/python2.3/opcode.pyo
+lib/python2.3/optparse.py
+lib/python2.3/optparse.pyc
+lib/python2.3/optparse.pyo
+lib/python2.3/os.py
+lib/python2.3/os.pyc
+lib/python2.3/os.pyo
+lib/python2.3/os2emxpath.py
+lib/python2.3/os2emxpath.pyc
+lib/python2.3/os2emxpath.pyo
+lib/python2.3/pdb.doc
+lib/python2.3/pdb.py
+lib/python2.3/pdb.pyc
+lib/python2.3/pdb.pyo
+lib/python2.3/pickle.py
+lib/python2.3/pickle.pyc
+lib/python2.3/pickle.pyo
+lib/python2.3/pickletools.py
+lib/python2.3/pickletools.pyc
+lib/python2.3/pickletools.pyo
+lib/python2.3/pipes.py
+lib/python2.3/pipes.pyc
+lib/python2.3/pipes.pyo
+lib/python2.3/pkgutil.py
+lib/python2.3/pkgutil.pyc
+lib/python2.3/pkgutil.pyo
+lib/python2.3/plat-openbsd3/IN.py
+lib/python2.3/plat-openbsd3/IN.pyc
+lib/python2.3/plat-openbsd3/IN.pyo
+lib/python2.3/plat-openbsd3/regen
+lib/python2.3/platform.py
+lib/python2.3/platform.pyc
+lib/python2.3/platform.pyo
+lib/python2.3/popen2.py
+lib/python2.3/popen2.pyc
+lib/python2.3/popen2.pyo
+lib/python2.3/poplib.py
+lib/python2.3/poplib.pyc
+lib/python2.3/poplib.pyo
+lib/python2.3/posixfile.py
+lib/python2.3/posixfile.pyc
+lib/python2.3/posixfile.pyo
+lib/python2.3/posixpath.py
+lib/python2.3/posixpath.pyc
+lib/python2.3/posixpath.pyo
+lib/python2.3/pprint.py
+lib/python2.3/pprint.pyc
+lib/python2.3/pprint.pyo
+lib/python2.3/pre.py
+lib/python2.3/pre.pyc
+lib/python2.3/pre.pyo
+lib/python2.3/profile.doc
+lib/python2.3/profile.py
+lib/python2.3/profile.pyc
+lib/python2.3/profile.pyo
+lib/python2.3/pstats.py
+lib/python2.3/pstats.pyc
+lib/python2.3/pstats.pyo
+lib/python2.3/pty.py
+lib/python2.3/pty.pyc
+lib/python2.3/pty.pyo
+lib/python2.3/py_compile.py
+lib/python2.3/py_compile.pyc
+lib/python2.3/py_compile.pyo
+lib/python2.3/pyclbr.py
+lib/python2.3/pyclbr.pyc
+lib/python2.3/pyclbr.pyo
+lib/python2.3/pydoc.py
+lib/python2.3/pydoc.pyc
+lib/python2.3/pydoc.pyo
+lib/python2.3/quopri.py
+lib/python2.3/quopri.pyc
+lib/python2.3/quopri.pyo
+lib/python2.3/random.py
+lib/python2.3/random.pyc
+lib/python2.3/random.pyo
+lib/python2.3/re.py
+lib/python2.3/re.pyc
+lib/python2.3/re.pyo
+lib/python2.3/reconvert.py
+lib/python2.3/reconvert.pyc
+lib/python2.3/reconvert.pyo
+lib/python2.3/regex_syntax.py
+lib/python2.3/regex_syntax.pyc
+lib/python2.3/regex_syntax.pyo
+lib/python2.3/regsub.py
+lib/python2.3/regsub.pyc
+lib/python2.3/regsub.pyo
+lib/python2.3/repr.py
+lib/python2.3/repr.pyc
+lib/python2.3/repr.pyo
+lib/python2.3/rexec.py
+lib/python2.3/rexec.pyc
+lib/python2.3/rexec.pyo
+lib/python2.3/rfc822.py
+lib/python2.3/rfc822.pyc
+lib/python2.3/rfc822.pyo
+lib/python2.3/rlcompleter.py
+lib/python2.3/rlcompleter.pyc
+lib/python2.3/rlcompleter.pyo
+lib/python2.3/robotparser.py
+lib/python2.3/robotparser.pyc
+lib/python2.3/robotparser.pyo
+lib/python2.3/sched.py
+lib/python2.3/sched.pyc
+lib/python2.3/sched.pyo
+lib/python2.3/sets.py
+lib/python2.3/sets.pyc
+lib/python2.3/sets.pyo
+lib/python2.3/sgmllib.py
+lib/python2.3/sgmllib.pyc
+lib/python2.3/sgmllib.pyo
+lib/python2.3/shelve.py
+lib/python2.3/shelve.pyc
+lib/python2.3/shelve.pyo
+lib/python2.3/shlex.py
+lib/python2.3/shlex.pyc
+lib/python2.3/shlex.pyo
+lib/python2.3/shutil.py
+lib/python2.3/shutil.pyc
+lib/python2.3/shutil.pyo
+lib/python2.3/site-packages/README
+lib/python2.3/site.py
+lib/python2.3/site.pyc
+lib/python2.3/site.pyo
+lib/python2.3/smtpd.py
+lib/python2.3/smtpd.pyc
+lib/python2.3/smtpd.pyo
+lib/python2.3/smtplib.py
+lib/python2.3/smtplib.pyc
+lib/python2.3/smtplib.pyo
+lib/python2.3/sndhdr.py
+lib/python2.3/sndhdr.pyc
+lib/python2.3/sndhdr.pyo
+lib/python2.3/socket.py
+lib/python2.3/socket.pyc
+lib/python2.3/socket.pyo
+lib/python2.3/sre.py
+lib/python2.3/sre.pyc
+lib/python2.3/sre.pyo
+lib/python2.3/sre_compile.py
+lib/python2.3/sre_compile.pyc
+lib/python2.3/sre_compile.pyo
+lib/python2.3/sre_constants.py
+lib/python2.3/sre_constants.pyc
+lib/python2.3/sre_constants.pyo
+lib/python2.3/sre_parse.py
+lib/python2.3/sre_parse.pyc
+lib/python2.3/sre_parse.pyo
+lib/python2.3/stat.py
+lib/python2.3/stat.pyc
+lib/python2.3/stat.pyo
+lib/python2.3/statcache.py
+lib/python2.3/statcache.pyc
+lib/python2.3/statcache.pyo
+lib/python2.3/statvfs.py
+lib/python2.3/statvfs.pyc
+lib/python2.3/statvfs.pyo
+lib/python2.3/string.py
+lib/python2.3/string.pyc
+lib/python2.3/string.pyo
+lib/python2.3/stringold.py
+lib/python2.3/stringold.pyc
+lib/python2.3/stringold.pyo
+lib/python2.3/stringprep.py
+lib/python2.3/stringprep.pyc
+lib/python2.3/stringprep.pyo
+lib/python2.3/sunau.py
+lib/python2.3/sunau.pyc
+lib/python2.3/sunau.pyo
+lib/python2.3/sunaudio.py
+lib/python2.3/sunaudio.pyc
+lib/python2.3/sunaudio.pyo
+lib/python2.3/symbol.py
+lib/python2.3/symbol.pyc
+lib/python2.3/symbol.pyo
+lib/python2.3/symtable.py
+lib/python2.3/symtable.pyc
+lib/python2.3/symtable.pyo
+lib/python2.3/tabnanny.py
+lib/python2.3/tabnanny.pyc
+lib/python2.3/tabnanny.pyo
+lib/python2.3/tarfile.py
+lib/python2.3/tarfile.pyc
+lib/python2.3/tarfile.pyo
+lib/python2.3/telnetlib.py
+lib/python2.3/telnetlib.pyc
+lib/python2.3/telnetlib.pyo
+lib/python2.3/tempfile.py
+lib/python2.3/tempfile.pyc
+lib/python2.3/tempfile.pyo
+lib/python2.3/textwrap.py
+lib/python2.3/textwrap.pyc
+lib/python2.3/textwrap.pyo
+lib/python2.3/this.py
+lib/python2.3/this.pyc
+lib/python2.3/this.pyo
+lib/python2.3/threading.py
+lib/python2.3/threading.pyc
+lib/python2.3/threading.pyo
+lib/python2.3/timeit.py
+lib/python2.3/timeit.pyc
+lib/python2.3/timeit.pyo
+lib/python2.3/toaiff.py
+lib/python2.3/toaiff.pyc
+lib/python2.3/toaiff.pyo
+lib/python2.3/token.py
+lib/python2.3/token.pyc
+lib/python2.3/token.pyo
+lib/python2.3/tokenize.py
+lib/python2.3/tokenize.pyc
+lib/python2.3/tokenize.pyo
+lib/python2.3/trace.py
+lib/python2.3/trace.pyc
+lib/python2.3/trace.pyo
+lib/python2.3/traceback.py
+lib/python2.3/traceback.pyc
+lib/python2.3/traceback.pyo
+lib/python2.3/tty.py
+lib/python2.3/tty.pyc
+lib/python2.3/tty.pyo
+lib/python2.3/types.py
+lib/python2.3/types.pyc
+lib/python2.3/types.pyo
+lib/python2.3/tzparse.py
+lib/python2.3/tzparse.pyc
+lib/python2.3/tzparse.pyo
+lib/python2.3/unittest.py
+lib/python2.3/unittest.pyc
+lib/python2.3/unittest.pyo
+lib/python2.3/urllib.py
+lib/python2.3/urllib.pyc
+lib/python2.3/urllib.pyo
+lib/python2.3/urllib2.py
+lib/python2.3/urllib2.pyc
+lib/python2.3/urllib2.pyo
+lib/python2.3/urlparse.py
+lib/python2.3/urlparse.pyc
+lib/python2.3/urlparse.pyo
+lib/python2.3/user.py
+lib/python2.3/user.pyc
+lib/python2.3/user.pyo
+lib/python2.3/uu.py
+lib/python2.3/uu.pyc
+lib/python2.3/uu.pyo
+lib/python2.3/warnings.py
+lib/python2.3/warnings.pyc
+lib/python2.3/warnings.pyo
+lib/python2.3/wave.py
+lib/python2.3/wave.pyc
+lib/python2.3/wave.pyo
+lib/python2.3/weakref.py
+lib/python2.3/weakref.pyc
+lib/python2.3/weakref.pyo
+lib/python2.3/webbrowser.py
+lib/python2.3/webbrowser.pyc
+lib/python2.3/webbrowser.pyo
+lib/python2.3/whichdb.py
+lib/python2.3/whichdb.pyc
+lib/python2.3/whichdb.pyo
+lib/python2.3/whrandom.py
+lib/python2.3/whrandom.pyc
+lib/python2.3/whrandom.pyo
+lib/python2.3/xdrlib.py
+lib/python2.3/xdrlib.pyc
+lib/python2.3/xdrlib.pyo
+lib/python2.3/xml/__init__.py
+lib/python2.3/xml/__init__.pyc
+lib/python2.3/xml/__init__.pyo
+lib/python2.3/xml/dom/NodeFilter.py
+lib/python2.3/xml/dom/NodeFilter.pyc
+lib/python2.3/xml/dom/NodeFilter.pyo
+lib/python2.3/xml/dom/__init__.py
+lib/python2.3/xml/dom/__init__.pyc
+lib/python2.3/xml/dom/__init__.pyo
+lib/python2.3/xml/dom/domreg.py
+lib/python2.3/xml/dom/domreg.pyc
+lib/python2.3/xml/dom/domreg.pyo
+lib/python2.3/xml/dom/expatbuilder.py
+lib/python2.3/xml/dom/expatbuilder.pyc
+lib/python2.3/xml/dom/expatbuilder.pyo
+lib/python2.3/xml/dom/minicompat.py
+lib/python2.3/xml/dom/minicompat.pyc
+lib/python2.3/xml/dom/minicompat.pyo
+lib/python2.3/xml/dom/minidom.py
+lib/python2.3/xml/dom/minidom.pyc
+lib/python2.3/xml/dom/minidom.pyo
+lib/python2.3/xml/dom/pulldom.py
+lib/python2.3/xml/dom/pulldom.pyc
+lib/python2.3/xml/dom/pulldom.pyo
+lib/python2.3/xml/dom/xmlbuilder.py
+lib/python2.3/xml/dom/xmlbuilder.pyc
+lib/python2.3/xml/dom/xmlbuilder.pyo
+lib/python2.3/xml/parsers/__init__.py
+lib/python2.3/xml/parsers/__init__.pyc
+lib/python2.3/xml/parsers/__init__.pyo
+lib/python2.3/xml/parsers/expat.py
+lib/python2.3/xml/parsers/expat.pyc
+lib/python2.3/xml/parsers/expat.pyo
+lib/python2.3/xml/sax/__init__.py
+lib/python2.3/xml/sax/__init__.pyc
+lib/python2.3/xml/sax/__init__.pyo
+lib/python2.3/xml/sax/_exceptions.py
+lib/python2.3/xml/sax/_exceptions.pyc
+lib/python2.3/xml/sax/_exceptions.pyo
+lib/python2.3/xml/sax/expatreader.py
+lib/python2.3/xml/sax/expatreader.pyc
+lib/python2.3/xml/sax/expatreader.pyo
+lib/python2.3/xml/sax/handler.py
+lib/python2.3/xml/sax/handler.pyc
+lib/python2.3/xml/sax/handler.pyo
+lib/python2.3/xml/sax/saxutils.py
+lib/python2.3/xml/sax/saxutils.pyc
+lib/python2.3/xml/sax/saxutils.pyo
+lib/python2.3/xml/sax/xmlreader.py
+lib/python2.3/xml/sax/xmlreader.pyc
+lib/python2.3/xml/sax/xmlreader.pyo
+lib/python2.3/xmllib.py
+lib/python2.3/xmllib.pyc
+lib/python2.3/xmllib.pyo
+lib/python2.3/xmlrpclib.py
+lib/python2.3/xmlrpclib.pyc
+lib/python2.3/xmlrpclib.pyo
+lib/python2.3/zipfile.py
+lib/python2.3/zipfile.pyc
+lib/python2.3/zipfile.pyo
+man/man1/python2.3.1
+share/doc/python2.3/CHANGES.OpenBSD
+%%SHARED%%
+@dirrm share/doc/python2.3
+@dirrm lib/python2.3/xml/sax
+@dirrm lib/python2.3/xml/parsers
+@dirrm lib/python2.3/xml/dom
+@dirrm lib/python2.3/xml
+@dirrm lib/python2.3/site-packages
+@dirrm lib/python2.3/plat-openbsd3
+@dirrm lib/python2.3/logging
+@dirrm lib/python2.3/lib-old
+@dirrm lib/python2.3/hotshot
+@dirrm lib/python2.3/encodings
+@dirrm lib/python2.3/email/test/data
+@dirrm lib/python2.3/email/test
+@dirrm lib/python2.3/email
+@dirrm lib/python2.3/distutils/command
+@dirrm lib/python2.3/distutils
+@dirrm lib/python2.3/curses
+@dirrm lib/python2.3/config
+@dirrm lib/python2.3/compiler
+@dirrm lib/python2.3/bsddb/test
+@dirrm lib/python2.3/bsddb
+@dirrm lib/python2.3
+@dirrm include/python2.3
diff python.orig/2.3/pkg/PLIST-bsddb python/2.3/pkg/PLIST-bsddb
--- python.orig/2.3/pkg/PLIST-bsddb	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-bsddb	Fri Jun 20 18:47:00 2003
@@ -0,0 +1,4 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-bsddb-2.3*
+lib/python2.3/lib-dynload/_bsddb.so
diff python.orig/2.3/pkg/PLIST-bzip2 python/2.3/pkg/PLIST-bzip2
--- python.orig/2.3/pkg/PLIST-bzip2	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-bzip2	Fri Jun 20 23:11:42 2003
@@ -0,0 +1,4 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-bzip2-2.3*
+lib/python2.3/lib-dynload/bz2module.so
diff python.orig/2.3/pkg/PLIST-expat python/2.3/pkg/PLIST-expat
--- python.orig/2.3/pkg/PLIST-expat	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-expat	Fri Jun 20 18:47:21 2003
@@ -0,0 +1,4 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-expat-2.3*
+lib/python2.3/lib-dynload/pyexpat.so
diff python.orig/2.3/pkg/PLIST-gdbm python/2.3/pkg/PLIST-gdbm
--- python.orig/2.3/pkg/PLIST-gdbm	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-gdbm	Fri Jun 20 18:47:32 2003
@@ -0,0 +1,5 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-gdbm-2.3*
+lib/python2.3/lib-dynload/gdbm.so
+lib/python2.3/lib-dynload/gdbmmodule.so
diff python.orig/2.3/pkg/PLIST-idle python/2.3/pkg/PLIST-idle
--- python.orig/2.3/pkg/PLIST-idle	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-idle	Mon Aug 11 20:23:17 2003
@@ -0,0 +1,187 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-idle-2.3*
+bin/idle2.3
+lib/python2.3/idlelib/AutoExpand.py
+lib/python2.3/idlelib/AutoExpand.pyc
+lib/python2.3/idlelib/AutoExpand.pyo
+lib/python2.3/idlelib/Bindings.py
+lib/python2.3/idlelib/Bindings.pyc
+lib/python2.3/idlelib/Bindings.pyo
+lib/python2.3/idlelib/CREDITS.txt
+lib/python2.3/idlelib/CallTipWindow.py
+lib/python2.3/idlelib/CallTipWindow.pyc
+lib/python2.3/idlelib/CallTipWindow.pyo
+lib/python2.3/idlelib/CallTips.py
+lib/python2.3/idlelib/CallTips.pyc
+lib/python2.3/idlelib/CallTips.pyo
+lib/python2.3/idlelib/ChangeLog
+lib/python2.3/idlelib/ClassBrowser.py
+lib/python2.3/idlelib/ClassBrowser.pyc
+lib/python2.3/idlelib/ClassBrowser.pyo
+lib/python2.3/idlelib/ColorDelegator.py
+lib/python2.3/idlelib/ColorDelegator.pyc
+lib/python2.3/idlelib/ColorDelegator.pyo
+lib/python2.3/idlelib/Debugger.py
+lib/python2.3/idlelib/Debugger.pyc
+lib/python2.3/idlelib/Debugger.pyo
+lib/python2.3/idlelib/Delegator.py
+lib/python2.3/idlelib/Delegator.pyc
+lib/python2.3/idlelib/Delegator.pyo
+lib/python2.3/idlelib/EditorWindow.py
+lib/python2.3/idlelib/EditorWindow.pyc
+lib/python2.3/idlelib/EditorWindow.pyo
+lib/python2.3/idlelib/FileList.py
+lib/python2.3/idlelib/FileList.pyc
+lib/python2.3/idlelib/FileList.pyo
+lib/python2.3/idlelib/FormatParagraph.py
+lib/python2.3/idlelib/FormatParagraph.pyc
+lib/python2.3/idlelib/FormatParagraph.pyo
+lib/python2.3/idlelib/GrepDialog.py
+lib/python2.3/idlelib/GrepDialog.pyc
+lib/python2.3/idlelib/GrepDialog.pyo
+lib/python2.3/idlelib/HISTORY.txt
+lib/python2.3/idlelib/IOBinding.py
+lib/python2.3/idlelib/IOBinding.pyc
+lib/python2.3/idlelib/IOBinding.pyo
+lib/python2.3/idlelib/Icons/folder.gif
+lib/python2.3/idlelib/Icons/idle.icns
+lib/python2.3/idlelib/Icons/minusnode.gif
+lib/python2.3/idlelib/Icons/openfolder.gif
+lib/python2.3/idlelib/Icons/plusnode.gif
+lib/python2.3/idlelib/Icons/python.gif
+lib/python2.3/idlelib/Icons/tk.gif
+lib/python2.3/idlelib/IdleHistory.py
+lib/python2.3/idlelib/IdleHistory.pyc
+lib/python2.3/idlelib/IdleHistory.pyo
+lib/python2.3/idlelib/MultiStatusBar.py
+lib/python2.3/idlelib/MultiStatusBar.pyc
+lib/python2.3/idlelib/MultiStatusBar.pyo
+lib/python2.3/idlelib/NEWS.txt
+lib/python2.3/idlelib/ObjectBrowser.py
+lib/python2.3/idlelib/ObjectBrowser.pyc
+lib/python2.3/idlelib/ObjectBrowser.pyo
+lib/python2.3/idlelib/OutputWindow.py
+lib/python2.3/idlelib/OutputWindow.pyc
+lib/python2.3/idlelib/OutputWindow.pyo
+lib/python2.3/idlelib/ParenMatch.py
+lib/python2.3/idlelib/ParenMatch.pyc
+lib/python2.3/idlelib/ParenMatch.pyo
+lib/python2.3/idlelib/PathBrowser.py
+lib/python2.3/idlelib/PathBrowser.pyc
+lib/python2.3/idlelib/PathBrowser.pyo
+lib/python2.3/idlelib/Percolator.py
+lib/python2.3/idlelib/Percolator.pyc
+lib/python2.3/idlelib/Percolator.pyo
+lib/python2.3/idlelib/PyParse.py
+lib/python2.3/idlelib/PyParse.pyc
+lib/python2.3/idlelib/PyParse.pyo
+lib/python2.3/idlelib/PyShell.py
+lib/python2.3/idlelib/PyShell.pyc
+lib/python2.3/idlelib/PyShell.pyo
+lib/python2.3/idlelib/README.txt
+lib/python2.3/idlelib/RemoteDebugger.py
+lib/python2.3/idlelib/RemoteDebugger.pyc
+lib/python2.3/idlelib/RemoteDebugger.pyo
+lib/python2.3/idlelib/RemoteObjectBrowser.py
+lib/python2.3/idlelib/RemoteObjectBrowser.pyc
+lib/python2.3/idlelib/RemoteObjectBrowser.pyo
+lib/python2.3/idlelib/ReplaceDialog.py
+lib/python2.3/idlelib/ReplaceDialog.pyc
+lib/python2.3/idlelib/ReplaceDialog.pyo
+lib/python2.3/idlelib/ScriptBinding.py
+lib/python2.3/idlelib/ScriptBinding.pyc
+lib/python2.3/idlelib/ScriptBinding.pyo
+lib/python2.3/idlelib/ScrolledList.py
+lib/python2.3/idlelib/ScrolledList.pyc
+lib/python2.3/idlelib/ScrolledList.pyo
+lib/python2.3/idlelib/SearchDialog.py
+lib/python2.3/idlelib/SearchDialog.pyc
+lib/python2.3/idlelib/SearchDialog.pyo
+lib/python2.3/idlelib/SearchDialogBase.py
+lib/python2.3/idlelib/SearchDialogBase.pyc
+lib/python2.3/idlelib/SearchDialogBase.pyo
+lib/python2.3/idlelib/SearchEngine.py
+lib/python2.3/idlelib/SearchEngine.pyc
+lib/python2.3/idlelib/SearchEngine.pyo
+lib/python2.3/idlelib/StackViewer.py
+lib/python2.3/idlelib/StackViewer.pyc
+lib/python2.3/idlelib/StackViewer.pyo
+lib/python2.3/idlelib/TODO.txt
+lib/python2.3/idlelib/ToolTip.py
+lib/python2.3/idlelib/ToolTip.pyc
+lib/python2.3/idlelib/ToolTip.pyo
+lib/python2.3/idlelib/TreeWidget.py
+lib/python2.3/idlelib/TreeWidget.pyc
+lib/python2.3/idlelib/TreeWidget.pyo
+lib/python2.3/idlelib/UndoDelegator.py
+lib/python2.3/idlelib/UndoDelegator.pyc
+lib/python2.3/idlelib/UndoDelegator.pyo
+lib/python2.3/idlelib/WidgetRedirector.py
+lib/python2.3/idlelib/WidgetRedirector.pyc
+lib/python2.3/idlelib/WidgetRedirector.pyo
+lib/python2.3/idlelib/WindowList.py
+lib/python2.3/idlelib/WindowList.pyc
+lib/python2.3/idlelib/WindowList.pyo
+lib/python2.3/idlelib/ZoomHeight.py
+lib/python2.3/idlelib/ZoomHeight.pyc
+lib/python2.3/idlelib/ZoomHeight.pyo
+lib/python2.3/idlelib/__init__.py
+lib/python2.3/idlelib/__init__.pyc
+lib/python2.3/idlelib/__init__.pyo
+lib/python2.3/idlelib/aboutDialog.py
+lib/python2.3/idlelib/aboutDialog.pyc
+lib/python2.3/idlelib/aboutDialog.pyo
+lib/python2.3/idlelib/buildapp.py
+lib/python2.3/idlelib/buildapp.pyc
+lib/python2.3/idlelib/buildapp.pyo
+lib/python2.3/idlelib/config-extensions.def
+lib/python2.3/idlelib/config-highlight.def
+lib/python2.3/idlelib/config-keys.def
+lib/python2.3/idlelib/config-main.def
+lib/python2.3/idlelib/configDialog.py
+lib/python2.3/idlelib/configDialog.pyc
+lib/python2.3/idlelib/configDialog.pyo
+lib/python2.3/idlelib/configHandler.py
+lib/python2.3/idlelib/configHandler.pyc
+lib/python2.3/idlelib/configHandler.pyo
+lib/python2.3/idlelib/configHelpSourceEdit.py
+lib/python2.3/idlelib/configHelpSourceEdit.pyc
+lib/python2.3/idlelib/configHelpSourceEdit.pyo
+lib/python2.3/idlelib/configSectionNameDialog.py
+lib/python2.3/idlelib/configSectionNameDialog.pyc
+lib/python2.3/idlelib/configSectionNameDialog.pyo
+lib/python2.3/idlelib/dynOptionMenuWidget.py
+lib/python2.3/idlelib/dynOptionMenuWidget.pyc
+lib/python2.3/idlelib/dynOptionMenuWidget.pyo
+lib/python2.3/idlelib/extend.txt
+lib/python2.3/idlelib/help.txt
+lib/python2.3/idlelib/idle
+lib/python2.3/idlelib/idle.bat
+lib/python2.3/idlelib/idle.py
+lib/python2.3/idlelib/idle.pyc
+lib/python2.3/idlelib/idle.pyo
+lib/python2.3/idlelib/idle.pyw
+lib/python2.3/idlelib/idlever.py
+lib/python2.3/idlelib/idlever.pyc
+lib/python2.3/idlelib/idlever.pyo
+lib/python2.3/idlelib/keybindingDialog.py
+lib/python2.3/idlelib/keybindingDialog.pyc
+lib/python2.3/idlelib/keybindingDialog.pyo
+lib/python2.3/idlelib/rpc.py
+lib/python2.3/idlelib/rpc.pyc
+lib/python2.3/idlelib/rpc.pyo
+lib/python2.3/idlelib/run.py
+lib/python2.3/idlelib/run.pyc
+lib/python2.3/idlelib/run.pyo
+lib/python2.3/idlelib/tabpage.py
+lib/python2.3/idlelib/tabpage.pyc
+lib/python2.3/idlelib/tabpage.pyo
+lib/python2.3/idlelib/testcode.py
+lib/python2.3/idlelib/testcode.pyc
+lib/python2.3/idlelib/testcode.pyo
+lib/python2.3/idlelib/textView.py
+lib/python2.3/idlelib/textView.pyc
+lib/python2.3/idlelib/textView.pyo
+@dirrm lib/python2.3/idlelib/Icons
+@dirrm lib/python2.3/idlelib
diff python.orig/2.3/pkg/PLIST-mpz python/2.3/pkg/PLIST-mpz
--- python.orig/2.3/pkg/PLIST-mpz	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-mpz	Fri Jun 20 18:47:48 2003
@@ -0,0 +1,5 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-mpz-2.3*
+lib/python2.3/lib-dynload/mpz.so
+lib/python2.3/lib-dynload/mpzmodule.so
diff python.orig/2.3/pkg/PLIST-tests python/2.3/pkg/PLIST-tests
--- python.orig/2.3/pkg/PLIST-tests	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-tests	Mon Aug 11 20:21:28 2003
@@ -0,0 +1,897 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-tests-2.3*
+lib/python2.3/test/185test.db
+lib/python2.3/test/README
+lib/python2.3/test/__init__.py
+lib/python2.3/test/__init__.pyc
+lib/python2.3/test/__init__.pyo
+lib/python2.3/test/audiotest.au
+lib/python2.3/test/autotest.py
+lib/python2.3/test/autotest.pyc
+lib/python2.3/test/autotest.pyo
+lib/python2.3/test/badsyntax_future3.py
+lib/python2.3/test/badsyntax_future4.py
+lib/python2.3/test/badsyntax_future5.py
+lib/python2.3/test/badsyntax_future6.py
+lib/python2.3/test/badsyntax_future7.py
+lib/python2.3/test/badsyntax_nocaret.py
+lib/python2.3/test/double_const.py
+lib/python2.3/test/double_const.pyc
+lib/python2.3/test/double_const.pyo
+lib/python2.3/test/greyrgb.uue
+lib/python2.3/test/output/test_MimeWriter
+lib/python2.3/test/output/test_asynchat
+lib/python2.3/test/output/test_augassign
+lib/python2.3/test/output/test_binascii
+lib/python2.3/test/output/test_cgi
+lib/python2.3/test/output/test_class
+lib/python2.3/test/output/test_coercion
+lib/python2.3/test/output/test_compare
+lib/python2.3/test/output/test_cookie
+lib/python2.3/test/output/test_exceptions
+lib/python2.3/test/output/test_extcall
+lib/python2.3/test/output/test_frozen
+lib/python2.3/test/output/test_future
+lib/python2.3/test/output/test_global
+lib/python2.3/test/output/test_grammar
+lib/python2.3/test/output/test_httplib
+lib/python2.3/test/output/test_linuxaudiodev
+lib/python2.3/test/output/test_logging
+lib/python2.3/test/output/test_longexp
+lib/python2.3/test/output/test_math
+lib/python2.3/test/output/test_md5
+lib/python2.3/test/output/test_mmap
+lib/python2.3/test/output/test_new
+lib/python2.3/test/output/test_nis
+lib/python2.3/test/output/test_opcodes
+lib/python2.3/test/output/test_openpty
+lib/python2.3/test/output/test_operations
+lib/python2.3/test/output/test_ossaudiodev
+lib/python2.3/test/output/test_pep277
+lib/python2.3/test/output/test_pkg
+lib/python2.3/test/output/test_poll
+lib/python2.3/test/output/test_popen
+lib/python2.3/test/output/test_popen2
+lib/python2.3/test/output/test_profile
+lib/python2.3/test/output/test_pty
+lib/python2.3/test/output/test_pyexpat
+lib/python2.3/test/output/test_regex
+lib/python2.3/test/output/test_resource
+lib/python2.3/test/output/test_rgbimg
+lib/python2.3/test/output/test_rotor
+lib/python2.3/test/output/test_scope
+lib/python2.3/test/output/test_signal
+lib/python2.3/test/output/test_thread
+lib/python2.3/test/output/test_threadedtempfile
+lib/python2.3/test/output/test_tokenize
+lib/python2.3/test/output/test_types
+lib/python2.3/test/output/test_unicode_file
+lib/python2.3/test/output/test_winreg
+lib/python2.3/test/output/test_xreadline
+lib/python2.3/test/output/xmltests
+lib/python2.3/test/pickletester.py
+lib/python2.3/test/pickletester.pyc
+lib/python2.3/test/pickletester.pyo
+lib/python2.3/test/pydocfodder.py
+lib/python2.3/test/pydocfodder.pyc
+lib/python2.3/test/pydocfodder.pyo
+lib/python2.3/test/pystone.py
+lib/python2.3/test/pystone.pyc
+lib/python2.3/test/pystone.pyo
+lib/python2.3/test/re_tests.py
+lib/python2.3/test/re_tests.pyc
+lib/python2.3/test/re_tests.pyo
+lib/python2.3/test/regex_tests.py
+lib/python2.3/test/regex_tests.pyc
+lib/python2.3/test/regex_tests.pyo
+lib/python2.3/test/regrtest.py
+lib/python2.3/test/regrtest.pyc
+lib/python2.3/test/regrtest.pyo
+lib/python2.3/test/reperf.py
+lib/python2.3/test/reperf.pyc
+lib/python2.3/test/reperf.pyo
+lib/python2.3/test/sortperf.py
+lib/python2.3/test/sortperf.pyc
+lib/python2.3/test/sortperf.pyo
+lib/python2.3/test/string_tests.py
+lib/python2.3/test/string_tests.pyc
+lib/python2.3/test/string_tests.pyo
+lib/python2.3/test/test.xml
+lib/python2.3/test/test.xml.out
+lib/python2.3/test/test_MimeWriter.py
+lib/python2.3/test/test_MimeWriter.pyc
+lib/python2.3/test/test_MimeWriter.pyo
+lib/python2.3/test/test_StringIO.py
+lib/python2.3/test/test_StringIO.pyc
+lib/python2.3/test/test_StringIO.pyo
+lib/python2.3/test/test___all__.py
+lib/python2.3/test/test___all__.pyc
+lib/python2.3/test/test___all__.pyo
+lib/python2.3/test/test___future__.py
+lib/python2.3/test/test___future__.pyc
+lib/python2.3/test/test___future__.pyo
+lib/python2.3/test/test_aepack.py
+lib/python2.3/test/test_aepack.pyc
+lib/python2.3/test/test_aepack.pyo
+lib/python2.3/test/test_al.py
+lib/python2.3/test/test_al.pyc
+lib/python2.3/test/test_al.pyo
+lib/python2.3/test/test_anydbm.py
+lib/python2.3/test/test_anydbm.pyc
+lib/python2.3/test/test_anydbm.pyo
+lib/python2.3/test/test_array.py
+lib/python2.3/test/test_array.pyc
+lib/python2.3/test/test_array.pyo
+lib/python2.3/test/test_asynchat.py
+lib/python2.3/test/test_asynchat.pyc
+lib/python2.3/test/test_asynchat.pyo
+lib/python2.3/test/test_atexit.py
+lib/python2.3/test/test_atexit.pyc
+lib/python2.3/test/test_atexit.pyo
+lib/python2.3/test/test_audioop.py
+lib/python2.3/test/test_audioop.pyc
+lib/python2.3/test/test_audioop.pyo
+lib/python2.3/test/test_augassign.py
+lib/python2.3/test/test_augassign.pyc
+lib/python2.3/test/test_augassign.pyo
+lib/python2.3/test/test_base64.py
+lib/python2.3/test/test_base64.pyc
+lib/python2.3/test/test_base64.pyo
+lib/python2.3/test/test_bastion.py
+lib/python2.3/test/test_bastion.pyc
+lib/python2.3/test/test_bastion.pyo
+lib/python2.3/test/test_binascii.py
+lib/python2.3/test/test_binascii.pyc
+lib/python2.3/test/test_binascii.pyo
+lib/python2.3/test/test_binhex.py
+lib/python2.3/test/test_binhex.pyc
+lib/python2.3/test/test_binhex.pyo
+lib/python2.3/test/test_binop.py
+lib/python2.3/test/test_binop.pyc
+lib/python2.3/test/test_binop.pyo
+lib/python2.3/test/test_bisect.py
+lib/python2.3/test/test_bisect.pyc
+lib/python2.3/test/test_bisect.pyo
+lib/python2.3/test/test_bool.py
+lib/python2.3/test/test_bool.pyc
+lib/python2.3/test/test_bool.pyo
+lib/python2.3/test/test_bsddb.py
+lib/python2.3/test/test_bsddb.pyc
+lib/python2.3/test/test_bsddb.pyo
+lib/python2.3/test/test_bsddb185.py
+lib/python2.3/test/test_bsddb185.pyc
+lib/python2.3/test/test_bsddb185.pyo
+lib/python2.3/test/test_bsddb3.py
+lib/python2.3/test/test_bsddb3.pyc
+lib/python2.3/test/test_bsddb3.pyo
+lib/python2.3/test/test_bufio.py
+lib/python2.3/test/test_bufio.pyc
+lib/python2.3/test/test_bufio.pyo
+lib/python2.3/test/test_builtin.py
+lib/python2.3/test/test_builtin.pyc
+lib/python2.3/test/test_builtin.pyo
+lib/python2.3/test/test_bz2.py
+lib/python2.3/test/test_bz2.pyc
+lib/python2.3/test/test_bz2.pyo
+lib/python2.3/test/test_calendar.py
+lib/python2.3/test/test_calendar.pyc
+lib/python2.3/test/test_calendar.pyo
+lib/python2.3/test/test_call.py
+lib/python2.3/test/test_call.pyc
+lib/python2.3/test/test_call.pyo
+lib/python2.3/test/test_capi.py
+lib/python2.3/test/test_capi.pyc
+lib/python2.3/test/test_capi.pyo
+lib/python2.3/test/test_cd.py
+lib/python2.3/test/test_cd.pyc
+lib/python2.3/test/test_cd.pyo
+lib/python2.3/test/test_cfgparser.py
+lib/python2.3/test/test_cfgparser.pyc
+lib/python2.3/test/test_cfgparser.pyo
+lib/python2.3/test/test_cgi.py
+lib/python2.3/test/test_cgi.pyc
+lib/python2.3/test/test_cgi.pyo
+lib/python2.3/test/test_charmapcodec.py
+lib/python2.3/test/test_charmapcodec.pyc
+lib/python2.3/test/test_charmapcodec.pyo
+lib/python2.3/test/test_cl.py
+lib/python2.3/test/test_cl.pyc
+lib/python2.3/test/test_cl.pyo
+lib/python2.3/test/test_class.py
+lib/python2.3/test/test_class.pyc
+lib/python2.3/test/test_class.pyo
+lib/python2.3/test/test_cmath.py
+lib/python2.3/test/test_cmath.pyc
+lib/python2.3/test/test_cmath.pyo
+lib/python2.3/test/test_codeccallbacks.py
+lib/python2.3/test/test_codeccallbacks.pyc
+lib/python2.3/test/test_codeccallbacks.pyo
+lib/python2.3/test/test_codecs.py
+lib/python2.3/test/test_codecs.pyc
+lib/python2.3/test/test_codecs.pyo
+lib/python2.3/test/test_codeop.py
+lib/python2.3/test/test_codeop.pyc
+lib/python2.3/test/test_codeop.pyo
+lib/python2.3/test/test_coercion.py
+lib/python2.3/test/test_coercion.pyc
+lib/python2.3/test/test_coercion.pyo
+lib/python2.3/test/test_commands.py
+lib/python2.3/test/test_commands.pyc
+lib/python2.3/test/test_commands.pyo
+lib/python2.3/test/test_compare.py
+lib/python2.3/test/test_compare.pyc
+lib/python2.3/test/test_compare.pyo
+lib/python2.3/test/test_compile.py
+lib/python2.3/test/test_compile.pyc
+lib/python2.3/test/test_compile.pyo
+lib/python2.3/test/test_complex.py
+lib/python2.3/test/test_complex.pyc
+lib/python2.3/test/test_complex.pyo
+lib/python2.3/test/test_contains.py
+lib/python2.3/test/test_contains.pyc
+lib/python2.3/test/test_contains.pyo
+lib/python2.3/test/test_cookie.py
+lib/python2.3/test/test_cookie.pyc
+lib/python2.3/test/test_cookie.pyo
+lib/python2.3/test/test_copy.py
+lib/python2.3/test/test_copy.pyc
+lib/python2.3/test/test_copy.pyo
+lib/python2.3/test/test_copy_reg.py
+lib/python2.3/test/test_copy_reg.pyc
+lib/python2.3/test/test_copy_reg.pyo
+lib/python2.3/test/test_cpickle.py
+lib/python2.3/test/test_cpickle.pyc
+lib/python2.3/test/test_cpickle.pyo
+lib/python2.3/test/test_crypt.py
+lib/python2.3/test/test_crypt.pyc
+lib/python2.3/test/test_crypt.pyo
+lib/python2.3/test/test_csv.py
+lib/python2.3/test/test_csv.pyc
+lib/python2.3/test/test_csv.pyo
+lib/python2.3/test/test_curses.py
+lib/python2.3/test/test_curses.pyc
+lib/python2.3/test/test_curses.pyo
+lib/python2.3/test/test_datetime.py
+lib/python2.3/test/test_datetime.pyc
+lib/python2.3/test/test_datetime.pyo
+lib/python2.3/test/test_dbm.py
+lib/python2.3/test/test_dbm.pyc
+lib/python2.3/test/test_dbm.pyo
+lib/python2.3/test/test_descr.py
+lib/python2.3/test/test_descr.pyc
+lib/python2.3/test/test_descr.pyo
+lib/python2.3/test/test_descrtut.py
+lib/python2.3/test/test_descrtut.pyc
+lib/python2.3/test/test_descrtut.pyo
+lib/python2.3/test/test_difflib.py
+lib/python2.3/test/test_difflib.pyc
+lib/python2.3/test/test_difflib.pyo
+lib/python2.3/test/test_dircache.py
+lib/python2.3/test/test_dircache.pyc
+lib/python2.3/test/test_dircache.pyo
+lib/python2.3/test/test_dis.py
+lib/python2.3/test/test_dis.pyc
+lib/python2.3/test/test_dis.pyo
+lib/python2.3/test/test_dl.py
+lib/python2.3/test/test_dl.pyc
+lib/python2.3/test/test_dl.pyo
+lib/python2.3/test/test_doctest.py
+lib/python2.3/test/test_doctest.pyc
+lib/python2.3/test/test_doctest.pyo
+lib/python2.3/test/test_doctest2.py
+lib/python2.3/test/test_doctest2.pyc
+lib/python2.3/test/test_doctest2.pyo
+lib/python2.3/test/test_dumbdbm.py
+lib/python2.3/test/test_dumbdbm.pyc
+lib/python2.3/test/test_dumbdbm.pyo
+lib/python2.3/test/test_dummy_thread.py
+lib/python2.3/test/test_dummy_thread.pyc
+lib/python2.3/test/test_dummy_thread.pyo
+lib/python2.3/test/test_dummy_threading.py
+lib/python2.3/test/test_dummy_threading.pyc
+lib/python2.3/test/test_dummy_threading.pyo
+lib/python2.3/test/test_email.py
+lib/python2.3/test/test_email.pyc
+lib/python2.3/test/test_email.pyo
+lib/python2.3/test/test_email_codecs.py
+lib/python2.3/test/test_email_codecs.pyc
+lib/python2.3/test/test_email_codecs.pyo
+lib/python2.3/test/test_enumerate.py
+lib/python2.3/test/test_enumerate.pyc
+lib/python2.3/test/test_enumerate.pyo
+lib/python2.3/test/test_eof.py
+lib/python2.3/test/test_eof.pyc
+lib/python2.3/test/test_eof.pyo
+lib/python2.3/test/test_errno.py
+lib/python2.3/test/test_errno.pyc
+lib/python2.3/test/test_errno.pyo
+lib/python2.3/test/test_exceptions.py
+lib/python2.3/test/test_exceptions.pyc
+lib/python2.3/test/test_exceptions.pyo
+lib/python2.3/test/test_extcall.py
+lib/python2.3/test/test_extcall.pyc
+lib/python2.3/test/test_extcall.pyo
+lib/python2.3/test/test_fcntl.py
+lib/python2.3/test/test_fcntl.pyc
+lib/python2.3/test/test_fcntl.pyo
+lib/python2.3/test/test_file.py
+lib/python2.3/test/test_file.pyc
+lib/python2.3/test/test_file.pyo
+lib/python2.3/test/test_filecmp.py
+lib/python2.3/test/test_filecmp.pyc
+lib/python2.3/test/test_filecmp.pyo
+lib/python2.3/test/test_fileinput.py
+lib/python2.3/test/test_fileinput.pyc
+lib/python2.3/test/test_fileinput.pyo
+lib/python2.3/test/test_fnmatch.py
+lib/python2.3/test/test_fnmatch.pyc
+lib/python2.3/test/test_fnmatch.pyo
+lib/python2.3/test/test_fork1.py
+lib/python2.3/test/test_fork1.pyc
+lib/python2.3/test/test_fork1.pyo
+lib/python2.3/test/test_format.py
+lib/python2.3/test/test_format.pyc
+lib/python2.3/test/test_format.pyo
+lib/python2.3/test/test_fpformat.py
+lib/python2.3/test/test_fpformat.pyc
+lib/python2.3/test/test_fpformat.pyo
+lib/python2.3/test/test_frozen.py
+lib/python2.3/test/test_frozen.pyc
+lib/python2.3/test/test_frozen.pyo
+lib/python2.3/test/test_funcattrs.py
+lib/python2.3/test/test_funcattrs.pyc
+lib/python2.3/test/test_funcattrs.pyo
+lib/python2.3/test/test_future.py
+lib/python2.3/test/test_future.pyc
+lib/python2.3/test/test_future.pyo
+lib/python2.3/test/test_future1.py
+lib/python2.3/test/test_future1.pyc
+lib/python2.3/test/test_future1.pyo
+lib/python2.3/test/test_future2.py
+lib/python2.3/test/test_future2.pyc
+lib/python2.3/test/test_future2.pyo
+lib/python2.3/test/test_future3.py
+lib/python2.3/test/test_future3.pyc
+lib/python2.3/test/test_future3.pyo
+lib/python2.3/test/test_gc.py
+lib/python2.3/test/test_gc.pyc
+lib/python2.3/test/test_gc.pyo
+lib/python2.3/test/test_gdbm.py
+lib/python2.3/test/test_gdbm.pyc
+lib/python2.3/test/test_gdbm.pyo
+lib/python2.3/test/test_generators.py
+lib/python2.3/test/test_generators.pyc
+lib/python2.3/test/test_generators.pyo
+lib/python2.3/test/test_getargs.py
+lib/python2.3/test/test_getargs.pyc
+lib/python2.3/test/test_getargs.pyo
+lib/python2.3/test/test_getargs2.py
+lib/python2.3/test/test_getargs2.pyc
+lib/python2.3/test/test_getargs2.pyo
+lib/python2.3/test/test_getopt.py
+lib/python2.3/test/test_getopt.pyc
+lib/python2.3/test/test_getopt.pyo
+lib/python2.3/test/test_gettext.py
+lib/python2.3/test/test_gettext.pyc
+lib/python2.3/test/test_gettext.pyo
+lib/python2.3/test/test_gl.py
+lib/python2.3/test/test_gl.pyc
+lib/python2.3/test/test_gl.pyo
+lib/python2.3/test/test_glob.py
+lib/python2.3/test/test_glob.pyc
+lib/python2.3/test/test_glob.pyo
+lib/python2.3/test/test_global.py
+lib/python2.3/test/test_global.pyc
+lib/python2.3/test/test_global.pyo
+lib/python2.3/test/test_grammar.py
+lib/python2.3/test/test_grammar.pyc
+lib/python2.3/test/test_grammar.pyo
+lib/python2.3/test/test_grp.py
+lib/python2.3/test/test_grp.pyc
+lib/python2.3/test/test_grp.pyo
+lib/python2.3/test/test_gzip.py
+lib/python2.3/test/test_gzip.pyc
+lib/python2.3/test/test_gzip.pyo
+lib/python2.3/test/test_hash.py
+lib/python2.3/test/test_hash.pyc
+lib/python2.3/test/test_hash.pyo
+lib/python2.3/test/test_heapq.py
+lib/python2.3/test/test_heapq.pyc
+lib/python2.3/test/test_heapq.pyo
+lib/python2.3/test/test_hexoct.py
+lib/python2.3/test/test_hexoct.pyc
+lib/python2.3/test/test_hexoct.pyo
+lib/python2.3/test/test_hmac.py
+lib/python2.3/test/test_hmac.pyc
+lib/python2.3/test/test_hmac.pyo
+lib/python2.3/test/test_hotshot.py
+lib/python2.3/test/test_hotshot.pyc
+lib/python2.3/test/test_hotshot.pyo
+lib/python2.3/test/test_htmllib.py
+lib/python2.3/test/test_htmllib.pyc
+lib/python2.3/test/test_htmllib.pyo
+lib/python2.3/test/test_htmlparser.py
+lib/python2.3/test/test_htmlparser.pyc
+lib/python2.3/test/test_htmlparser.pyo
+lib/python2.3/test/test_httplib.py
+lib/python2.3/test/test_httplib.pyc
+lib/python2.3/test/test_httplib.pyo
+lib/python2.3/test/test_imageop.py
+lib/python2.3/test/test_imageop.pyc
+lib/python2.3/test/test_imageop.pyo
+lib/python2.3/test/test_imaplib.py
+lib/python2.3/test/test_imaplib.pyc
+lib/python2.3/test/test_imaplib.pyo
+lib/python2.3/test/test_imgfile.py
+lib/python2.3/test/test_imgfile.pyc
+lib/python2.3/test/test_imgfile.pyo
+lib/python2.3/test/test_imp.py
+lib/python2.3/test/test_imp.pyc
+lib/python2.3/test/test_imp.pyo
+lib/python2.3/test/test_import.py
+lib/python2.3/test/test_import.pyc
+lib/python2.3/test/test_import.pyo
+lib/python2.3/test/test_importhooks.py
+lib/python2.3/test/test_importhooks.pyc
+lib/python2.3/test/test_importhooks.pyo
+lib/python2.3/test/test_inspect.py
+lib/python2.3/test/test_inspect.pyc
+lib/python2.3/test/test_inspect.pyo
+lib/python2.3/test/test_ioctl.py
+lib/python2.3/test/test_ioctl.pyc
+lib/python2.3/test/test_ioctl.pyo
+lib/python2.3/test/test_isinstance.py
+lib/python2.3/test/test_isinstance.pyc
+lib/python2.3/test/test_isinstance.pyo
+lib/python2.3/test/test_iter.py
+lib/python2.3/test/test_iter.pyc
+lib/python2.3/test/test_iter.pyo
+lib/python2.3/test/test_itertools.py
+lib/python2.3/test/test_itertools.pyc
+lib/python2.3/test/test_itertools.pyo
+lib/python2.3/test/test_largefile.py
+lib/python2.3/test/test_largefile.pyc
+lib/python2.3/test/test_largefile.pyo
+lib/python2.3/test/test_linuxaudiodev.py
+lib/python2.3/test/test_linuxaudiodev.pyc
+lib/python2.3/test/test_linuxaudiodev.pyo
+lib/python2.3/test/test_locale.py
+lib/python2.3/test/test_locale.pyc
+lib/python2.3/test/test_locale.pyo
+lib/python2.3/test/test_logging.py
+lib/python2.3/test/test_logging.pyc
+lib/python2.3/test/test_logging.pyo
+lib/python2.3/test/test_long.py
+lib/python2.3/test/test_long.pyc
+lib/python2.3/test/test_long.pyo
+lib/python2.3/test/test_long_future.py
+lib/python2.3/test/test_long_future.pyc
+lib/python2.3/test/test_long_future.pyo
+lib/python2.3/test/test_longexp.py
+lib/python2.3/test/test_longexp.pyc
+lib/python2.3/test/test_longexp.pyo
+lib/python2.3/test/test_macfs.py
+lib/python2.3/test/test_macfs.pyc
+lib/python2.3/test/test_macfs.pyo
+lib/python2.3/test/test_macostools.py
+lib/python2.3/test/test_macostools.pyc
+lib/python2.3/test/test_macostools.pyo
+lib/python2.3/test/test_macpath.py
+lib/python2.3/test/test_macpath.pyc
+lib/python2.3/test/test_macpath.pyo
+lib/python2.3/test/test_mailbox.py
+lib/python2.3/test/test_mailbox.pyc
+lib/python2.3/test/test_mailbox.pyo
+lib/python2.3/test/test_marshal.py
+lib/python2.3/test/test_marshal.pyc
+lib/python2.3/test/test_marshal.pyo
+lib/python2.3/test/test_math.py
+lib/python2.3/test/test_math.pyc
+lib/python2.3/test/test_math.pyo
+lib/python2.3/test/test_md5.py
+lib/python2.3/test/test_md5.pyc
+lib/python2.3/test/test_md5.pyo
+lib/python2.3/test/test_mhlib.py
+lib/python2.3/test/test_mhlib.pyc
+lib/python2.3/test/test_mhlib.pyo
+lib/python2.3/test/test_mimetools.py
+lib/python2.3/test/test_mimetools.pyc
+lib/python2.3/test/test_mimetools.pyo
+lib/python2.3/test/test_mimetypes.py
+lib/python2.3/test/test_mimetypes.pyc
+lib/python2.3/test/test_mimetypes.pyo
+lib/python2.3/test/test_minidom.py
+lib/python2.3/test/test_minidom.pyc
+lib/python2.3/test/test_minidom.pyo
+lib/python2.3/test/test_mmap.py
+lib/python2.3/test/test_mmap.pyc
+lib/python2.3/test/test_mmap.pyo
+lib/python2.3/test/test_module.py
+lib/python2.3/test/test_module.pyc
+lib/python2.3/test/test_module.pyo
+lib/python2.3/test/test_mpz.py
+lib/python2.3/test/test_mpz.pyc
+lib/python2.3/test/test_mpz.pyo
+lib/python2.3/test/test_multifile.py
+lib/python2.3/test/test_multifile.pyc
+lib/python2.3/test/test_multifile.pyo
+lib/python2.3/test/test_mutants.py
+lib/python2.3/test/test_mutants.pyc
+lib/python2.3/test/test_mutants.pyo
+lib/python2.3/test/test_netrc.py
+lib/python2.3/test/test_netrc.pyc
+lib/python2.3/test/test_netrc.pyo
+lib/python2.3/test/test_new.py
+lib/python2.3/test/test_new.pyc
+lib/python2.3/test/test_new.pyo
+lib/python2.3/test/test_nis.py
+lib/python2.3/test/test_nis.pyc
+lib/python2.3/test/test_nis.pyo
+lib/python2.3/test/test_normalization.py
+lib/python2.3/test/test_normalization.pyc
+lib/python2.3/test/test_normalization.pyo
+lib/python2.3/test/test_ntpath.py
+lib/python2.3/test/test_ntpath.pyc
+lib/python2.3/test/test_ntpath.pyo
+lib/python2.3/test/test_opcodes.py
+lib/python2.3/test/test_opcodes.pyc
+lib/python2.3/test/test_opcodes.pyo
+lib/python2.3/test/test_openpty.py
+lib/python2.3/test/test_openpty.pyc
+lib/python2.3/test/test_openpty.pyo
+lib/python2.3/test/test_operations.py
+lib/python2.3/test/test_operations.pyc
+lib/python2.3/test/test_operations.pyo
+lib/python2.3/test/test_operator.py
+lib/python2.3/test/test_operator.pyc
+lib/python2.3/test/test_operator.pyo
+lib/python2.3/test/test_optparse.py
+lib/python2.3/test/test_optparse.pyc
+lib/python2.3/test/test_optparse.pyo
+lib/python2.3/test/test_os.py
+lib/python2.3/test/test_os.pyc
+lib/python2.3/test/test_os.pyo
+lib/python2.3/test/test_ossaudiodev.py
+lib/python2.3/test/test_ossaudiodev.pyc
+lib/python2.3/test/test_ossaudiodev.pyo
+lib/python2.3/test/test_parser.py
+lib/python2.3/test/test_parser.pyc
+lib/python2.3/test/test_parser.pyo
+lib/python2.3/test/test_pep247.py
+lib/python2.3/test/test_pep247.pyc
+lib/python2.3/test/test_pep247.pyo
+lib/python2.3/test/test_pep263.py
+lib/python2.3/test/test_pep263.pyc
+lib/python2.3/test/test_pep263.pyo
+lib/python2.3/test/test_pep277.py
+lib/python2.3/test/test_pep277.pyc
+lib/python2.3/test/test_pep277.pyo
+lib/python2.3/test/test_pickle.py
+lib/python2.3/test/test_pickle.pyc
+lib/python2.3/test/test_pickle.pyo
+lib/python2.3/test/test_pickletools.py
+lib/python2.3/test/test_pickletools.pyc
+lib/python2.3/test/test_pickletools.pyo
+lib/python2.3/test/test_pkg.py
+lib/python2.3/test/test_pkg.pyc
+lib/python2.3/test/test_pkg.pyo
+lib/python2.3/test/test_pkgimport.py
+lib/python2.3/test/test_pkgimport.pyc
+lib/python2.3/test/test_pkgimport.pyo
+lib/python2.3/test/test_plistlib.py
+lib/python2.3/test/test_plistlib.pyc
+lib/python2.3/test/test_plistlib.pyo
+lib/python2.3/test/test_poll.py
+lib/python2.3/test/test_poll.pyc
+lib/python2.3/test/test_poll.pyo
+lib/python2.3/test/test_popen.py
+lib/python2.3/test/test_popen.pyc
+lib/python2.3/test/test_popen.pyo
+lib/python2.3/test/test_popen2.py
+lib/python2.3/test/test_popen2.pyc
+lib/python2.3/test/test_popen2.pyo
+lib/python2.3/test/test_posix.py
+lib/python2.3/test/test_posix.pyc
+lib/python2.3/test/test_posix.pyo
+lib/python2.3/test/test_posixpath.py
+lib/python2.3/test/test_posixpath.pyc
+lib/python2.3/test/test_posixpath.pyo
+lib/python2.3/test/test_pow.py
+lib/python2.3/test/test_pow.pyc
+lib/python2.3/test/test_pow.pyo
+lib/python2.3/test/test_pprint.py
+lib/python2.3/test/test_pprint.pyc
+lib/python2.3/test/test_pprint.pyo
+lib/python2.3/test/test_profile.py
+lib/python2.3/test/test_profile.pyc
+lib/python2.3/test/test_profile.pyo
+lib/python2.3/test/test_profilehooks.py
+lib/python2.3/test/test_profilehooks.pyc
+lib/python2.3/test/test_profilehooks.pyo
+lib/python2.3/test/test_pty.py
+lib/python2.3/test/test_pty.pyc
+lib/python2.3/test/test_pty.pyo
+lib/python2.3/test/test_pwd.py
+lib/python2.3/test/test_pwd.pyc
+lib/python2.3/test/test_pwd.pyo
+lib/python2.3/test/test_pyclbr.py
+lib/python2.3/test/test_pyclbr.pyc
+lib/python2.3/test/test_pyclbr.pyo
+lib/python2.3/test/test_pyexpat.py
+lib/python2.3/test/test_pyexpat.pyc
+lib/python2.3/test/test_pyexpat.pyo
+lib/python2.3/test/test_queue.py
+lib/python2.3/test/test_queue.pyc
+lib/python2.3/test/test_queue.pyo
+lib/python2.3/test/test_quopri.py
+lib/python2.3/test/test_quopri.pyc
+lib/python2.3/test/test_quopri.pyo
+lib/python2.3/test/test_random.py
+lib/python2.3/test/test_random.pyc
+lib/python2.3/test/test_random.pyo
+lib/python2.3/test/test_re.py
+lib/python2.3/test/test_re.pyc
+lib/python2.3/test/test_re.pyo
+lib/python2.3/test/test_regex.py
+lib/python2.3/test/test_regex.pyc
+lib/python2.3/test/test_regex.pyo
+lib/python2.3/test/test_repr.py
+lib/python2.3/test/test_repr.pyc
+lib/python2.3/test/test_repr.pyo
+lib/python2.3/test/test_resource.py
+lib/python2.3/test/test_resource.pyc
+lib/python2.3/test/test_resource.pyo
+lib/python2.3/test/test_rfc822.py
+lib/python2.3/test/test_rfc822.pyc
+lib/python2.3/test/test_rfc822.pyo
+lib/python2.3/test/test_rgbimg.py
+lib/python2.3/test/test_rgbimg.pyc
+lib/python2.3/test/test_rgbimg.pyo
+lib/python2.3/test/test_richcmp.py
+lib/python2.3/test/test_richcmp.pyc
+lib/python2.3/test/test_richcmp.pyo
+lib/python2.3/test/test_robotparser.py
+lib/python2.3/test/test_robotparser.pyc
+lib/python2.3/test/test_robotparser.pyo
+lib/python2.3/test/test_rotor.py
+lib/python2.3/test/test_rotor.pyc
+lib/python2.3/test/test_rotor.pyo
+lib/python2.3/test/test_sax.py
+lib/python2.3/test/test_sax.pyc
+lib/python2.3/test/test_sax.pyo
+lib/python2.3/test/test_scope.py
+lib/python2.3/test/test_scope.pyc
+lib/python2.3/test/test_scope.pyo
+lib/python2.3/test/test_scriptpackages.py
+lib/python2.3/test/test_scriptpackages.pyc
+lib/python2.3/test/test_scriptpackages.pyo
+lib/python2.3/test/test_select.py
+lib/python2.3/test/test_select.pyc
+lib/python2.3/test/test_select.pyo
+lib/python2.3/test/test_sets.py
+lib/python2.3/test/test_sets.pyc
+lib/python2.3/test/test_sets.pyo
+lib/python2.3/test/test_sgmllib.py
+lib/python2.3/test/test_sgmllib.pyc
+lib/python2.3/test/test_sgmllib.pyo
+lib/python2.3/test/test_sha.py
+lib/python2.3/test/test_sha.pyc
+lib/python2.3/test/test_sha.pyo
+lib/python2.3/test/test_shelve.py
+lib/python2.3/test/test_shelve.pyc
+lib/python2.3/test/test_shelve.pyo
+lib/python2.3/test/test_shlex.py
+lib/python2.3/test/test_shlex.pyc
+lib/python2.3/test/test_shlex.pyo
+lib/python2.3/test/test_shutil.py
+lib/python2.3/test/test_shutil.pyc
+lib/python2.3/test/test_shutil.pyo
+lib/python2.3/test/test_signal.py
+lib/python2.3/test/test_signal.pyc
+lib/python2.3/test/test_signal.pyo
+lib/python2.3/test/test_slice.py
+lib/python2.3/test/test_slice.pyc
+lib/python2.3/test/test_slice.pyo
+lib/python2.3/test/test_socket.py
+lib/python2.3/test/test_socket.pyc
+lib/python2.3/test/test_socket.pyo
+lib/python2.3/test/test_socket_ssl.py
+lib/python2.3/test/test_socket_ssl.pyc
+lib/python2.3/test/test_socket_ssl.pyo
+lib/python2.3/test/test_socketserver.py
+lib/python2.3/test/test_socketserver.pyc
+lib/python2.3/test/test_socketserver.pyo
+lib/python2.3/test/test_softspace.py
+lib/python2.3/test/test_softspace.pyc
+lib/python2.3/test/test_softspace.pyo
+lib/python2.3/test/test_sort.py
+lib/python2.3/test/test_sort.pyc
+lib/python2.3/test/test_sort.pyo
+lib/python2.3/test/test_str.py
+lib/python2.3/test/test_str.pyc
+lib/python2.3/test/test_str.pyo
+lib/python2.3/test/test_strftime.py
+lib/python2.3/test/test_strftime.pyc
+lib/python2.3/test/test_strftime.pyo
+lib/python2.3/test/test_string.py
+lib/python2.3/test/test_string.pyc
+lib/python2.3/test/test_string.pyo
+lib/python2.3/test/test_stringprep.py
+lib/python2.3/test/test_stringprep.pyc
+lib/python2.3/test/test_stringprep.pyo
+lib/python2.3/test/test_strop.py
+lib/python2.3/test/test_strop.pyc
+lib/python2.3/test/test_strop.pyo
+lib/python2.3/test/test_strptime.py
+lib/python2.3/test/test_strptime.pyc
+lib/python2.3/test/test_strptime.pyo
+lib/python2.3/test/test_struct.py
+lib/python2.3/test/test_struct.pyc
+lib/python2.3/test/test_struct.pyo
+lib/python2.3/test/test_structseq.py
+lib/python2.3/test/test_structseq.pyc
+lib/python2.3/test/test_structseq.pyo
+lib/python2.3/test/test_sunaudiodev.py
+lib/python2.3/test/test_sunaudiodev.pyc
+lib/python2.3/test/test_sunaudiodev.pyo
+lib/python2.3/test/test_sundry.py
+lib/python2.3/test/test_sundry.pyc
+lib/python2.3/test/test_sundry.pyo
+lib/python2.3/test/test_support.py
+lib/python2.3/test/test_support.pyc
+lib/python2.3/test/test_support.pyo
+lib/python2.3/test/test_symtable.py
+lib/python2.3/test/test_symtable.pyc
+lib/python2.3/test/test_symtable.pyo
+lib/python2.3/test/test_syntax.py
+lib/python2.3/test/test_syntax.pyc
+lib/python2.3/test/test_syntax.pyo
+lib/python2.3/test/test_sys.py
+lib/python2.3/test/test_sys.pyc
+lib/python2.3/test/test_sys.pyo
+lib/python2.3/test/test_tarfile.py
+lib/python2.3/test/test_tarfile.pyc
+lib/python2.3/test/test_tarfile.pyo
+lib/python2.3/test/test_tempfile.py
+lib/python2.3/test/test_tempfile.pyc
+lib/python2.3/test/test_tempfile.pyo
+lib/python2.3/test/test_textwrap.py
+lib/python2.3/test/test_textwrap.pyc
+lib/python2.3/test/test_textwrap.pyo
+lib/python2.3/test/test_thread.py
+lib/python2.3/test/test_thread.pyc
+lib/python2.3/test/test_thread.pyo
+lib/python2.3/test/test_threaded_import.py
+lib/python2.3/test/test_threaded_import.pyc
+lib/python2.3/test/test_threaded_import.pyo
+lib/python2.3/test/test_threadedtempfile.py
+lib/python2.3/test/test_threadedtempfile.pyc
+lib/python2.3/test/test_threadedtempfile.pyo
+lib/python2.3/test/test_threading.py
+lib/python2.3/test/test_threading.pyc
+lib/python2.3/test/test_threading.pyo
+lib/python2.3/test/test_time.py
+lib/python2.3/test/test_time.pyc
+lib/python2.3/test/test_time.pyo
+lib/python2.3/test/test_timeout.py
+lib/python2.3/test/test_timeout.pyc
+lib/python2.3/test/test_timeout.pyo
+lib/python2.3/test/test_timing.py
+lib/python2.3/test/test_timing.pyc
+lib/python2.3/test/test_timing.pyo
+lib/python2.3/test/test_tokenize.py
+lib/python2.3/test/test_tokenize.pyc
+lib/python2.3/test/test_tokenize.pyo
+lib/python2.3/test/test_trace.py
+lib/python2.3/test/test_trace.pyc
+lib/python2.3/test/test_trace.pyo
+lib/python2.3/test/test_traceback.py
+lib/python2.3/test/test_traceback.pyc
+lib/python2.3/test/test_traceback.pyo
+lib/python2.3/test/test_types.py
+lib/python2.3/test/test_types.pyc
+lib/python2.3/test/test_types.pyo
+lib/python2.3/test/test_ucn.py
+lib/python2.3/test/test_ucn.pyc
+lib/python2.3/test/test_ucn.pyo
+lib/python2.3/test/test_unary.py
+lib/python2.3/test/test_unary.pyc
+lib/python2.3/test/test_unary.pyo
+lib/python2.3/test/test_unicode.py
+lib/python2.3/test/test_unicode.pyc
+lib/python2.3/test/test_unicode.pyo
+lib/python2.3/test/test_unicode_file.py
+lib/python2.3/test/test_unicode_file.pyc
+lib/python2.3/test/test_unicode_file.pyo
+lib/python2.3/test/test_unicodedata.py
+lib/python2.3/test/test_unicodedata.pyc
+lib/python2.3/test/test_unicodedata.pyo
+lib/python2.3/test/test_univnewlines.py
+lib/python2.3/test/test_univnewlines.pyc
+lib/python2.3/test/test_univnewlines.pyo
+lib/python2.3/test/test_unpack.py
+lib/python2.3/test/test_unpack.pyc
+lib/python2.3/test/test_unpack.pyo
+lib/python2.3/test/test_urllib.py
+lib/python2.3/test/test_urllib.pyc
+lib/python2.3/test/test_urllib.pyo
+lib/python2.3/test/test_urllib2.py
+lib/python2.3/test/test_urllib2.pyc
+lib/python2.3/test/test_urllib2.pyo
+lib/python2.3/test/test_urllibnet.py
+lib/python2.3/test/test_urllibnet.pyc
+lib/python2.3/test/test_urllibnet.pyo
+lib/python2.3/test/test_urlparse.py
+lib/python2.3/test/test_urlparse.pyc
+lib/python2.3/test/test_urlparse.pyo
+lib/python2.3/test/test_userdict.py
+lib/python2.3/test/test_userdict.pyc
+lib/python2.3/test/test_userdict.pyo
+lib/python2.3/test/test_userlist.py
+lib/python2.3/test/test_userlist.pyc
+lib/python2.3/test/test_userlist.pyo
+lib/python2.3/test/test_userstring.py
+lib/python2.3/test/test_userstring.pyc
+lib/python2.3/test/test_userstring.pyo
+lib/python2.3/test/test_uu.py
+lib/python2.3/test/test_uu.pyc
+lib/python2.3/test/test_uu.pyo
+lib/python2.3/test/test_warnings.py
+lib/python2.3/test/test_warnings.pyc
+lib/python2.3/test/test_warnings.pyo
+lib/python2.3/test/test_wave.py
+lib/python2.3/test/test_wave.pyc
+lib/python2.3/test/test_wave.pyo
+lib/python2.3/test/test_weakref.py
+lib/python2.3/test/test_weakref.pyc
+lib/python2.3/test/test_weakref.pyo
+lib/python2.3/test/test_whichdb.py
+lib/python2.3/test/test_whichdb.pyc
+lib/python2.3/test/test_whichdb.pyo
+lib/python2.3/test/test_winreg.py
+lib/python2.3/test/test_winreg.pyc
+lib/python2.3/test/test_winreg.pyo
+lib/python2.3/test/test_winsound.py
+lib/python2.3/test/test_winsound.pyc
+lib/python2.3/test/test_winsound.pyo
+lib/python2.3/test/test_xmllib.py
+lib/python2.3/test/test_xmllib.pyc
+lib/python2.3/test/test_xmllib.pyo
+lib/python2.3/test/test_xmlrpc.py
+lib/python2.3/test/test_xmlrpc.pyc
+lib/python2.3/test/test_xmlrpc.pyo
+lib/python2.3/test/test_xpickle.py
+lib/python2.3/test/test_xpickle.pyc
+lib/python2.3/test/test_xpickle.pyo
+lib/python2.3/test/test_xreadline.py
+lib/python2.3/test/test_xreadline.pyc
+lib/python2.3/test/test_xreadline.pyo
+lib/python2.3/test/test_zipfile.py
+lib/python2.3/test/test_zipfile.pyc
+lib/python2.3/test/test_zipfile.pyo
+lib/python2.3/test/test_zipimport.py
+lib/python2.3/test/test_zipimport.pyc
+lib/python2.3/test/test_zipimport.pyo
+lib/python2.3/test/test_zlib.py
+lib/python2.3/test/test_zlib.pyc
+lib/python2.3/test/test_zlib.pyo
+lib/python2.3/test/testall.py
+lib/python2.3/test/testall.pyc
+lib/python2.3/test/testall.pyo
+lib/python2.3/test/testcodec.py
+lib/python2.3/test/testcodec.pyc
+lib/python2.3/test/testcodec.pyo
+lib/python2.3/test/testimg.uue
+lib/python2.3/test/testimgr.uue
+lib/python2.3/test/testrgb.uue
+lib/python2.3/test/testtar.tar
+lib/python2.3/test/tf_inherit_check.py
+lib/python2.3/test/tf_inherit_check.pyc
+lib/python2.3/test/tf_inherit_check.pyo
+lib/python2.3/test/tokenize_tests.txt
+lib/python2.3/test/xmltests.py
+lib/python2.3/test/xmltests.pyc
+lib/python2.3/test/xmltests.pyo
+@dirrm lib/python2.3/test/output
+@dirrm lib/python2.3/test
diff python.orig/2.3/pkg/PLIST-tkinter python/2.3/pkg/PLIST-tkinter
--- python.orig/2.3/pkg/PLIST-tkinter	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-tkinter	Fri Jun 20 18:46:48 2003
@@ -0,0 +1,5 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-tkinter-2.3*
+%%tkinter_no_shared%%
+lib/python2.3/lib-dynload/_tkinter.so
diff python.orig/2.3/pkg/PLIST-tools python/2.3/pkg/PLIST-tools
--- python.orig/2.3/pkg/PLIST-tools	Thu Jan  1 01:00:00 1970
+++ python/2.3/pkg/PLIST-tools	Thu Jul 31 21:50:22 2003
@@ -0,0 +1,209 @@
+@comment $OpenBSD$
+@option no-default-conflict
+@pkgcfl python-tools-2.3*
+lib/python2.3/Tools/README
+lib/python2.3/Tools/audiopy/README
+lib/python2.3/Tools/audiopy/audiopy
+lib/python2.3/Tools/bgen/README
+lib/python2.3/Tools/bgen/bgen/bgen.py
+lib/python2.3/Tools/bgen/bgen/bgenBuffer.py
+lib/python2.3/Tools/bgen/bgen/bgenGenerator.py
+lib/python2.3/Tools/bgen/bgen/bgenGeneratorGroup.py
+lib/python2.3/Tools/bgen/bgen/bgenHeapBuffer.py
+lib/python2.3/Tools/bgen/bgen/bgenModule.py
+lib/python2.3/Tools/bgen/bgen/bgenObjectDefinition.py
+lib/python2.3/Tools/bgen/bgen/bgenOutput.py
+lib/python2.3/Tools/bgen/bgen/bgenStackBuffer.py
+lib/python2.3/Tools/bgen/bgen/bgenStringBuffer.py
+lib/python2.3/Tools/bgen/bgen/bgenType.py
+lib/python2.3/Tools/bgen/bgen/bgenVariable.py
+lib/python2.3/Tools/bgen/bgen/macsupport.py
+lib/python2.3/Tools/bgen/bgen/scantools.py
+lib/python2.3/Tools/compiler/ACKS
+lib/python2.3/Tools/compiler/README
+lib/python2.3/Tools/compiler/ast.txt
+lib/python2.3/Tools/compiler/astgen.py
+lib/python2.3/Tools/compiler/compile.py
+lib/python2.3/Tools/compiler/demo.py
+lib/python2.3/Tools/compiler/dumppyc.py
+lib/python2.3/Tools/compiler/regrtest.py
+lib/python2.3/Tools/compiler/stacktest.py
+lib/python2.3/Tools/faqwiz/README
+lib/python2.3/Tools/faqwiz/faqconf.py
+lib/python2.3/Tools/faqwiz/faqcust.py
+lib/python2.3/Tools/faqwiz/faqw.py
+lib/python2.3/Tools/faqwiz/faqwiz.py
+lib/python2.3/Tools/faqwiz/move-faqwiz.sh
+lib/python2.3/Tools/framer/README.txt
+lib/python2.3/Tools/framer/TODO.txt
+lib/python2.3/Tools/framer/example.py
+lib/python2.3/Tools/framer/framer/__init__.py
+lib/python2.3/Tools/framer/framer/bases.py
+lib/python2.3/Tools/framer/framer/function.py
+lib/python2.3/Tools/framer/framer/member.py
+lib/python2.3/Tools/framer/framer/slots.py
+lib/python2.3/Tools/framer/framer/struct.py
+lib/python2.3/Tools/framer/framer/structparse.py
+lib/python2.3/Tools/framer/framer/template.py
+lib/python2.3/Tools/framer/framer/util.py
+lib/python2.3/Tools/freeze/.cvsignore
+lib/python2.3/Tools/freeze/README
+lib/python2.3/Tools/freeze/bkfile.py
+lib/python2.3/Tools/freeze/checkextensions.py
+lib/python2.3/Tools/freeze/checkextensions_win32.py
+lib/python2.3/Tools/freeze/extensions_win32.ini
+lib/python2.3/Tools/freeze/freeze.py
+lib/python2.3/Tools/freeze/hello.py
+lib/python2.3/Tools/freeze/makeconfig.py
+lib/python2.3/Tools/freeze/makefreeze.py
+lib/python2.3/Tools/freeze/makemakefile.py
+lib/python2.3/Tools/freeze/parsesetup.py
+lib/python2.3/Tools/freeze/win32.html
+lib/python2.3/Tools/freeze/winmakemakefile.py
+lib/python2.3/Tools/i18n/msgfmt.py
+lib/python2.3/Tools/i18n/pygettext.py
+lib/python2.3/Tools/modulator/EXAMPLE.py
+lib/python2.3/Tools/modulator/README
+lib/python2.3/Tools/modulator/ScrolledListbox.py
+lib/python2.3/Tools/modulator/Templates/copyright
+lib/python2.3/Tools/modulator/Templates/module_head
+lib/python2.3/Tools/modulator/Templates/module_method
+lib/python2.3/Tools/modulator/Templates/module_tail
+lib/python2.3/Tools/modulator/Templates/object_head
+lib/python2.3/Tools/modulator/Templates/object_method
+lib/python2.3/Tools/modulator/Templates/object_mlist
+lib/python2.3/Tools/modulator/Templates/object_new
+lib/python2.3/Tools/modulator/Templates/object_structure
+lib/python2.3/Tools/modulator/Templates/object_tail
+lib/python2.3/Tools/modulator/Templates/object_tp_as_mapping
+lib/python2.3/Tools/modulator/Templates/object_tp_as_number
+lib/python2.3/Tools/modulator/Templates/object_tp_as_sequence
+lib/python2.3/Tools/modulator/Templates/object_tp_call
+lib/python2.3/Tools/modulator/Templates/object_tp_compare
+lib/python2.3/Tools/modulator/Templates/object_tp_dealloc
+lib/python2.3/Tools/modulator/Templates/object_tp_getattr
+lib/python2.3/Tools/modulator/Templates/object_tp_hash
+lib/python2.3/Tools/modulator/Templates/object_tp_print
+lib/python2.3/Tools/modulator/Templates/object_tp_repr
+lib/python2.3/Tools/modulator/Templates/object_tp_setattr
+lib/python2.3/Tools/modulator/Templates/object_tp_str
+lib/python2.3/Tools/modulator/Tkextra.py
+lib/python2.3/Tools/modulator/genmodule.py
+lib/python2.3/Tools/modulator/modulator.py
+lib/python2.3/Tools/modulator/varsubst.py
+lib/python2.3/Tools/pynche/ChipViewer.py
+lib/python2.3/Tools/pynche/ColorDB.py
+lib/python2.3/Tools/pynche/DetailsViewer.py
+lib/python2.3/Tools/pynche/ListViewer.py
+lib/python2.3/Tools/pynche/Main.py
+lib/python2.3/Tools/pynche/PyncheWidget.py
+lib/python2.3/Tools/pynche/README
+lib/python2.3/Tools/pynche/StripViewer.py
+lib/python2.3/Tools/pynche/Switchboard.py
+lib/python2.3/Tools/pynche/TextViewer.py
+lib/python2.3/Tools/pynche/TypeinViewer.py
+lib/python2.3/Tools/pynche/X/rgb.txt
+lib/python2.3/Tools/pynche/X/xlicense.txt
+lib/python2.3/Tools/pynche/__init__.py
+lib/python2.3/Tools/pynche/html40colors.txt
+lib/python2.3/Tools/pynche/namedcolors.txt
+lib/python2.3/Tools/pynche/pyColorChooser.py
+lib/python2.3/Tools/pynche/pynche
+lib/python2.3/Tools/pynche/pynche.pyw
+lib/python2.3/Tools/pynche/webcolors.txt
+lib/python2.3/Tools/pynche/websafe.txt
+lib/python2.3/Tools/scripts/README
+lib/python2.3/Tools/scripts/byext.py
+lib/python2.3/Tools/scripts/byteyears.py
+lib/python2.3/Tools/scripts/checkappend.py
+lib/python2.3/Tools/scripts/checkpyc.py
+lib/python2.3/Tools/scripts/classfix.py
+lib/python2.3/Tools/scripts/cleanfuture.py
+lib/python2.3/Tools/scripts/combinerefs.py
+lib/python2.3/Tools/scripts/copytime.py
+lib/python2.3/Tools/scripts/crlf.py
+lib/python2.3/Tools/scripts/cvsfiles.py
+lib/python2.3/Tools/scripts/db2pickle.py
+lib/python2.3/Tools/scripts/diff.py
+lib/python2.3/Tools/scripts/dutree.doc
+lib/python2.3/Tools/scripts/dutree.py
+lib/python2.3/Tools/scripts/eptags.py
+lib/python2.3/Tools/scripts/finddiv.py
+lib/python2.3/Tools/scripts/findlinksto.py
+lib/python2.3/Tools/scripts/fixcid.py
+lib/python2.3/Tools/scripts/fixdiv.py
+lib/python2.3/Tools/scripts/fixheader.py
+lib/python2.3/Tools/scripts/fixnotice.py
+lib/python2.3/Tools/scripts/fixps.py
+lib/python2.3/Tools/scripts/ftpmirror.py
+lib/python2.3/Tools/scripts/gencodec.py
+lib/python2.3/Tools/scripts/google.py
+lib/python2.3/Tools/scripts/gprof2html.py
+lib/python2.3/Tools/scripts/h2py.py
+lib/python2.3/Tools/scripts/idle
+lib/python2.3/Tools/scripts/ifdef.py
+lib/python2.3/Tools/scripts/lfcr.py
+lib/python2.3/Tools/scripts/linktree.py
+lib/python2.3/Tools/scripts/lll.py
+lib/python2.3/Tools/scripts/logmerge.py
+lib/python2.3/Tools/scripts/mailerdaemon.py
+lib/python2.3/Tools/scripts/md5sum.py
+lib/python2.3/Tools/scripts/methfix.py
+lib/python2.3/Tools/scripts/mkreal.py
+lib/python2.3/Tools/scripts/ndiff.py
+lib/python2.3/Tools/scripts/nm2def.py
+lib/python2.3/Tools/scripts/objgraph.py
+lib/python2.3/Tools/scripts/parseentities.py
+lib/python2.3/Tools/scripts/pathfix.py
+lib/python2.3/Tools/scripts/pdeps.py
+lib/python2.3/Tools/scripts/pickle2db.py
+lib/python2.3/Tools/scripts/pindent.py
+lib/python2.3/Tools/scripts/ptags.py
+lib/python2.3/Tools/scripts/pydoc
+lib/python2.3/Tools/scripts/pydoc.orig
+lib/python2.3/Tools/scripts/pydocgui.pyw
+lib/python2.3/Tools/scripts/redemo.py
+lib/python2.3/Tools/scripts/reindent.py
+lib/python2.3/Tools/scripts/rgrep.py
+lib/python2.3/Tools/scripts/setup.py
+lib/python2.3/Tools/scripts/suff.py
+lib/python2.3/Tools/scripts/texcheck.py
+lib/python2.3/Tools/scripts/texi2html.py
+lib/python2.3/Tools/scripts/treesync.py
+lib/python2.3/Tools/scripts/untabify.py
+lib/python2.3/Tools/scripts/which.py
+lib/python2.3/Tools/scripts/xxci.py
+lib/python2.3/Tools/unicode/makeunicodedata.py
+lib/python2.3/Tools/unicode/mkstringprep.py
+lib/python2.3/Tools/versioncheck/README
+lib/python2.3/Tools/versioncheck/_checkversion.py
+lib/python2.3/Tools/versioncheck/checkversions.py
+lib/python2.3/Tools/versioncheck/pyversioncheck.py
+lib/python2.3/Tools/webchecker/README
+lib/python2.3/Tools/webchecker/tktools.py
+lib/python2.3/Tools/webchecker/wcgui.py
+lib/python2.3/Tools/webchecker/wcmac.py
+lib/python2.3/Tools/webchecker/webchecker.py
+lib/python2.3/Tools/webchecker/websucker.py
+lib/python2.3/Tools/webchecker/wsgui.py
+lib/python2.3/Tools/world/README
+lib/python2.3/Tools/world/world
+@dirrm lib/python2.3/Tools/world
+@dirrm lib/python2.3/Tools/webchecker
+@dirrm lib/python2.3/Tools/versioncheck
+@dirrm lib/python2.3/Tools/unicode
+@dirrm lib/python2.3/Tools/scripts
+@dirrm lib/python2.3/Tools/pynche/X
+@dirrm lib/python2.3/Tools/pynche
+@dirrm lib/python2.3/Tools/modulator/Templates
+@dirrm lib/python2.3/Tools/modulator
+@dirrm lib/python2.3/Tools/i18n
+@dirrm lib/python2.3/Tools/freeze
+@dirrm lib/python2.3/Tools/framer/framer
+@dirrm lib/python2.3/Tools/framer
+@dirrm lib/python2.3/Tools/faqwiz
+@dirrm lib/python2.3/Tools/compiler
+@dirrm lib/python2.3/Tools/bgen/bgen
+@dirrm lib/python2.3/Tools/bgen
+@dirrm lib/python2.3/Tools/audiopy
+@dirrm lib/python2.3/Tools
diff python.orig/CVS/Entries python/CVS/Entries
--- python.orig/CVS/Entries	Sat Aug  9 10:47:15 2003
+++ python/CVS/Entries	Tue Jul 29 18:03:03 2003
@@ -1,5 +1,8 @@
-/Makefile/1.49/Fri Feb 15 19:42:18 2002//
-/Makefile.inc/1.9/Mon Jun  2 15:13:42 2003//
 D/2.1////
 D/2.2////
-/python.port.mk/1.3/Thu Jul 31 16:24:36 2003//
+/Makefile/1.49/Mon Dec  9 22:35:54 2002//
+/Makefile.inc/1.9/Result of merge//
+D/files////
+D/patches////
+D/pkg////
+/python.port.mk/1.1/Mon Jul 28 17:48:13 2003//
diff python.orig/Makefile python/Makefile
--- python.orig/Makefile	Fri Feb 15 20:42:18 2002
+++ python/Makefile	Thu Jun 19 22:59:52 2003
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.49 2002/02/15 19:42:18 matt Exp $
 
+SUBDIR+=	2.3
 SUBDIR+=	2.2
 SUBDIR+=	2.1
 
 .include <bsd.port.subdir.mk>
-
diff python.orig/Makefile.inc python/Makefile.inc
--- python.orig/Makefile.inc	Mon Jun  2 17:13:42 2003
+++ python/Makefile.inc	Tue Aug 12 00:00:15 2003
@@ -6,11 +6,14 @@
 # Python itself.
 
 COMMENT=	"interpreted object-oriented programming language"
-COMMENT-tests=	"Python test suite"
-COMMENT-tools=	"extra tools for Python"
+COMMENT-bsddb=	"Berkeley db module for Python"
+COMMENT-expat=	"expat module for Python"
+COMMENT-gdbm=	"GNU dbm module for Python"
+COMMENT-idle=	"IDE for Python"
 COMMENT-mpz=	"GNU arbitrary magnitude integer module for Python"
+COMMENT-tests=	"Python test suite"
 COMMENT-tkinter="tk GUI module for Python"
-COMMENT-expat=	"expat module for Python"
+COMMENT-tools=	"extra tools for Python"
 
 PKGNAME=	python-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
 DISTNAME=	Python-${VERSION}${PATCHLEVEL}
@@ -18,11 +21,13 @@
 MASTER_SITES=	ftp://ftp.python.org/pub/${PSUBDIR}/ \
 		ftp://python.mirrors.netnumina.com/python/pub/${PSUBDIR}/ \
 		http://www.linux.org.hk/mirror/python/ftp/${PSUBDIR}/
-PSUBDIR= python/${VERSION}${PATCHLEVEL}
+PSUBDIR=	python/${VERSION}${PATCHLEVEL}
 EXTRACT_SUFX=	.tgz
 
 HOMEPAGE=	http://www.python.org/
 
+MAINTAINER=	Aleksander Piotrowski <aleksander.piotrowski@nic.com.pl>
+
 # PSF license <http://www.python.org/${VERSION}/license.html>
 # A summary of changes to Python is required to be distributed
 PERMIT_PACKAGE_CDROM=	Yes
@@ -30,10 +35,10 @@
 PERMIT_DISTFILES_CDROM=	Yes
 PERMIT_DISTFILES_FTP=	Yes
 
-FLAVORS=	no_mpz no_tkinter no_expat
+FLAVORS+=		no_mpz no_tkinter no_expat no_gdbm no_bsddb no_idle
 FLAVOR?=
 
-MULTI_PACKAGES=	-tests -tools
+MULTI_PACKAGES+=	-tests -tools
 SUBPACKAGE?=
 
 # All subpackages depend on the main python package.
@@ -60,7 +65,11 @@
 .  endif
 .else
 SED_PLIST+=		| sed -e '/^%%tkinter%%/d'
+.if empty(FLAVOR:L:Mno_idle)
+FLAVOR+=		no_idle
+NOTE=			Yes
 .endif
+.endif
 
 .if defined(PACKAGING) && ${SUBPACKAGE} == "-tkinter"
 LIB_DEPENDS+=		tk83::x11/tk/8.3
@@ -94,22 +103,63 @@
 LIB_DEPENDS+=		expat::textproc/expat
 .endif
 
+.if empty(FLAVOR:L:Mno_gdbm)
+BUILD_DEPENDS+=         ::databases/gdbm
+SETUP_LOCAL+=           Setup.gdbm
+.  if !defined(NO_SHARED_LIBS) || ${NO_SHARED_LIBS:U} != YES
+MULTI_PACKAGES+=        -gdbm
+.  else
+LIB_DEPENDS+=           gdbm::databases/gdbm
+.  endif
+.endif
+
+.if defined(PACKAGING) && ${SUBPACKAGE} == "-gdbm"
+LIB_DEPENDS+=           gdbm::databases/gdbm
+.endif
+
+.if empty(FLAVOR:L:Mno_bsddb)
+BUILD_DEPENDS+=         ::databases/db
+SETUP_LOCAL+=           Setup.bsddb
+.  if !defined(NO_SHARED_LIBS) || ${NO_SHARED_LIBS:U} != YES
+MULTI_PACKAGES+=        -bsddb
+.  else
+LIB_DEPENDS+=           db::databases/db
+.  endif
+.endif
+
+.if defined(PACKAGING) && ${SUBPACKAGE} == "-bsddb"
+LIB_DEPENDS+=           db::databases/db
+.endif
+
+.if empty(FLAVOR:L:Mno_idle) && empty(FLAVOR:L:Mno_tkinter)
+.  if !defined(NO_SHARED_LIBS) || ${NO_SHARED_LIBS:U} != YES
+MULTI_PACKAGES+=        -idle
+.  endif
+.endif
+
+.if defined(PACKAGING) && ${SUBPACKAGE} == "-idle"
+RUN_DEPENDS+=           ::lang/python/${VERSION},-tkinter
+.endif
+
 # Strip off no_xxx flavors from the package name if we are not
 # building the "monster" Python for platforms without shared libraries.
 
 .if !defined(NO_SHARED_LIBS) || ${NO_SHARED_LIBS:U} != YES
-FULLPKGNAME=${PKGNAME}${FLAVOR_EXT:S/-no_mpz//:S/-no_tkinter//:S/-no_expat//}
+FULLPKGNAME=${PKGNAME}${FLAVOR_EXT:S/-no_bsddb//:S/no_expat//:S/-no_gdbm//:S/-no_idle//:S/-no_mpz//:S/-no_tkinter//}
 .endif
 
-FULLPKGNAME-tests=	python-tests-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
-FULLPKGNAME-tools=	python-tools-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+FULLPKGNAME-bsddb=	python-bsddb-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+FULLPKGNAME-expat=	python-expat-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+FULLPKGNAME-gdbm=	python-gdbm-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+FULLPKGNAME-idle=	python-idle-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
 FULLPKGNAME-mpz=	python-mpz-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+FULLPKGNAME-tests=	python-tests-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
 FULLPKGNAME-tkinter=	python-tkinter-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
-FULLPKGNAME-expat=	python-expat-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
+FULLPKGNAME-tools=	python-tools-${VERSION}${PATCHLEVEL}${PKG_PATCHLEVEL}
 
-CONFIGURE_STYLE= autoconf dest
-CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
-CONFIGURE_ARGS+= --with-fpectl --with-threads --without-pymalloc
+CONFIGURE_STYLE+=	autoconf
+CONFIGURE_ARGS+=	${CONFIGURE_SHARED}
+CONFIGURE_ARGS+=	--with-fpectl --with-threads --with-signal-module 
 
 REGRESS_TARGET=	test
 
@@ -137,7 +187,12 @@
 
 ALL_TARGET=	all ./Lib/plat-openbsd3
 
-patch:
+pre-extract:
+.if defined(NOTE)
+	@echo '**********************************************'
+	@echo 'NOTE: flavor no_tkinter implies flavor no_idle'
+	@echo '**********************************************'
+.endif
 
 post-configure:
 	@sed -e 's,@NOSHARED@,${NOSHARED},g' \
@@ -150,8 +205,11 @@
 	@cd ${WRKSRC} && ${MAKE_PROGRAM} Makefile
 
 post-install:
-	${INSTALL_SCRIPT} ${FILESDIR}/pydoc ${PREFIX}/bin/pydoc${VERSION}
-	@strip ${PREFIX}/bin/python
+	${INSTALL_SCRIPT} ${WRKSRC}/Tools/scripts/pydoc \
+		${PREFIX}/bin/pydoc${VERSION}
+	@sed -e 's,@VERSION@,${VERSION},g' -e 's,@LOCALBASE@,${LOCALBASE},g' \
+		${FILESDIR}/idle > ${WRKSRC}/idle
+	${INSTALL_SCRIPT} ${WRKSRC}/idle ${PREFIX}/bin/idle${VERSION}
 	@cd ${WRKSRC}; tar -cf - Tools | (cd ${PREFIX}/lib/python${VERSION}; \
 		tar -xf -)
 	${INSTALL_DATA} ${WRKSRC}/libpython${VERSION}.a \
@@ -162,4 +220,3 @@
 	${INSTALL_DATA_DIR} ${PREFIX}/share/doc/python${VERSION}
 	${INSTALL_DATA} ${FILESDIR}/CHANGES.OpenBSD \
 		${PREFIX}/share/doc/python${VERSION}/CHANGES.OpenBSD
-
diff python.orig/files/CVS/Entries python/files/CVS/Entries
--- python.orig/files/CVS/Entries	Thu Jan  1 01:00:00 1970
+++ python/files/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+D
diff python.orig/files/CVS/Repository python/files/CVS/Repository
--- python.orig/files/CVS/Repository	Thu Jan  1 01:00:00 1970
+++ python/files/CVS/Repository	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+ports/lang/python/files
diff python.orig/files/CVS/Root python/files/CVS/Root
--- python.orig/files/CVS/Root	Thu Jan  1 01:00:00 1970
+++ python/files/CVS/Root	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+:pserver:anoncvs@anoncvs.ca.openbsd.org:/cvs
diff python.orig/patches/CVS/Entries python/patches/CVS/Entries
--- python.orig/patches/CVS/Entries	Thu Jan  1 01:00:00 1970
+++ python/patches/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+D
diff python.orig/patches/CVS/Repository python/patches/CVS/Repository
--- python.orig/patches/CVS/Repository	Thu Jan  1 01:00:00 1970
+++ python/patches/CVS/Repository	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+ports/lang/python/patches
diff python.orig/patches/CVS/Root python/patches/CVS/Root
--- python.orig/patches/CVS/Root	Thu Jan  1 01:00:00 1970
+++ python/patches/CVS/Root	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+:pserver:anoncvs@anoncvs.ca.openbsd.org:/cvs
diff python.orig/pkg/CVS/Entries python/pkg/CVS/Entries
--- python.orig/pkg/CVS/Entries	Thu Jan  1 01:00:00 1970
+++ python/pkg/CVS/Entries	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+D
diff python.orig/pkg/CVS/Repository python/pkg/CVS/Repository
--- python.orig/pkg/CVS/Repository	Thu Jan  1 01:00:00 1970
+++ python/pkg/CVS/Repository	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+ports/lang/python/pkg
diff python.orig/pkg/CVS/Root python/pkg/CVS/Root
--- python.orig/pkg/CVS/Root	Thu Jan  1 01:00:00 1970
+++ python/pkg/CVS/Root	Fri Jul  4 19:14:13 2003
@@ -0,0 +1 @@
+:pserver:anoncvs@anoncvs.ca.openbsd.org:/cvs
diff python.orig/python.port.mk python/python.port.mk
--- python.orig/python.port.mk	Thu Jul 31 18:24:36 2003
+++ python/python.port.mk	Mon Jul 28 19:48:13 2003
@@ -1,7 +1,4 @@
-# $OpenBSD: python.port.mk,v 1.3 2003/07/31 07:01:21 jolan Exp $
-#
-#	python.port.mk - Xavier Santolaria <xavier@santolaria.net>
-#	This file is in the public domain.
+# $OpenBSD: python.port.mk,v 1.1 2003/07/28 17:48:13 sturm Exp $
 
 MODPY_VERSION?=		2.2
 
@@ -19,8 +16,7 @@
 MODPY_DISTUTILS_BUILD?=		build --build-base=${WRKSRC}
 MODPY_DISTUTILS_INSTALL?=	install --prefix=${PREFIX}
 
-MODPY_CMD=	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
-			${MODPY_BIN} ./${MODPY_SETUP}
+MODPY_CMD=	@cd ${WRKSRC} && ${MODPY_BIN} ./${MODPY_SETUP}
 
 SUBST_VARS+=	MODPY_VERSION
 
