python-2.3 => attic

This commit is contained in:
djm 2008-10-19 11:33:50 +00:00
parent c9d2aa3492
commit e21188af21
44 changed files with 0 additions and 3568 deletions

View File

@ -1,21 +0,0 @@
# $OpenBSD: Makefile,v 1.32 2008/10/18 11:55:57 djm Exp $
.if ${MACHINE_ARCH} == "hppa"
BROKEN= compiler hangs on py-Checker for example
.endif
VERSION= 2.3
PATCHLEVEL= .6
PKG_PATCHLEVEL= p6
SHARED_LIBS= python2.3 1.0
# needed for www/zope
THREAD_STACK_SIZE= 0x100000
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "sparc64"
PATCH_LIST= patch-* sup64-*
.endif
ALL_TARGET?= all ${WRKSRC}/Lib/plat-openbsd4
.include <bsd.port.mk>

View File

@ -1,5 +0,0 @@
MD5 (Python-2.3.6.tgz) = NXx5+ckUtnHJQB9whT6/Ow==
RMD160 (Python-2.3.6.tgz) = 7oqfRhN6uoly0i1dx88PYBrXXHs=
SHA1 (Python-2.3.6.tgz) = IOGAz6GqZ4corJvVT3PgZgrLv58=
SHA256 (Python-2.3.6.tgz) = 9emdWwB7sotvA1xVa9tfHctKcIE9LerxzHVEZemDalk=
SIZE (Python-2.3.6.tgz) = 8610359

View File

@ -1,22 +0,0 @@
$OpenBSD: CHANGES.OpenBSD,v 1.4 2007/06/26 16:50:18 martynas Exp $
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" in order to support multiple
versions of Python coexisting on the same system. The same
applies to the idle and pydoc binaries.
5. Regression tests have been taught about OpenBSD.
These changes are available in the OpenBSD CVS repository
<http://www.openbsd.org/anoncvs.html> in ports/lang/python.

View File

@ -1,4 +0,0 @@
#!/bin/sh
# $OpenBSD: idle,v 1.2 2004/12/30 23:45:08 alek Exp $
/usr/bin/env python@VERSION@ @LOCALBASE@/lib/python@VERSION@/idlelib/idle.py

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Lib_tempfile_py,v 1.1.1.1 2003/12/31 17:38:33 sturm Exp $
--- Lib/tempfile.py.orig 2003-12-31 12:11:59.000000000 +0100
+++ Lib/tempfile.py 2003-12-31 12:12:27.000000000 +0100
@@ -143,7 +143,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:

View File

@ -1,35 +0,0 @@
$OpenBSD: patch-Lib_test_regrtest_py,v 1.2 2006/11/01 20:02:06 alek Exp $
--- Lib/test/regrtest.py.orig Mon Jul 26 14:09:30 2004
+++ Lib/test/regrtest.py Sat Oct 21 13:56:30 2006
@@ -934,6 +934,31 @@ _expectations = {
test_winreg
test_winsound
""",
+ 'openbsd3':
+ """
+ test_aepack
+ test_al
+ test_cd
+ test_cl
+ test_dl
+ test_email_codecs
+ test_gl
+ test_imgfile
+ test_linuxaudiodev
+ test_locale
+ test_macfs
+ test_macostools
+ test_nis
+ test_normalization
+ test_ossaudiodev
+ test_pep277
+ test_plistlib
+ test_scriptpackages
+ test_sunaudiodev
+ test_unicode_file
+ test_winreg
+ test_winsound
+ """,
}
_expectations['freebsd5'] = _expectations['freebsd4']

View File

@ -1,19 +0,0 @@
$OpenBSD: patch-Lib_test_test_fcntl_py,v 1.2 2006/11/01 20:02:06 alek Exp $
--- Lib/test/test_fcntl.py.orig 2003-12-31 12:13:00.000000000 +0100
+++ Lib/test/test_fcntl.py 2003-12-31 12:14:14.000000000 +0100
@@ -22,9 +22,13 @@ if sys.platform.startswith('atheos'):
if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
- 'bsdos2', 'bsdos3', 'bsdos4',
- 'openbsd', 'openbsd2', 'openbsd3'):
+ 'bsdos2', 'bsdos3', 'bsdos4'):
lockdata = struct.pack('lxxxxlxxxxlhh', 0, 0, 0, fcntl.F_WRLCK, 0)
+elif sys.platform in ['openbsd', 'openbsd2', 'openbsd3', 'openbsd4']:
+ if sys.maxint == 2147483647:
+ lockdata = struct.pack('lxxxxlxxxxlhh', 0, 0, 0, fcntl.F_WRLCK, 0)
+ else:
+ lockdata = struct.pack('ixxxxixxxxihh', 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)
elif sys.platform in ['os2emx']:

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Lib_test_test_tempfile_py,v 1.1.1.1 2003/12/31 17:38:33 sturm Exp $
--- Lib/test/test_tempfile.py.orig 2003-05-01 19:45:51.000000000 +0200
+++ Lib/test/test_tempfile.py 2003-12-02 14:13:44.000000000 +0100
@@ -28,7 +28,7 @@ has_spawnl = hasattr(os, 'spawnl')
if sys.platform == 'mac':
TEST_FILES = 32
else:
- TEST_FILES = 100
+ TEST_FILES = 48
# This is organized as one test for each chunk of code in tempfile.py,
# in order of their appearance in the file. Testing which requires

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Lib_test_test_timeout_py,v 1.1 2004/08/05 21:50:25 xsa Exp $
--- Lib/test/test_timeout.py.orig Sun Jul 11 12:10:16 2004
+++ Lib/test/test_timeout.py Sun Jul 11 18:04:16 2004
@@ -108,7 +108,7 @@ class TimeoutTestCase(unittest.TestCase)
def testConnectTimeout(self):
# Test connect() timeout
- _timeout = 0.001
+ _timeout = 0.0001
self.sock.settimeout(_timeout)
_t1 = time.time()

View File

@ -1,68 +0,0 @@
$OpenBSD: patch-Makefile_pre_in,v 1.2 2005/12/27 19:41:21 alek Exp $
--- Makefile.pre.in.orig Tue Jan 11 14:48:52 2005
+++ Makefile.pre.in Sat Dec 24 11:18:58 2005
@@ -308,7 +308,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
@@ -357,6 +357,11 @@ libpython$(VERSION).so: $(LIBRARY_OBJS)
libpython$(VERSION).sl: $(LIBRARY_OBJS)
$(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
+# This rule for OpenBSD...
+$(LDLIBRARY): $(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.
@@ -587,7 +592,6 @@ bininstall: altbininstall
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)
@@ -598,7 +602,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"; \
@@ -607,14 +611,12 @@ altbininstall: $(BUILDPYTHON)
fi; \
done
$(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
- if test -f libpython$(VERSION)$(SO); then \
+ if test -f $(LDLIBRARY); then \
if test "$(SO)" = .dll; then \
$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
else \
- $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
- if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
- (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
- fi \
+ $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBPL)/$(LDLIBRARY); \
+ (cd $(DESTDIR)$(LIBDIR); $(LN) -s python$(VERSION)/config/$(LDLIBRARY)); \
fi; \
else true; \
fi
@@ -630,7 +632,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)

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-Modules__tkinter_c,v 1.1.1.1 2003/12/31 17:38:33 sturm Exp $
--- Modules/_tkinter.c.orig 2003-12-13 15:14:23.000000000 +0100
+++ Modules/_tkinter.c 2003-12-13 15:14:41.000000000 +0100
@@ -807,8 +807,8 @@ static PyObject *
PyTclObject_repr(PyTclObject *self)
{
char buf[50];
- PyOS_snprintf(buf, 50, "<%s object at 0x%.8x>",
- self->value->typePtr->name, (int)self->value);
+ PyOS_snprintf(buf, 50, "<%s object at 0x%.16lx>",
+ self->value->typePtr->name, (long)self->value);
return PyString_FromString(buf);
}

View File

@ -1,11 +0,0 @@
$OpenBSD: patch-Modules_makesetup,v 1.1 2004/04/18 12:13:58 sturm Exp $
--- Modules/makesetup.orig 2002-03-29 19:00:18.000000000 +0100
+++ Modules/makesetup 2004-04-10 22:41:55.000000000 +0200
@@ -164,6 +164,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
-rpath) libs="$libs $arg"; skip=libs;;
--rpath) libs="$libs $arg"; skip=libs;;
-[A-Zl]*) libs="$libs $arg";;
+ -pthread*) libs="$libs $arg";;
*.a) libs="$libs $arg";;
*.so) libs="$libs $arg";;
*.sl) libs="$libs $arg";;

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Modules_nismodule_c,v 1.1.1.1 2003/12/31 17:38:33 sturm Exp $
--- Modules/nismodule.c.orig 2002-11-05 00:20:47.000000000 +0100
+++ Modules/nismodule.c 2003-12-09 19:05:28.000000000 +0100
@@ -68,7 +68,7 @@ nis_mapname (char *map, int *pfix)
return map;
}
-typedef int (*foreachfunc)(int, char *, int, char *, int, char *);
+typedef int (*foreachfunc)(u_long, char *, int, char *, int, void *);
struct ypcallback_data {
PyObject *dict;

View File

@ -1,40 +0,0 @@
$OpenBSD: patch-Modules_socketmodule_c,v 1.3 2006/11/01 20:02:06 alek Exp $
--- Modules/socketmodule.c.orig Thu Dec 30 14:52:17 2004
+++ Modules/socketmodule.c Sat Oct 21 13:56:35 2006
@@ -63,9 +63,6 @@ Local naming conventions:
#include "Python.h"
-#undef MAX
-#define MAX(x, y) ((x) < (y) ? (y) : (x))
-
/* Socket object documentation */
PyDoc_STRVAR(sock_doc,
"socket([family[, type[, proto]]]) -> socket object\n\
@@ -2844,7 +2841,7 @@ Convert a 32-bit integer from network to
static PyObject *
socket_htons(PyObject *self, PyObject *args)
{
- unsigned long x1, x2;
+ int x1, x2;
if (!PyArg_ParseTuple(args, "i:htons", &x1)) {
return NULL;
@@ -2915,7 +2912,7 @@ socket_inet_aton(PyObject *self, PyObjec
struct in_addr buf;
#else
/* Have to use inet_addr() instead */
- unsigned long packed_addr;
+ int packed_addr;
#endif
char *ip_addr;
@@ -3046,7 +3043,7 @@ socket_inet_ntop(PyObject *self, PyObjec
#endif
/* Guarantee NUL-termination for PyString_FromString() below */
- memset((void *) &ip[0], '\0', sizeof(ip) + 1);
+ memset((void *) &ip[0], '\0', sizeof(ip));
if (!PyArg_ParseTuple(args, "is#:inet_ntop", &af, &packed, &len)) {
return NULL;

View File

@ -1,9 +0,0 @@
$OpenBSD: patch-Tools_scripts_pydoc,v 1.1.1.1 2003/12/31 17:38:33 sturm Exp $
--- 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()

View File

@ -1,44 +0,0 @@
$OpenBSD: patch-configure_in,v 1.11 2007/01/10 16:57:56 steven Exp $
--- configure.in.orig Tue Jan 11 14:49:00 2005
+++ configure.in Sat Oct 21 19:57:24 2006
@@ -140,7 +140,7 @@ case $ac_sys_system/$ac_sys_release in
# On OpenBSD, select(2) is not available if _XOPEN_SOURCE is defined,
# even though select is a POSIX function. Reported by J. Ribbens.
# Reconfirmed for OpenBSD 3.3 by Zachary Hamm, for 3.4 by Jason Ish.
- OpenBSD/2.* | OpenBSD/3.@<:@01234@:>@)
+ OpenBSD*)
define_xopen_source=no;;
# On Solaris 2.6, sys/wait.h is inconsistent in the usage
# of union __?sigval. Reported by Stuart Bishop.
@@ -1321,14 +1321,17 @@ 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;;
- NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
+ OpenBSD*)
+ LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
+ ;;
+ NetBSD*) LDSHARED="${CC} -shared ${LDFLAGS}";;
OpenUNIX*|UnixWare*)
if test "$GCC" = "yes"
then LDSHARED='$(CC) -shared'
@@ -1465,9 +1468,10 @@ AC_CHECK_LIB(dld, shl_load) # Dynamic li
# only check for sem_ini if thread support is requested
if test "$with_threads" = "yes" -o -z "$with_threads"; then
- AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
+# AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
# posix4 on Solaris 2.6
# pthread (first!) on Linux
+ LIBS="-pthread ${LIBS}"
fi
# check if we need libintl for locale functions

View File

@ -1,207 +0,0 @@
$OpenBSD: patch-setup_py,v 1.3 2007/04/28 10:06:24 bernd Exp $
--- setup.py.orig Mon Jan 17 22:07:52 2005
+++ setup.py Tue Apr 24 13:28:41 2007
@@ -476,97 +476,13 @@ class PyBuildExt(build_ext):
# NOTE: 3.1 is only partially supported; expect the extended bsddb module
# test suite to show failures due to some missing methods and behaviours
# in BerkeleyDB 3.1.
-
- # when sorted in reverse order, keys for this dict must appear in the
- # order you wish to search - e.g., search for db4 before db3
- db_try_this = {
- 'db4': {'libs': ('db-4.2', 'db42', 'db-4.1', 'db41', 'db-4.0', 'db4',),
- 'libdirs': ('/usr/local/BerkeleyDB.4.2/lib',
- '/usr/local/BerkeleyDB.4.1/lib',
- '/usr/local/BerkeleyDB.4.0/lib',
- '/usr/local/lib',
- '/opt/sfw',
- '/sw/lib',
- ),
- 'incdirs': ('/usr/local/BerkeleyDB.4.2/include',
- '/usr/local/include/db42',
- '/usr/local/BerkeleyDB.4.1/include',
- '/usr/local/include/db41',
- '/usr/local/BerkeleyDB.4.0/include',
- '/usr/local/include/db4',
- '/opt/sfw/include/db4',
- '/sw/include/db4',
- '/usr/include/db4',
- )},
- 'db3': {'libs': ('db-3.3', 'db-3.2', 'db-3.1', 'db3',),
- 'libdirs': ('/usr/local/BerkeleyDB.3.3/lib',
- '/usr/local/BerkeleyDB.3.2/lib',
- '/usr/local/BerkeleyDB.3.1/lib',
- '/usr/local/lib',
- '/opt/sfw/lib',
- '/sw/lib',
- ),
- 'incdirs': ('/usr/local/BerkeleyDB.3.3/include',
- '/usr/local/BerkeleyDB.3.2/include',
- '/usr/local/BerkeleyDB.3.1/include',
- '/usr/local/include/db3',
- '/opt/sfw/include/db3',
- '/sw/include/db3',
- '/usr/include/db3',
- )},
- }
-
- db_search_order = db_try_this.keys()
- db_search_order.sort()
- db_search_order.reverse()
-
- class found(Exception): pass
- try:
- # See whether there is a Sleepycat header in the standard
- # search path.
- std_dbinc = None
- for d in inc_dirs:
- f = os.path.join(d, "db.h")
- if os.path.exists(f):
- f = open(f).read()
- m = re.search(r"#define\WDB_VERSION_MAJOR\W([1-9]+)", f)
- if m:
- std_dbinc = 'db' + m.group(1)
- for dbkey in db_search_order:
- dbd = db_try_this[dbkey]
- for dblib in dbd['libs']:
- # Prefer version-specific includes over standard
- # include locations.
- db_incs = find_file('db.h', [], dbd['incdirs'])
- dblib_dir = find_library_file(self.compiler,
- dblib,
- lib_dirs,
- list(dbd['libdirs']))
- if (db_incs or dbkey == std_dbinc) and \
- dblib_dir is not None:
- dblibs = [dblib]
- raise found
- except found:
- dblibs = [dblib]
- # A default source build puts Berkeley DB in something like
- # /usr/local/Berkeley.3.3 and the lib dir under that isn't
- # normally on ld.so's search path, unless the sysadmin has hacked
- # /etc/ld.so.conf. We add the directory to runtime_library_dirs
- # so the proper -R/--rpath flags get passed to the linker. This
- # is usually correct and most trouble free, but may cause problems
- # in some unusual system configurations (e.g. the directory is on
- # an NFS server that goes away).
+ if !!USE_BSDDB!!:
exts.append(Extension('_bsddb', ['_bsddb.c'],
- library_dirs=dblib_dir,
- runtime_library_dirs=dblib_dir,
- include_dirs=db_incs,
- libraries=dblibs))
- else:
- db_incs = None
- dblibs = []
- dblib_dir = None
+ library_dirs=["!!LOCALBASE!!/lib/db4/"],
+ runtime_library_dirs=["!!LOCALBASE!!/lib/db4/"],
+ include_dirs=["!!LOCALBASE!!/include/db4"],
+ libraries=["db"]))
-
# Look for Berkeley db 1.85. Note that it is built as a different
# module name so it can be included even when later versions are
# available. A very restrictive search is performed to avoid
@@ -615,7 +531,7 @@ class PyBuildExt(build_ext):
libraries=dblibs))
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
- if (self.compiler.find_library_file(lib_dirs, 'gdbm')):
+ if !!USE_GDBM!!:
exts.append( Extension('gdbm', ['gdbmmodule.c'],
libraries = ['gdbm'] ) )
@@ -717,7 +633,7 @@ class PyBuildExt(build_ext):
libraries = ['z']) )
# Gustavo Niemeyer's bz2 module.
- if (self.compiler.find_library_file(lib_dirs, 'bz2')):
+ if !!USE_BZ2!!:
exts.append( Extension('bz2', ['bz2module.c'],
libraries = ['bz2']) )
@@ -732,31 +648,31 @@ class PyBuildExt(build_ext):
#
# More information on Expat can be found at www.libexpat.org.
#
- if sys.byteorder == "little":
- xmlbo = "1234"
- else:
- xmlbo = "4321"
- expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
- define_macros = [
- ('XML_NS', '1'),
- ('XML_DTD', '1'),
- ('BYTEORDER', xmlbo),
- ('XML_CONTEXT_BYTES','1024'),
- ]
- config_h = sysconfig.get_config_h_filename()
- config_h_vars = sysconfig.parse_config_h(open(config_h))
- for feature_macro in ['HAVE_MEMMOVE', 'HAVE_BCOPY']:
- if config_h_vars.has_key(feature_macro):
- define_macros.append((feature_macro, '1'))
- exts.append(Extension('pyexpat',
- define_macros = define_macros,
- include_dirs = [expatinc],
- sources = ['pyexpat.c',
- 'expat/xmlparse.c',
- 'expat/xmlrole.c',
- 'expat/xmltok.c',
- ],
- ))
+ if !!USE_EXPAT!!:
+ if sys.byteorder == "little":
+ xmlbo = "1234"
+ else:
+ xmlbo = "4321"
+ expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
+ define_macros = [
+ ('XML_NS', '1'),
+ ('XML_DTD', '1'),
+ ('BYTEORDER', xmlbo),
+ ('XML_CONTEXT_BYTES','1024'),
+ ]
+ config_h = sysconfig.get_config_h_filename()
+ config_h_vars = sysconfig.parse_config_h(open(config_h))
+ for feature_macro in ['HAVE_MEMMOVE', 'HAVE_BCOPY']:
+ if config_h_vars.has_key(feature_macro):
+ define_macros.append((feature_macro, '1'))
+ exts.append(Extension('pyexpat',
+ define_macros = define_macros,
+ include_dirs = ["!!X11BASE!!/include", expatinc],
+ library_dirs = ["!!X11BASE!!/lib"],
+ sources = ['pyexpat.c',
+ ],
+ libraries = ["expat"]
+ ))
# Dynamic loading module
if sys.maxint == 0x7fffffff:
@@ -879,7 +795,15 @@ class PyBuildExt(build_ext):
self.extensions.extend(exts)
# Call the method for detecting whether _tkinter can be compiled
- self.detect_tkinter(inc_dirs, lib_dirs)
+ if !!USE_TKINTER!!:
+ ext = Extension('_tkinter', ['_tkinter.c', 'tkappinit.c'],
+ define_macros=[('WITH_APPINIT', 1)],
+ include_dirs = ["!!LOCALBASE!!/include/tcl8.4",
+ "!!LOCALBASE!!/include/tk8.4",
+ "!!X11BASE!!/include"],
+ library_dirs = ["!!LOCALBASE!!/lib", "!!X11BASE!!/lib"], libraries = ["tk84", "tcl84", "X11"],
+ )
+ self.extensions.append(ext)
def detect_tkinter_darwin(self, inc_dirs, lib_dirs):
# The _tkinter module, using frameworks. Since frameworks are quite
@@ -1148,7 +1072,7 @@ def main():
ext_modules=[Extension('struct', ['structmodule.c'])],
# Scripts to install
- scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle']
+ scripts = []
)
# --install-platlib

View File

@ -1,12 +0,0 @@
--- Lib/test/regrtest.py.orig Sun Dec 14 12:14:04 2003
+++ Lib/test/regrtest.py Sun Dec 14 12:14:42 2003
@@ -936,6 +936,9 @@
""",
'openbsd3':
"""
+ test_audioop
+ test_rgbimg
+ test_imageop
test_aepack
test_al
test_cd

View File

@ -1,15 +0,0 @@
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.

View File

@ -1 +0,0 @@
This package contains bzip2 compression module.

View File

@ -1,14 +0,0 @@
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.

View File

@ -1,14 +0,0 @@
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.

View File

@ -1,15 +0,0 @@
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.

View File

@ -1,14 +0,0 @@
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.

View File

@ -1,24 +0,0 @@
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

View File

@ -1,15 +0,0 @@
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.

View File

@ -1,14 +0,0 @@
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.

View File

@ -1,15 +0,0 @@
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.

View File

@ -1,14 +0,0 @@
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.

View File

@ -1,3 +0,0 @@
If you want to use this package as your default system idle, as root
create symbolic links like so (overwriting any previous default):
ln -sf ${PREFIX}/bin/idle2.3 ${PREFIX}/bin/idle

View File

@ -1,4 +0,0 @@
If you want to use this package as your default system python, as root
create symbolic links like so (overwriting any previous default):
ln -sf ${PREFIX}/bin/python2.3 ${PREFIX}/bin/python
ln -sf ${PREFIX}/bin/pydoc2.3 ${PREFIX}/bin/pydoc

View File

@ -1,5 +0,0 @@
@comment $OpenBSD: PFRAG.mm-main,v 1.1 2006/11/24 20:48:23 steven Exp $
lib/python2.3/lib-dynload/audioop.so
lib/python2.3/lib-dynload/dl.so
lib/python2.3/lib-dynload/imageop.so
lib/python2.3/lib-dynload/rgbimg.so

View File

@ -1,4 +0,0 @@
@comment $OpenBSD: PLIST-bsddb,v 1.3 2004/09/18 12:52:55 espie Exp $
@option no-default-conflict
@conflict python-bsddb->=2.3,<2.4
lib/python2.3/lib-dynload/_bsddb.so

View File

@ -1,4 +0,0 @@
@comment $OpenBSD: PLIST-bz2,v 1.1 2006/11/01 20:02:06 alek Exp $
@option no-default-conflict
@conflict python-bz2->=2.3,<2.4
lib/python2.3/lib-dynload/bz2.so

View File

@ -1,4 +0,0 @@
@comment $OpenBSD: PLIST-expat,v 1.2 2004/09/18 10:11:57 espie Exp $
@option no-default-conflict
@conflict python-expat->=2.3,<2.4
lib/python2.3/lib-dynload/pyexpat.so

View File

@ -1,4 +0,0 @@
@comment $OpenBSD: PLIST-gdbm,v 1.3 2006/11/01 20:02:06 alek Exp $
@option no-default-conflict
@conflict python-gdbm->=2.3,<2.4
lib/python2.3/lib-dynload/gdbm.so

View File

@ -1,187 +0,0 @@
@comment $OpenBSD: PLIST-idle,v 1.3 2004/09/18 10:11:57 espie Exp $
@option no-default-conflict
@conflict python-idle->=2.3,<2.4
bin/idle2.3
lib/python2.3/idlelib/
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/
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

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +0,0 @@
@comment $OpenBSD: PLIST-mpz,v 1.3 2006/11/01 20:02:06 alek Exp $
@option no-default-conflict
@conflict python-mpz->=2.3,<2.4
lib/python2.3/lib-dynload/mpz.so

View File

@ -1,896 +0,0 @@
@comment $OpenBSD: PLIST-tests,v 1.3 2004/09/18 10:11:57 espie Exp $
@option no-default-conflict
@conflict python-tests->=2.3,<2.4
lib/python2.3/test/
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/
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_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

View File

@ -1,56 +0,0 @@
@comment $OpenBSD: PLIST-tkinter,v 1.5 2006/11/01 20:02:06 alek Exp $
@option no-default-conflict
@conflict python-tkinter->=2.3,<2.4
lib/python2.3/lib-dynload/_tkinter.so
lib/python2.3/lib-tk/
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

View File

@ -1,209 +0,0 @@
@comment $OpenBSD: PLIST-tools,v 1.4 2005/03/03 22:29:49 alek Exp $
@option no-default-conflict
@conflict python-tools->=2.3,<2.4
lib/python2.3/Tools/
lib/python2.3/Tools/README
lib/python2.3/Tools/audiopy/
lib/python2.3/Tools/audiopy/README
lib/python2.3/Tools/audiopy/audiopy
lib/python2.3/Tools/bgen/
lib/python2.3/Tools/bgen/README
lib/python2.3/Tools/bgen/bgen/
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/
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/
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/
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/
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/
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/
lib/python2.3/Tools/i18n/msgfmt.py
lib/python2.3/Tools/i18n/pygettext.py
lib/python2.3/Tools/modulator/
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/
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/
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/
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/
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
@comment 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/
lib/python2.3/Tools/unicode/makeunicodedata.py
lib/python2.3/Tools/unicode/mkstringprep.py
lib/python2.3/Tools/versioncheck/
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/
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/
lib/python2.3/Tools/world/README
lib/python2.3/Tools/world/world

View File

@ -1,2 +0,0 @@
Don't forget to remove ${PREFIX}/bin/idle
if it was a symlink to ${PREFIX}/bin/idle2.3.

View File

@ -1,3 +0,0 @@
Don't forget to remove ${PREFIX}/bin/python or/and
${PREFIX}/bin/pydoc if they were symlinks to
${PREFIX}/bin/python2.3 or to ${PREFIX}/bin/pydoc2.3.