From 413ba2dc4ae7fba5e14ff4c8b8c2951df08f4d05 Mon Sep 17 00:00:00 2001 From: djm Date: Sat, 18 Oct 2008 12:03:56 +0000 Subject: [PATCH] port of Python-2.6, with 100% fewer build knobs! Thanks to Ian Darwin, Will Maier and Aleksander Piotrowski for feedback --- lang/python/2.6/Makefile | 21 + lang/python/2.6/distinfo | 5 + lang/python/2.6/files/CHANGES.OpenBSD | 18 + lang/python/2.6/files/idle | 4 + .../patch-Lib_distutils_command_build_ext_py | 18 + lang/python/2.6/patches/patch-Lib_tempfile_py | 12 + .../2.6/patches/patch-Lib_test_regrtest_py | 20 + .../2.6/patches/patch-Lib_test_test_dl_py | 28 + .../2.6/patches/patch-Lib_test_test_fileio_py | 11 + .../2.6/patches/patch-Lib_test_test_kqueue_py | 13 + .../2.6/patches/patch-Lib_test_test_signal_py | 26 + .../2.6/patches/patch-Lib_test_test_sys_py | 19 + lang/python/2.6/patches/patch-Makefile_pre_in | 86 + ...Modules__multiprocessing_multiprocessing_h | 11 + .../2.6/patches/patch-Modules_makesetup | 11 + .../2.6/patches/patch-Modules_mathmodule_c | 12 + .../2.6/patches/patch-Modules_nismodule_c | 12 + .../2.6/patches/patch-Modules_ossaudiodev_c | 82 + .../2.6/patches/patch-Modules_pyexpat_c | 15 + .../2.6/patches/patch-Modules_socketmodule_c | 22 + .../2.6/patches/patch-Tools_scripts_pydoc | 9 + lang/python/2.6/patches/patch-configure_in | 53 + lang/python/2.6/patches/patch-setup_py | 148 ++ .../2.6/patches/sup64-Lib_test_regrtest_py | 11 + lang/python/2.6/pkg/DESCR-bsddb | 15 + lang/python/2.6/pkg/DESCR-bz2 | 1 + lang/python/2.6/pkg/DESCR-db | 14 + lang/python/2.6/pkg/DESCR-expat | 1 + lang/python/2.6/pkg/DESCR-gdbm | 15 + lang/python/2.6/pkg/DESCR-idle | 14 + lang/python/2.6/pkg/DESCR-main | 24 + lang/python/2.6/pkg/DESCR-sqlite | 15 + lang/python/2.6/pkg/DESCR-tests | 14 + lang/python/2.6/pkg/DESCR-tkinter | 15 + lang/python/2.6/pkg/DESCR-tools | 15 + lang/python/2.6/pkg/MESSAGE-idle | 3 + lang/python/2.6/pkg/MESSAGE-main | 5 + lang/python/2.6/pkg/MESSAGE-tools | 6 + lang/python/2.6/pkg/PFRAG.ctypes-main | 177 ++ lang/python/2.6/pkg/PFRAG.mm-main | 3 + lang/python/2.6/pkg/PLIST-bsddb | 93 + lang/python/2.6/pkg/PLIST-bz2 | 4 + lang/python/2.6/pkg/PLIST-gdbm | 4 + lang/python/2.6/pkg/PLIST-idle | 202 ++ lang/python/2.6/pkg/PLIST-main | 2061 +++++++++++++++++ lang/python/2.6/pkg/PLIST-tests | 1391 +++++++++++ lang/python/2.6/pkg/PLIST-tkinter | 56 + lang/python/2.6/pkg/PLIST-tools | 265 +++ lang/python/2.6/pkg/UNMESSAGE-idle | 2 + lang/python/2.6/pkg/UNMESSAGE-main | 5 + 50 files changed, 5087 insertions(+) create mode 100644 lang/python/2.6/Makefile create mode 100644 lang/python/2.6/distinfo create mode 100644 lang/python/2.6/files/CHANGES.OpenBSD create mode 100755 lang/python/2.6/files/idle create mode 100644 lang/python/2.6/patches/patch-Lib_distutils_command_build_ext_py create mode 100644 lang/python/2.6/patches/patch-Lib_tempfile_py create mode 100644 lang/python/2.6/patches/patch-Lib_test_regrtest_py create mode 100644 lang/python/2.6/patches/patch-Lib_test_test_dl_py create mode 100644 lang/python/2.6/patches/patch-Lib_test_test_fileio_py create mode 100644 lang/python/2.6/patches/patch-Lib_test_test_kqueue_py create mode 100644 lang/python/2.6/patches/patch-Lib_test_test_signal_py create mode 100644 lang/python/2.6/patches/patch-Lib_test_test_sys_py create mode 100644 lang/python/2.6/patches/patch-Makefile_pre_in create mode 100644 lang/python/2.6/patches/patch-Modules__multiprocessing_multiprocessing_h create mode 100644 lang/python/2.6/patches/patch-Modules_makesetup create mode 100644 lang/python/2.6/patches/patch-Modules_mathmodule_c create mode 100644 lang/python/2.6/patches/patch-Modules_nismodule_c create mode 100644 lang/python/2.6/patches/patch-Modules_ossaudiodev_c create mode 100644 lang/python/2.6/patches/patch-Modules_pyexpat_c create mode 100644 lang/python/2.6/patches/patch-Modules_socketmodule_c create mode 100644 lang/python/2.6/patches/patch-Tools_scripts_pydoc create mode 100644 lang/python/2.6/patches/patch-configure_in create mode 100644 lang/python/2.6/patches/patch-setup_py create mode 100644 lang/python/2.6/patches/sup64-Lib_test_regrtest_py create mode 100644 lang/python/2.6/pkg/DESCR-bsddb create mode 100644 lang/python/2.6/pkg/DESCR-bz2 create mode 100644 lang/python/2.6/pkg/DESCR-db create mode 100644 lang/python/2.6/pkg/DESCR-expat create mode 100644 lang/python/2.6/pkg/DESCR-gdbm create mode 100644 lang/python/2.6/pkg/DESCR-idle create mode 100644 lang/python/2.6/pkg/DESCR-main create mode 100644 lang/python/2.6/pkg/DESCR-sqlite create mode 100644 lang/python/2.6/pkg/DESCR-tests create mode 100644 lang/python/2.6/pkg/DESCR-tkinter create mode 100644 lang/python/2.6/pkg/DESCR-tools create mode 100644 lang/python/2.6/pkg/MESSAGE-idle create mode 100644 lang/python/2.6/pkg/MESSAGE-main create mode 100644 lang/python/2.6/pkg/MESSAGE-tools create mode 100644 lang/python/2.6/pkg/PFRAG.ctypes-main create mode 100644 lang/python/2.6/pkg/PFRAG.mm-main create mode 100644 lang/python/2.6/pkg/PLIST-bsddb create mode 100644 lang/python/2.6/pkg/PLIST-bz2 create mode 100644 lang/python/2.6/pkg/PLIST-gdbm create mode 100644 lang/python/2.6/pkg/PLIST-idle create mode 100644 lang/python/2.6/pkg/PLIST-main create mode 100644 lang/python/2.6/pkg/PLIST-tests create mode 100644 lang/python/2.6/pkg/PLIST-tkinter create mode 100644 lang/python/2.6/pkg/PLIST-tools create mode 100644 lang/python/2.6/pkg/UNMESSAGE-idle create mode 100644 lang/python/2.6/pkg/UNMESSAGE-main diff --git a/lang/python/2.6/Makefile b/lang/python/2.6/Makefile new file mode 100644 index 00000000000..4524e288b2e --- /dev/null +++ b/lang/python/2.6/Makefile @@ -0,0 +1,21 @@ +# $OpenBSD: Makefile,v 1.1 2008/10/18 12:03:56 djm Exp $ + +VERSION= 2.6 +#PATCHLEVEL= +#PSUBDIR= python/2.6 +#PKG_PATCHLEVEL= +SHARED_LIBS= python2.6 1.0 + +# PSUBDIR= python/${VERSION} + +.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "sparc64" +PATCH_LIST= patch-* sup64-* +.endif + +AUTOCONF_VERSION= 2.61 +CONFIGURE_ARGS+= --with-cxx_main + +post-extract: + rm -r ${WRKDIST}/Modules/expat + +.include diff --git a/lang/python/2.6/distinfo b/lang/python/2.6/distinfo new file mode 100644 index 00000000000..74b54fa6715 --- /dev/null +++ b/lang/python/2.6/distinfo @@ -0,0 +1,5 @@ +MD5 (Python-2.6.tgz) = 0W0pp32yzTr4gqWR9DGkAw== +RMD160 (Python-2.6.tgz) = tE1cx++hmLIfQeQ+HSivYIdfCk4= +SHA1 (Python-2.6.tgz) = 1/0IMEtmy0AgeGp+5apFIjUEbs0= +SHA256 (Python-2.6.tgz) = fC8hqWinN6We0HKfSx3BVNw6oYPCC+lgVRhv5DxnQtA= +SIZE (Python-2.6.tgz) = 13023860 diff --git a/lang/python/2.6/files/CHANGES.OpenBSD b/lang/python/2.6/files/CHANGES.OpenBSD new file mode 100644 index 00000000000..425c95a016a --- /dev/null +++ b/lang/python/2.6/files/CHANGES.OpenBSD @@ -0,0 +1,18 @@ +$OpenBSD: CHANGES.OpenBSD,v 1.1 2008/10/18 12:03:56 djm 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. Regression tests have been taught about OpenBSD. + +These changes are available in the OpenBSD CVS repository + in ports/lang/python. diff --git a/lang/python/2.6/files/idle b/lang/python/2.6/files/idle new file mode 100755 index 00000000000..a494e83f978 --- /dev/null +++ b/lang/python/2.6/files/idle @@ -0,0 +1,4 @@ +#!/bin/sh +# $OpenBSD: idle,v 1.1 2008/10/18 12:03:56 djm Exp $ + +/usr/bin/env python@VERSION@ @LOCALBASE@/lib/python@VERSION@/idlelib/idle.py diff --git a/lang/python/2.6/patches/patch-Lib_distutils_command_build_ext_py b/lang/python/2.6/patches/patch-Lib_distutils_command_build_ext_py new file mode 100644 index 00000000000..e2f8fbf466c --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_distutils_command_build_ext_py @@ -0,0 +1,18 @@ +$OpenBSD: patch-Lib_distutils_command_build_ext_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/distutils/command/build_ext.py.orig Sun Aug 17 14:16:04 2008 ++++ Lib/distutils/command/build_ext.py Mon Aug 25 07:43:08 2008 +@@ -758,13 +758,6 @@ class build_ext (Command): + return ext.libraries + + else: +- from distutils import sysconfig +- if sysconfig.get_config_var('Py_ENABLE_SHARED'): +- template = "python%d.%d" +- pythonlib = (template % +- (sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff)) +- return ext.libraries + [pythonlib] +- else: +- return ext.libraries ++ return ext.libraries + + # class build_ext diff --git a/lang/python/2.6/patches/patch-Lib_tempfile_py b/lang/python/2.6/patches/patch-Lib_tempfile_py new file mode 100644 index 00000000000..5532ab80486 --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_tempfile_py @@ -0,0 +1,12 @@ +$OpenBSD: patch-Lib_tempfile_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/tempfile.py.orig Mon May 12 21:24:33 2008 ++++ Lib/tempfile.py Mon Aug 25 07:43:08 2008 +@@ -155,7 +155,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 --git a/lang/python/2.6/patches/patch-Lib_test_regrtest_py b/lang/python/2.6/patches/patch-Lib_test_regrtest_py new file mode 100644 index 00000000000..a58298b84d5 --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_test_regrtest_py @@ -0,0 +1,20 @@ +$OpenBSD: patch-Lib_test_regrtest_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/test/regrtest.py.orig Sat Jul 19 00:26:35 2008 ++++ Lib/test/regrtest.py Sun Sep 28 05:12:36 2008 +@@ -1073,6 +1073,7 @@ _expectations = { + test_epoll + test_gdbm + test_locale ++ test_multiprocessing + test_normalization + test_ossaudiodev + test_pep277 +@@ -1098,6 +1099,8 @@ _expectations['freebsd5'] = _expectations['freebsd4'] + _expectations['freebsd6'] = _expectations['freebsd4'] + _expectations['freebsd7'] = _expectations['freebsd4'] + _expectations['freebsd8'] = _expectations['freebsd4'] ++ ++_expectations['openbsd4'] = _expectations['openbsd3'] + + class _ExpectedSkips: + def __init__(self): diff --git a/lang/python/2.6/patches/patch-Lib_test_test_dl_py b/lang/python/2.6/patches/patch-Lib_test_test_dl_py new file mode 100644 index 00000000000..7758a2657aa --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_test_test_dl_py @@ -0,0 +1,28 @@ +$OpenBSD: patch-Lib_test_test_dl_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/test/test_dl.py.orig Sun May 11 07:20:19 2008 ++++ Lib/test/test_dl.py Mon Aug 25 07:45:25 2008 +@@ -5,11 +5,20 @@ + from test.test_support import verbose,TestSkipped, import_module + dl = import_module('dl', deprecated=True) + ++import dircache ++libcNames = [] ++libcName = '' ++for file in dircache.listdir('/usr/lib/'): ++ if '/libc.so.' in file: ++ libcNames.append(file) ++# Pick the most recent (highest number) libc ++if len(libcNames) > 0: ++ libcName = sorted(libcNames)[-1] ++if not libcName: ++ raise TestSkipped ++ + sharedlibs = [ +- ('/usr/lib/libc.so', 'getpid'), +- ('/lib/libc.so.6', 'getpid'), +- ('/usr/bin/cygwin1.dll', 'getpid'), +- ('/usr/lib/libc.dylib', 'getpid'), ++ (libcName, 'getpid'), + ] + + def test_main(): diff --git a/lang/python/2.6/patches/patch-Lib_test_test_fileio_py b/lang/python/2.6/patches/patch-Lib_test_test_fileio_py new file mode 100644 index 00000000000..9b249219cf4 --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_test_test_fileio_py @@ -0,0 +1,11 @@ +$OpenBSD: patch-Lib_test_test_fileio_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/test/test_fileio.py.orig Tue Sep 2 00:13:43 2008 ++++ Lib/test/test_fileio.py Wed Sep 17 10:49:32 2008 +@@ -150,6 +150,7 @@ class OtherFileTests(unittest.TestCase): + self.assertEquals(f.writable(), True) + if sys.platform != "darwin" and \ + not sys.platform.startswith('freebsd') and \ ++ not sys.platform.startswith('openbsd') and \ + not sys.platform.startswith('sunos'): + # Somehow /dev/tty appears seekable on some BSDs + self.assertEquals(f.seekable(), False) diff --git a/lang/python/2.6/patches/patch-Lib_test_test_kqueue_py b/lang/python/2.6/patches/patch-Lib_test_test_kqueue_py new file mode 100644 index 00000000000..56781cf8946 --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_test_test_kqueue_py @@ -0,0 +1,13 @@ +$OpenBSD: patch-Lib_test_test_kqueue_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/test/test_kqueue.py.orig Tue Aug 26 08:52:34 2008 ++++ Lib/test/test_kqueue.py Tue Aug 26 08:52:39 2008 +@@ -85,7 +85,8 @@ class TestKQueue(unittest.TestCase): + pass # FreeBSD doesn't raise an exception here + server, addr = serverSocket.accept() + +- if sys.platform.startswith("darwin"): ++ if sys.platform.startswith("darwin") or \ ++ sys.platform.startswith("openbsd"): + flags = select.KQ_EV_ADD | select.KQ_EV_ENABLE + else: + flags = 0 diff --git a/lang/python/2.6/patches/patch-Lib_test_test_signal_py b/lang/python/2.6/patches/patch-Lib_test_test_signal_py new file mode 100644 index 00000000000..88dbc5adefc --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_test_test_signal_py @@ -0,0 +1,26 @@ +$OpenBSD: patch-Lib_test_test_signal_py,v 1.1 2008/10/18 12:03:56 djm Exp $ + +workarounds for breakage caused by libpthread + +--- Lib/test/test_signal.py.orig Mon Apr 7 09:04:28 2008 ++++ Lib/test/test_signal.py Sun Sep 28 05:09:28 2008 +@@ -291,6 +291,9 @@ class SiginterruptTest(unittest.TestCase): + self.assertEquals(i, True) + + def test_siginterrupt_off(self): ++ # XXX broken by libpthread's internal hooking of signals ++ return ++ + i=self.readpipe_interrupted(lambda: signal.siginterrupt(self.signum, 0)) + self.assertEquals(i, False) + +@@ -370,6 +373,9 @@ class ItimerTest(unittest.TestCase): + self.assertEquals(self.hndl_called, True) + + def test_itimer_prof(self): ++ # XXX broken by libpthread's internal use of SIGPROF ++ return ++ + self.itimer = signal.ITIMER_PROF + signal.signal(signal.SIGPROF, self.sig_prof) + signal.setitimer(self.itimer, 0.2, 0.2) diff --git a/lang/python/2.6/patches/patch-Lib_test_test_sys_py b/lang/python/2.6/patches/patch-Lib_test_test_sys_py new file mode 100644 index 00000000000..8c554b4525e --- /dev/null +++ b/lang/python/2.6/patches/patch-Lib_test_test_sys_py @@ -0,0 +1,19 @@ +$OpenBSD: patch-Lib_test_test_sys_py,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Lib/test/test_sys.py.orig Mon Jul 14 18:42:18 2008 ++++ Lib/test/test_sys.py Mon Aug 25 07:43:08 2008 +@@ -348,10 +348,11 @@ class SysModuleTest(unittest.TestCase): + self.assert_(vi[3] in ("alpha", "beta", "candidate", "final")) + self.assert_(isinstance(vi[4], int)) + +- def test_43581(self): +- # Can't use sys.stdout, as this is a cStringIO object when +- # the test runs under regrtest. +- self.assert_(sys.__stdout__.encoding == sys.__stderr__.encoding) ++ # This test is simply broken when run with a redirected stdout ++ #def test_43581(self): ++ # # Can't use sys.stdout, as this is a cStringIO object when ++ # # the test runs under regrtest. ++ # self.assert_(sys.__stdout__.encoding == sys.__stderr__.encoding) + + def test_sys_flags(self): + self.failUnless(sys.flags) diff --git a/lang/python/2.6/patches/patch-Makefile_pre_in b/lang/python/2.6/patches/patch-Makefile_pre_in new file mode 100644 index 00000000000..72b566ee35b --- /dev/null +++ b/lang/python/2.6/patches/patch-Makefile_pre_in @@ -0,0 +1,86 @@ +$OpenBSD: patch-Makefile_pre_in,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Makefile.pre.in.orig Sat Sep 6 08:59:17 2008 ++++ Makefile.pre.in Wed Sep 17 10:49:33 2008 +@@ -350,6 +350,8 @@ LIBRARY_OBJS= \ + ######################################################################### + # Rules + ++everything: all $(srcdir)/Lib/$(PLATDIR) ++ + # Default target + all: build_all + build_all: $(BUILDPYTHON) oldsharedmods sharedmods +@@ -386,6 +388,7 @@ $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRAR + $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \ + Modules/python.o \ + $(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 +@@ -421,6 +424,11 @@ libpython$(VERSION).so: $(LIBRARY_OBJS) + libpython$(VERSION).sl: $(LIBRARY_OBJS) + $(LDSHARED) $(LDFLAGS) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST) + ++# 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. +@@ -752,14 +760,13 @@ bininstall: altbininstall + then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \ + else true; \ + fi +- (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON)) + -rm -f $(DESTDIR)$(BINDIR)/python-config + (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config) + + # Install the interpreter with $(VERSION) affixed + # This goes into $(exec_prefix) + altbininstall: $(BUILDPYTHON) +- @for i in $(BINDIR) $(LIBDIR); \ ++ @for i in $(BINDIR) $(LIBDIR) $(LIBPL); \ + do \ + if test ! -d $(DESTDIR)$$i; then \ + echo "Creating directory $$i"; \ +@@ -768,14 +775,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 +@@ -791,7 +796,7 @@ maninstall: + fi; \ + done + $(INSTALL_DATA) $(srcdir)/Misc/python.man \ +- $(DESTDIR)$(MANDIR)/man1/python.1 ++ $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1 + + # Install the library + PLATDIR= plat-$(MACHDEP) +@@ -898,8 +903,8 @@ libinstall: build_all $(srcdir)/Lib/$(PLATDIR) + ./$(BUILDPYTHON) -Wi -t -c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()" + + # Create the PLATDIR source directory, if one wasn't distributed.. +-$(srcdir)/Lib/$(PLATDIR): +- mkdir $(srcdir)/Lib/$(PLATDIR) ++$(srcdir)/Lib/$(PLATDIR): $(BUILDPYTHON) ++ mkdir -p $(srcdir)/Lib/$(PLATDIR) + cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen + export PATH; PATH="`pwd`:$$PATH"; \ + export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \ diff --git a/lang/python/2.6/patches/patch-Modules__multiprocessing_multiprocessing_h b/lang/python/2.6/patches/patch-Modules__multiprocessing_multiprocessing_h new file mode 100644 index 00000000000..ec0fe0759df --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules__multiprocessing_multiprocessing_h @@ -0,0 +1,11 @@ +$OpenBSD: patch-Modules__multiprocessing_multiprocessing_h,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/_multiprocessing/multiprocessing.h.orig Sat Aug 23 08:53:09 2008 ++++ Modules/_multiprocessing/multiprocessing.h Sat Aug 23 08:53:35 2008 +@@ -21,6 +21,7 @@ + #else + # include /* O_CREAT and O_EXCL */ + # include ++# include /* struct iovec */ + # include /* htonl() and ntohl() */ + # if HAVE_SEM_OPEN + # include diff --git a/lang/python/2.6/patches/patch-Modules_makesetup b/lang/python/2.6/patches/patch-Modules_makesetup new file mode 100644 index 00000000000..4a0cdc8b621 --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules_makesetup @@ -0,0 +1,11 @@ +$OpenBSD: patch-Modules_makesetup,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/makesetup.orig Fri Mar 29 19:00:19 2002 ++++ Modules/makesetup Thu Oct 19 03:59:06 2006 +@@ -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";; diff --git a/lang/python/2.6/patches/patch-Modules_mathmodule_c b/lang/python/2.6/patches/patch-Modules_mathmodule_c new file mode 100644 index 00000000000..5a791bc7ef9 --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules_mathmodule_c @@ -0,0 +1,12 @@ +$OpenBSD: patch-Modules_mathmodule_c,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/mathmodule.c.orig Mon Aug 25 15:23:28 2008 ++++ Modules/mathmodule.c Mon Aug 25 15:25:09 2008 +@@ -183,7 +183,7 @@ math_1(PyObject *arg, double (*func) (double), int can + else + errno = 0; + } +- else if (Py_IS_INFINITY(r)) { ++ else if (errno != EDOM && Py_IS_INFINITY(r)) { + if (Py_IS_FINITE(x)) + errno = can_overflow ? ERANGE : EDOM; + else diff --git a/lang/python/2.6/patches/patch-Modules_nismodule_c b/lang/python/2.6/patches/patch-Modules_nismodule_c new file mode 100644 index 00000000000..b80082cdafe --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules_nismodule_c @@ -0,0 +1,12 @@ +$OpenBSD: patch-Modules_nismodule_c,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/nismodule.c.orig Tue Feb 28 03:46:16 2006 ++++ Modules/nismodule.c Mon Sep 18 06:31:10 2006 +@@ -89,7 +89,7 @@ nis_mapname (char *map, int *pfix) + return map; + } + +-#ifdef __APPLE__ ++#ifdef __OpenBSD__ + typedef int (*foreachfunc)(unsigned long, char *, int, char *, int, void *); + #else + typedef int (*foreachfunc)(int, char *, int, char *, int, char *); diff --git a/lang/python/2.6/patches/patch-Modules_ossaudiodev_c b/lang/python/2.6/patches/patch-Modules_ossaudiodev_c new file mode 100644 index 00000000000..dcae406d427 --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules_ossaudiodev_c @@ -0,0 +1,82 @@ +$OpenBSD: patch-Modules_ossaudiodev_c,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/ossaudiodev.c.orig Mon Jun 9 14:58:54 2008 ++++ Modules/ossaudiodev.c Mon Aug 25 08:48:37 2008 +@@ -30,7 +30,7 @@ + #endif + + #include +-#include ++#include + + #if defined(linux) + +@@ -1040,6 +1040,7 @@ initossaudiodev(void) + + /* Expose all the ioctl numbers for masochists who like to do this + stuff directly. */ ++#ifdef SNDCTL_COPR_HALT + _EXPORT_INT(m, SNDCTL_COPR_HALT); + _EXPORT_INT(m, SNDCTL_COPR_LOAD); + _EXPORT_INT(m, SNDCTL_COPR_RCODE); +@@ -1050,6 +1051,7 @@ initossaudiodev(void) + _EXPORT_INT(m, SNDCTL_COPR_SENDMSG); + _EXPORT_INT(m, SNDCTL_COPR_WCODE); + _EXPORT_INT(m, SNDCTL_COPR_WDATA); ++#endif + #ifdef SNDCTL_DSP_BIND_CHANNEL + _EXPORT_INT(m, SNDCTL_DSP_BIND_CHANNEL); + #endif +@@ -1092,18 +1094,25 @@ initossaudiodev(void) + _EXPORT_INT(m, SNDCTL_DSP_STEREO); + _EXPORT_INT(m, SNDCTL_DSP_SUBDIVIDE); + _EXPORT_INT(m, SNDCTL_DSP_SYNC); ++#ifdef SNDCTL_FM_4OP_ENABLE + _EXPORT_INT(m, SNDCTL_FM_4OP_ENABLE); + _EXPORT_INT(m, SNDCTL_FM_LOAD_INSTR); ++#endif ++#ifdef SNDCTL_MIDI_INFO + _EXPORT_INT(m, SNDCTL_MIDI_INFO); + _EXPORT_INT(m, SNDCTL_MIDI_MPUCMD); + _EXPORT_INT(m, SNDCTL_MIDI_MPUMODE); + _EXPORT_INT(m, SNDCTL_MIDI_PRETIME); ++#endif ++#ifdef SNDCTL_SEQ_CTRLRATE + _EXPORT_INT(m, SNDCTL_SEQ_CTRLRATE); + _EXPORT_INT(m, SNDCTL_SEQ_GETINCOUNT); + _EXPORT_INT(m, SNDCTL_SEQ_GETOUTCOUNT); ++#endif + #ifdef SNDCTL_SEQ_GETTIME + _EXPORT_INT(m, SNDCTL_SEQ_GETTIME); + #endif ++#ifdef SNDCTL_SEQ_NRMIDIS + _EXPORT_INT(m, SNDCTL_SEQ_NRMIDIS); + _EXPORT_INT(m, SNDCTL_SEQ_NRSYNTHS); + _EXPORT_INT(m, SNDCTL_SEQ_OUTOFBAND); +@@ -1114,17 +1123,21 @@ initossaudiodev(void) + _EXPORT_INT(m, SNDCTL_SEQ_SYNC); + _EXPORT_INT(m, SNDCTL_SEQ_TESTMIDI); + _EXPORT_INT(m, SNDCTL_SEQ_THRESHOLD); ++#endif + #ifdef SNDCTL_SYNTH_CONTROL + _EXPORT_INT(m, SNDCTL_SYNTH_CONTROL); + #endif + #ifdef SNDCTL_SYNTH_ID + _EXPORT_INT(m, SNDCTL_SYNTH_ID); + #endif ++#ifdef SNDCTL_SYNTH_INFO + _EXPORT_INT(m, SNDCTL_SYNTH_INFO); + _EXPORT_INT(m, SNDCTL_SYNTH_MEMAVL); ++#endif + #ifdef SNDCTL_SYNTH_REMOVESAMPLE + _EXPORT_INT(m, SNDCTL_SYNTH_REMOVESAMPLE); + #endif ++#ifdef SNDCTL_TMR_CONTINUE + _EXPORT_INT(m, SNDCTL_TMR_CONTINUE); + _EXPORT_INT(m, SNDCTL_TMR_METRONOME); + _EXPORT_INT(m, SNDCTL_TMR_SELECT); +@@ -1133,4 +1146,5 @@ initossaudiodev(void) + _EXPORT_INT(m, SNDCTL_TMR_STOP); + _EXPORT_INT(m, SNDCTL_TMR_TEMPO); + _EXPORT_INT(m, SNDCTL_TMR_TIMEBASE); ++#endif + } diff --git a/lang/python/2.6/patches/patch-Modules_pyexpat_c b/lang/python/2.6/patches/patch-Modules_pyexpat_c new file mode 100644 index 00000000000..0a5de6aeed4 --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules_pyexpat_c @@ -0,0 +1,15 @@ +$OpenBSD: patch-Modules_pyexpat_c,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/pyexpat.c.orig Tue Feb 19 14:21:13 2008 ++++ Modules/pyexpat.c Tue Feb 19 14:21:18 2008 +@@ -473,6 +473,11 @@ call_character_handler(xmlparseobject *self, const XML + noop_character_data_handler); + return -1; + } ++ if (!have_handler(self, CharacterData)) { ++ Py_DECREF(args); ++ flag_error(self); ++ return -1; ++ } + PyTuple_SET_ITEM(args, 0, temp); + /* temp is now a borrowed reference; consider it unused. */ + self->in_callback = 1; diff --git a/lang/python/2.6/patches/patch-Modules_socketmodule_c b/lang/python/2.6/patches/patch-Modules_socketmodule_c new file mode 100644 index 00000000000..9232000040b --- /dev/null +++ b/lang/python/2.6/patches/patch-Modules_socketmodule_c @@ -0,0 +1,22 @@ +$OpenBSD: patch-Modules_socketmodule_c,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Modules/socketmodule.c.orig Wed Aug 13 00:49:50 2008 ++++ Modules/socketmodule.c Mon Aug 25 07:43:08 2008 +@@ -93,9 +93,6 @@ Local naming conventions: + #include "Python.h" + #include "structmember.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\ +@@ -3742,7 +3739,7 @@ socket_inet_aton(PyObject *self, PyObject *args) + + #if !defined(HAVE_INET_ATON) || defined(USE_INET_ATON_WEAKLINK) + /* Have to use inet_addr() instead */ +- unsigned long packed_addr; ++ int packed_addr; + #endif + char *ip_addr; + diff --git a/lang/python/2.6/patches/patch-Tools_scripts_pydoc b/lang/python/2.6/patches/patch-Tools_scripts_pydoc new file mode 100644 index 00000000000..7e3bd335041 --- /dev/null +++ b/lang/python/2.6/patches/patch-Tools_scripts_pydoc @@ -0,0 +1,9 @@ +$OpenBSD: patch-Tools_scripts_pydoc,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- Tools/scripts/pydoc.orig Tue Aug 10 03:27:55 2004 ++++ Tools/scripts/pydoc Mon Sep 18 06:31:10 2006 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2.6 + + import pydoc + if __name__ == '__main__': diff --git a/lang/python/2.6/patches/patch-configure_in b/lang/python/2.6/patches/patch-configure_in new file mode 100644 index 00000000000..fda2b159d70 --- /dev/null +++ b/lang/python/2.6/patches/patch-configure_in @@ -0,0 +1,53 @@ +$OpenBSD: patch-configure_in,v 1.1 2008/10/18 12:03:56 djm Exp $ +--- configure.in.orig Mon Sep 8 05:18:16 2008 ++++ configure.in Wed Sep 17 10:56:06 2008 +@@ -251,7 +251,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.@<:@0123456789@:>@ | OpenBSD/4.@<:@0123@:>@) ++ OpenBSD/*) + define_xopen_source=no + # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is + # also defined. This can be overridden by defining _BSD_SOURCE +@@ -1674,27 +1674,13 @@ then + ;; + Linux*|GNU*|QNX*) LDSHARED='$(CC) -shared';; + BSD/OS*/4*) LDSHARED="gcc -shared";; +- FreeBSD*) ++ FreeBSD*|OpenBSD*) + if [[ "`$CC -dM -E - =2.6,<2.6 +lib/python2.6/bsddb/ +lib/python2.6/bsddb/__init__.py +lib/python2.6/bsddb/__init__.pyc +lib/python2.6/bsddb/__init__.pyo +lib/python2.6/bsddb/db.py +lib/python2.6/bsddb/db.pyc +lib/python2.6/bsddb/db.pyo +lib/python2.6/bsddb/dbobj.py +lib/python2.6/bsddb/dbobj.pyc +lib/python2.6/bsddb/dbobj.pyo +lib/python2.6/bsddb/dbrecio.py +lib/python2.6/bsddb/dbrecio.pyc +lib/python2.6/bsddb/dbrecio.pyo +lib/python2.6/bsddb/dbshelve.py +lib/python2.6/bsddb/dbshelve.pyc +lib/python2.6/bsddb/dbshelve.pyo +lib/python2.6/bsddb/dbtables.py +lib/python2.6/bsddb/dbtables.pyc +lib/python2.6/bsddb/dbtables.pyo +lib/python2.6/bsddb/dbutils.py +lib/python2.6/bsddb/dbutils.pyc +lib/python2.6/bsddb/dbutils.pyo +lib/python2.6/bsddb/test/ +lib/python2.6/bsddb/test/__init__.py +lib/python2.6/bsddb/test/__init__.pyc +lib/python2.6/bsddb/test/__init__.pyo +lib/python2.6/bsddb/test/test_all.py +lib/python2.6/bsddb/test/test_all.pyc +lib/python2.6/bsddb/test/test_all.pyo +lib/python2.6/bsddb/test/test_associate.py +lib/python2.6/bsddb/test/test_associate.pyc +lib/python2.6/bsddb/test/test_associate.pyo +lib/python2.6/bsddb/test/test_basics.py +lib/python2.6/bsddb/test/test_basics.pyc +lib/python2.6/bsddb/test/test_basics.pyo +lib/python2.6/bsddb/test/test_compare.py +lib/python2.6/bsddb/test/test_compare.pyc +lib/python2.6/bsddb/test/test_compare.pyo +lib/python2.6/bsddb/test/test_compat.py +lib/python2.6/bsddb/test/test_compat.pyc +lib/python2.6/bsddb/test/test_compat.pyo +lib/python2.6/bsddb/test/test_cursor_pget_bug.py +lib/python2.6/bsddb/test/test_cursor_pget_bug.pyc +lib/python2.6/bsddb/test/test_cursor_pget_bug.pyo +lib/python2.6/bsddb/test/test_dbobj.py +lib/python2.6/bsddb/test/test_dbobj.pyc +lib/python2.6/bsddb/test/test_dbobj.pyo +lib/python2.6/bsddb/test/test_dbshelve.py +lib/python2.6/bsddb/test/test_dbshelve.pyc +lib/python2.6/bsddb/test/test_dbshelve.pyo +lib/python2.6/bsddb/test/test_dbtables.py +lib/python2.6/bsddb/test/test_dbtables.pyc +lib/python2.6/bsddb/test/test_dbtables.pyo +lib/python2.6/bsddb/test/test_distributed_transactions.py +lib/python2.6/bsddb/test/test_distributed_transactions.pyc +lib/python2.6/bsddb/test/test_distributed_transactions.pyo +lib/python2.6/bsddb/test/test_early_close.py +lib/python2.6/bsddb/test/test_early_close.pyc +lib/python2.6/bsddb/test/test_early_close.pyo +lib/python2.6/bsddb/test/test_get_none.py +lib/python2.6/bsddb/test/test_get_none.pyc +lib/python2.6/bsddb/test/test_get_none.pyo +lib/python2.6/bsddb/test/test_join.py +lib/python2.6/bsddb/test/test_join.pyc +lib/python2.6/bsddb/test/test_join.pyo +lib/python2.6/bsddb/test/test_lock.py +lib/python2.6/bsddb/test/test_lock.pyc +lib/python2.6/bsddb/test/test_lock.pyo +lib/python2.6/bsddb/test/test_misc.py +lib/python2.6/bsddb/test/test_misc.pyc +lib/python2.6/bsddb/test/test_misc.pyo +lib/python2.6/bsddb/test/test_pickle.py +lib/python2.6/bsddb/test/test_pickle.pyc +lib/python2.6/bsddb/test/test_pickle.pyo +lib/python2.6/bsddb/test/test_queue.py +lib/python2.6/bsddb/test/test_queue.pyc +lib/python2.6/bsddb/test/test_queue.pyo +lib/python2.6/bsddb/test/test_recno.py +lib/python2.6/bsddb/test/test_recno.pyc +lib/python2.6/bsddb/test/test_recno.pyo +lib/python2.6/bsddb/test/test_replication.py +lib/python2.6/bsddb/test/test_replication.pyc +lib/python2.6/bsddb/test/test_replication.pyo +lib/python2.6/bsddb/test/test_sequence.py +lib/python2.6/bsddb/test/test_sequence.pyc +lib/python2.6/bsddb/test/test_sequence.pyo +lib/python2.6/bsddb/test/test_thread.py +lib/python2.6/bsddb/test/test_thread.pyc +lib/python2.6/bsddb/test/test_thread.pyo +lib/python2.6/lib-dynload/_bsddb.so diff --git a/lang/python/2.6/pkg/PLIST-bz2 b/lang/python/2.6/pkg/PLIST-bz2 new file mode 100644 index 00000000000..ac5e76429e1 --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-bz2 @@ -0,0 +1,4 @@ +@comment $OpenBSD: PLIST-bz2,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python-bz2->=2.6,<2.6 +lib/python2.6/lib-dynload/bz2.so diff --git a/lang/python/2.6/pkg/PLIST-gdbm b/lang/python/2.6/pkg/PLIST-gdbm new file mode 100644 index 00000000000..dc155f4d20b --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-gdbm @@ -0,0 +1,4 @@ +@comment $OpenBSD: PLIST-gdbm,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python-gdbm->=2.6,<2.6 +lib/python2.6/lib-dynload/gdbm.so diff --git a/lang/python/2.6/pkg/PLIST-idle b/lang/python/2.6/pkg/PLIST-idle new file mode 100644 index 00000000000..c15ff89d62c --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-idle @@ -0,0 +1,202 @@ +@comment $OpenBSD: PLIST-idle,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python-idle->=2.6,<2.6 +@comment bin/idle +bin/idle2.6 +lib/python2.6/idlelib/ +lib/python2.6/idlelib/AutoComplete.py +lib/python2.6/idlelib/AutoComplete.pyc +lib/python2.6/idlelib/AutoComplete.pyo +lib/python2.6/idlelib/AutoCompleteWindow.py +lib/python2.6/idlelib/AutoCompleteWindow.pyc +lib/python2.6/idlelib/AutoCompleteWindow.pyo +lib/python2.6/idlelib/AutoExpand.py +lib/python2.6/idlelib/AutoExpand.pyc +lib/python2.6/idlelib/AutoExpand.pyo +lib/python2.6/idlelib/Bindings.py +lib/python2.6/idlelib/Bindings.pyc +lib/python2.6/idlelib/Bindings.pyo +lib/python2.6/idlelib/CREDITS.txt +lib/python2.6/idlelib/CallTipWindow.py +lib/python2.6/idlelib/CallTipWindow.pyc +lib/python2.6/idlelib/CallTipWindow.pyo +lib/python2.6/idlelib/CallTips.py +lib/python2.6/idlelib/CallTips.pyc +lib/python2.6/idlelib/CallTips.pyo +lib/python2.6/idlelib/ChangeLog +lib/python2.6/idlelib/ClassBrowser.py +lib/python2.6/idlelib/ClassBrowser.pyc +lib/python2.6/idlelib/ClassBrowser.pyo +lib/python2.6/idlelib/CodeContext.py +lib/python2.6/idlelib/CodeContext.pyc +lib/python2.6/idlelib/CodeContext.pyo +lib/python2.6/idlelib/ColorDelegator.py +lib/python2.6/idlelib/ColorDelegator.pyc +lib/python2.6/idlelib/ColorDelegator.pyo +lib/python2.6/idlelib/Debugger.py +lib/python2.6/idlelib/Debugger.pyc +lib/python2.6/idlelib/Debugger.pyo +lib/python2.6/idlelib/Delegator.py +lib/python2.6/idlelib/Delegator.pyc +lib/python2.6/idlelib/Delegator.pyo +lib/python2.6/idlelib/EditorWindow.py +lib/python2.6/idlelib/EditorWindow.pyc +lib/python2.6/idlelib/EditorWindow.pyo +lib/python2.6/idlelib/FileList.py +lib/python2.6/idlelib/FileList.pyc +lib/python2.6/idlelib/FileList.pyo +lib/python2.6/idlelib/FormatParagraph.py +lib/python2.6/idlelib/FormatParagraph.pyc +lib/python2.6/idlelib/FormatParagraph.pyo +lib/python2.6/idlelib/GrepDialog.py +lib/python2.6/idlelib/GrepDialog.pyc +lib/python2.6/idlelib/GrepDialog.pyo +lib/python2.6/idlelib/HISTORY.txt +lib/python2.6/idlelib/HyperParser.py +lib/python2.6/idlelib/HyperParser.pyc +lib/python2.6/idlelib/HyperParser.pyo +lib/python2.6/idlelib/IOBinding.py +lib/python2.6/idlelib/IOBinding.pyc +lib/python2.6/idlelib/IOBinding.pyo +lib/python2.6/idlelib/Icons/ +lib/python2.6/idlelib/Icons/folder.gif +lib/python2.6/idlelib/Icons/idle.icns +lib/python2.6/idlelib/Icons/minusnode.gif +lib/python2.6/idlelib/Icons/openfolder.gif +lib/python2.6/idlelib/Icons/plusnode.gif +lib/python2.6/idlelib/Icons/python.gif +lib/python2.6/idlelib/Icons/tk.gif +lib/python2.6/idlelib/IdleHistory.py +lib/python2.6/idlelib/IdleHistory.pyc +lib/python2.6/idlelib/IdleHistory.pyo +lib/python2.6/idlelib/MultiCall.py +lib/python2.6/idlelib/MultiCall.pyc +lib/python2.6/idlelib/MultiCall.pyo +lib/python2.6/idlelib/MultiStatusBar.py +lib/python2.6/idlelib/MultiStatusBar.pyc +lib/python2.6/idlelib/MultiStatusBar.pyo +lib/python2.6/idlelib/NEWS.txt +lib/python2.6/idlelib/ObjectBrowser.py +lib/python2.6/idlelib/ObjectBrowser.pyc +lib/python2.6/idlelib/ObjectBrowser.pyo +lib/python2.6/idlelib/OutputWindow.py +lib/python2.6/idlelib/OutputWindow.pyc +lib/python2.6/idlelib/OutputWindow.pyo +lib/python2.6/idlelib/ParenMatch.py +lib/python2.6/idlelib/ParenMatch.pyc +lib/python2.6/idlelib/ParenMatch.pyo +lib/python2.6/idlelib/PathBrowser.py +lib/python2.6/idlelib/PathBrowser.pyc +lib/python2.6/idlelib/PathBrowser.pyo +lib/python2.6/idlelib/Percolator.py +lib/python2.6/idlelib/Percolator.pyc +lib/python2.6/idlelib/Percolator.pyo +lib/python2.6/idlelib/PyParse.py +lib/python2.6/idlelib/PyParse.pyc +lib/python2.6/idlelib/PyParse.pyo +lib/python2.6/idlelib/PyShell.py +lib/python2.6/idlelib/PyShell.pyc +lib/python2.6/idlelib/PyShell.pyo +lib/python2.6/idlelib/README.txt +lib/python2.6/idlelib/RemoteDebugger.py +lib/python2.6/idlelib/RemoteDebugger.pyc +lib/python2.6/idlelib/RemoteDebugger.pyo +lib/python2.6/idlelib/RemoteObjectBrowser.py +lib/python2.6/idlelib/RemoteObjectBrowser.pyc +lib/python2.6/idlelib/RemoteObjectBrowser.pyo +lib/python2.6/idlelib/ReplaceDialog.py +lib/python2.6/idlelib/ReplaceDialog.pyc +lib/python2.6/idlelib/ReplaceDialog.pyo +lib/python2.6/idlelib/ScriptBinding.py +lib/python2.6/idlelib/ScriptBinding.pyc +lib/python2.6/idlelib/ScriptBinding.pyo +lib/python2.6/idlelib/ScrolledList.py +lib/python2.6/idlelib/ScrolledList.pyc +lib/python2.6/idlelib/ScrolledList.pyo +lib/python2.6/idlelib/SearchDialog.py +lib/python2.6/idlelib/SearchDialog.pyc +lib/python2.6/idlelib/SearchDialog.pyo +lib/python2.6/idlelib/SearchDialogBase.py +lib/python2.6/idlelib/SearchDialogBase.pyc +lib/python2.6/idlelib/SearchDialogBase.pyo +lib/python2.6/idlelib/SearchEngine.py +lib/python2.6/idlelib/SearchEngine.pyc +lib/python2.6/idlelib/SearchEngine.pyo +lib/python2.6/idlelib/StackViewer.py +lib/python2.6/idlelib/StackViewer.pyc +lib/python2.6/idlelib/StackViewer.pyo +lib/python2.6/idlelib/TODO.txt +lib/python2.6/idlelib/ToolTip.py +lib/python2.6/idlelib/ToolTip.pyc +lib/python2.6/idlelib/ToolTip.pyo +lib/python2.6/idlelib/TreeWidget.py +lib/python2.6/idlelib/TreeWidget.pyc +lib/python2.6/idlelib/TreeWidget.pyo +lib/python2.6/idlelib/UndoDelegator.py +lib/python2.6/idlelib/UndoDelegator.pyc +lib/python2.6/idlelib/UndoDelegator.pyo +lib/python2.6/idlelib/WidgetRedirector.py +lib/python2.6/idlelib/WidgetRedirector.pyc +lib/python2.6/idlelib/WidgetRedirector.pyo +lib/python2.6/idlelib/WindowList.py +lib/python2.6/idlelib/WindowList.pyc +lib/python2.6/idlelib/WindowList.pyo +lib/python2.6/idlelib/ZoomHeight.py +lib/python2.6/idlelib/ZoomHeight.pyc +lib/python2.6/idlelib/ZoomHeight.pyo +lib/python2.6/idlelib/__init__.py +lib/python2.6/idlelib/__init__.pyc +lib/python2.6/idlelib/__init__.pyo +lib/python2.6/idlelib/aboutDialog.py +lib/python2.6/idlelib/aboutDialog.pyc +lib/python2.6/idlelib/aboutDialog.pyo +lib/python2.6/idlelib/config-extensions.def +lib/python2.6/idlelib/config-highlight.def +lib/python2.6/idlelib/config-keys.def +lib/python2.6/idlelib/config-main.def +lib/python2.6/idlelib/configDialog.py +lib/python2.6/idlelib/configDialog.pyc +lib/python2.6/idlelib/configDialog.pyo +lib/python2.6/idlelib/configHandler.py +lib/python2.6/idlelib/configHandler.pyc +lib/python2.6/idlelib/configHandler.pyo +lib/python2.6/idlelib/configHelpSourceEdit.py +lib/python2.6/idlelib/configHelpSourceEdit.pyc +lib/python2.6/idlelib/configHelpSourceEdit.pyo +lib/python2.6/idlelib/configSectionNameDialog.py +lib/python2.6/idlelib/configSectionNameDialog.pyc +lib/python2.6/idlelib/configSectionNameDialog.pyo +lib/python2.6/idlelib/dynOptionMenuWidget.py +lib/python2.6/idlelib/dynOptionMenuWidget.pyc +lib/python2.6/idlelib/dynOptionMenuWidget.pyo +lib/python2.6/idlelib/extend.txt +lib/python2.6/idlelib/help.txt +lib/python2.6/idlelib/idle.bat +lib/python2.6/idlelib/idle.py +lib/python2.6/idlelib/idle.pyc +lib/python2.6/idlelib/idle.pyo +lib/python2.6/idlelib/idle.pyw +lib/python2.6/idlelib/idlever.py +lib/python2.6/idlelib/idlever.pyc +lib/python2.6/idlelib/idlever.pyo +lib/python2.6/idlelib/keybindingDialog.py +lib/python2.6/idlelib/keybindingDialog.pyc +lib/python2.6/idlelib/keybindingDialog.pyo +lib/python2.6/idlelib/macosxSupport.py +lib/python2.6/idlelib/macosxSupport.pyc +lib/python2.6/idlelib/macosxSupport.pyo +lib/python2.6/idlelib/rpc.py +lib/python2.6/idlelib/rpc.pyc +lib/python2.6/idlelib/rpc.pyo +lib/python2.6/idlelib/run.py +lib/python2.6/idlelib/run.pyc +lib/python2.6/idlelib/run.pyo +lib/python2.6/idlelib/tabbedpages.py +lib/python2.6/idlelib/tabbedpages.pyc +lib/python2.6/idlelib/tabbedpages.pyo +lib/python2.6/idlelib/testcode.py +lib/python2.6/idlelib/testcode.pyc +lib/python2.6/idlelib/testcode.pyo +lib/python2.6/idlelib/textView.py +lib/python2.6/idlelib/textView.pyc +lib/python2.6/idlelib/textView.pyo diff --git a/lang/python/2.6/pkg/PLIST-main b/lang/python/2.6/pkg/PLIST-main new file mode 100644 index 00000000000..9bb48e37fad --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-main @@ -0,0 +1,2061 @@ +@comment $OpenBSD: PLIST-main,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python->=2.6,<2.6 +@pkgpath lang/python/2.6 +bin/2to3 +@comment bin/pydoc +bin/pydoc2.6 +@comment bin/python-config +@bin bin/python2.6 +bin/python2.6-config +include/python2.6/ +include/python2.6/Python-ast.h +include/python2.6/Python.h +include/python2.6/abstract.h +include/python2.6/asdl.h +include/python2.6/ast.h +include/python2.6/bitset.h +include/python2.6/boolobject.h +include/python2.6/bufferobject.h +include/python2.6/bytearrayobject.h +include/python2.6/bytes_methods.h +include/python2.6/bytesobject.h +include/python2.6/cStringIO.h +include/python2.6/cellobject.h +include/python2.6/ceval.h +include/python2.6/classobject.h +include/python2.6/cobject.h +include/python2.6/code.h +include/python2.6/codecs.h +include/python2.6/compile.h +include/python2.6/complexobject.h +include/python2.6/datetime.h +include/python2.6/descrobject.h +include/python2.6/dictobject.h +include/python2.6/enumobject.h +include/python2.6/errcode.h +include/python2.6/eval.h +include/python2.6/fileobject.h +include/python2.6/floatobject.h +include/python2.6/frameobject.h +include/python2.6/funcobject.h +include/python2.6/genobject.h +include/python2.6/graminit.h +include/python2.6/grammar.h +include/python2.6/import.h +include/python2.6/intobject.h +include/python2.6/intrcheck.h +include/python2.6/iterobject.h +include/python2.6/listobject.h +include/python2.6/longintrepr.h +include/python2.6/longobject.h +include/python2.6/marshal.h +include/python2.6/metagrammar.h +include/python2.6/methodobject.h +include/python2.6/modsupport.h +include/python2.6/moduleobject.h +include/python2.6/node.h +include/python2.6/object.h +include/python2.6/objimpl.h +include/python2.6/opcode.h +include/python2.6/osdefs.h +include/python2.6/parsetok.h +include/python2.6/patchlevel.h +include/python2.6/pgen.h +include/python2.6/pgenheaders.h +include/python2.6/py_curses.h +include/python2.6/pyarena.h +include/python2.6/pyconfig.h +include/python2.6/pydebug.h +include/python2.6/pyerrors.h +include/python2.6/pyexpat.h +include/python2.6/pyfpe.h +include/python2.6/pygetopt.h +include/python2.6/pymacconfig.h +include/python2.6/pymactoolbox.h +include/python2.6/pymath.h +include/python2.6/pymem.h +include/python2.6/pyport.h +include/python2.6/pystate.h +include/python2.6/pystrcmp.h +include/python2.6/pystrtod.h +include/python2.6/pythonrun.h +include/python2.6/pythread.h +include/python2.6/rangeobject.h +include/python2.6/setobject.h +include/python2.6/sliceobject.h +include/python2.6/stringobject.h +include/python2.6/structmember.h +include/python2.6/structseq.h +include/python2.6/symtable.h +include/python2.6/sysmodule.h +include/python2.6/timefuncs.h +include/python2.6/token.h +include/python2.6/traceback.h +include/python2.6/tupleobject.h +include/python2.6/ucnhash.h +include/python2.6/unicodeobject.h +include/python2.6/warnings.h +include/python2.6/weakrefobject.h +@lib lib/libpython2.6.so.${LIBpython2.6_VERSION} +lib/python2.6/ +lib/python2.6/BaseHTTPServer.py +lib/python2.6/BaseHTTPServer.pyc +lib/python2.6/BaseHTTPServer.pyo +lib/python2.6/Bastion.py +lib/python2.6/Bastion.pyc +lib/python2.6/Bastion.pyo +lib/python2.6/CGIHTTPServer.py +lib/python2.6/CGIHTTPServer.pyc +lib/python2.6/CGIHTTPServer.pyo +lib/python2.6/ConfigParser.py +lib/python2.6/ConfigParser.pyc +lib/python2.6/ConfigParser.pyo +lib/python2.6/Cookie.py +lib/python2.6/Cookie.pyc +lib/python2.6/Cookie.pyo +lib/python2.6/DocXMLRPCServer.py +lib/python2.6/DocXMLRPCServer.pyc +lib/python2.6/DocXMLRPCServer.pyo +lib/python2.6/HTMLParser.py +lib/python2.6/HTMLParser.pyc +lib/python2.6/HTMLParser.pyo +lib/python2.6/LICENSE.txt +lib/python2.6/MimeWriter.py +lib/python2.6/MimeWriter.pyc +lib/python2.6/MimeWriter.pyo +lib/python2.6/Queue.py +lib/python2.6/Queue.pyc +lib/python2.6/Queue.pyo +lib/python2.6/SimpleHTTPServer.py +lib/python2.6/SimpleHTTPServer.pyc +lib/python2.6/SimpleHTTPServer.pyo +lib/python2.6/SimpleXMLRPCServer.py +lib/python2.6/SimpleXMLRPCServer.pyc +lib/python2.6/SimpleXMLRPCServer.pyo +lib/python2.6/SocketServer.py +lib/python2.6/SocketServer.pyc +lib/python2.6/SocketServer.pyo +lib/python2.6/StringIO.py +lib/python2.6/StringIO.pyc +lib/python2.6/StringIO.pyo +lib/python2.6/Tools/buildbot/README.tcltk-AMD64 +lib/python2.6/Tools/buildbot/build-amd64.bat +lib/python2.6/Tools/buildbot/clean-amd64.bat +lib/python2.6/Tools/buildbot/external-amd64.bat +lib/python2.6/Tools/buildbot/external-common.bat +lib/python2.6/Tools/buildbot/test-amd64.bat +lib/python2.6/Tools/msi/crtlicense.txt +lib/python2.6/Tools/msi/merge.py +lib/python2.6/Tools/pybench/With.py +lib/python2.6/Tools/scripts/2to3 +lib/python2.6/Tools/scripts/patchcheck.py +lib/python2.6/Tools/scripts/win_add2path.py +lib/python2.6/Tools/ssl/ +lib/python2.6/Tools/ssl/get-remote-certificate.py +lib/python2.6/UserDict.py +lib/python2.6/UserDict.pyc +lib/python2.6/UserDict.pyo +lib/python2.6/UserList.py +lib/python2.6/UserList.pyc +lib/python2.6/UserList.pyo +lib/python2.6/UserString.py +lib/python2.6/UserString.pyc +lib/python2.6/UserString.pyo +lib/python2.6/_LWPCookieJar.py +lib/python2.6/_LWPCookieJar.pyc +lib/python2.6/_LWPCookieJar.pyo +lib/python2.6/_MozillaCookieJar.py +lib/python2.6/_MozillaCookieJar.pyc +lib/python2.6/_MozillaCookieJar.pyo +lib/python2.6/__future__.py +lib/python2.6/__future__.pyc +lib/python2.6/__future__.pyo +lib/python2.6/__phello__.foo.py +lib/python2.6/__phello__.foo.pyc +lib/python2.6/__phello__.foo.pyo +lib/python2.6/_abcoll.py +lib/python2.6/_abcoll.pyc +lib/python2.6/_abcoll.pyo +lib/python2.6/_strptime.py +lib/python2.6/_strptime.pyc +lib/python2.6/_strptime.pyo +lib/python2.6/_threading_local.py +lib/python2.6/_threading_local.pyc +lib/python2.6/_threading_local.pyo +lib/python2.6/abc.py +lib/python2.6/abc.pyc +lib/python2.6/abc.pyo +lib/python2.6/aifc.py +lib/python2.6/aifc.pyc +lib/python2.6/aifc.pyo +lib/python2.6/anydbm.py +lib/python2.6/anydbm.pyc +lib/python2.6/anydbm.pyo +lib/python2.6/ast.py +lib/python2.6/ast.pyc +lib/python2.6/ast.pyo +lib/python2.6/asynchat.py +lib/python2.6/asynchat.pyc +lib/python2.6/asynchat.pyo +lib/python2.6/asyncore.py +lib/python2.6/asyncore.pyc +lib/python2.6/asyncore.pyo +lib/python2.6/atexit.py +lib/python2.6/atexit.pyc +lib/python2.6/atexit.pyo +lib/python2.6/audiodev.py +lib/python2.6/audiodev.pyc +lib/python2.6/audiodev.pyo +lib/python2.6/base64.py +lib/python2.6/base64.pyc +lib/python2.6/base64.pyo +lib/python2.6/bdb.py +lib/python2.6/bdb.pyc +lib/python2.6/bdb.pyo +lib/python2.6/binhex.py +lib/python2.6/binhex.pyc +lib/python2.6/binhex.pyo +lib/python2.6/bisect.py +lib/python2.6/bisect.pyc +lib/python2.6/bisect.pyo +lib/python2.6/cProfile.py +lib/python2.6/cProfile.pyc +lib/python2.6/cProfile.pyo +lib/python2.6/calendar.py +lib/python2.6/calendar.pyc +lib/python2.6/calendar.pyo +lib/python2.6/cgi.py +lib/python2.6/cgi.pyc +lib/python2.6/cgi.pyo +lib/python2.6/cgitb.py +lib/python2.6/cgitb.pyc +lib/python2.6/cgitb.pyo +lib/python2.6/chunk.py +lib/python2.6/chunk.pyc +lib/python2.6/chunk.pyo +lib/python2.6/cmd.py +lib/python2.6/cmd.pyc +lib/python2.6/cmd.pyo +lib/python2.6/code.py +lib/python2.6/code.pyc +lib/python2.6/code.pyo +lib/python2.6/codecs.py +lib/python2.6/codecs.pyc +lib/python2.6/codecs.pyo +lib/python2.6/codeop.py +lib/python2.6/codeop.pyc +lib/python2.6/codeop.pyo +lib/python2.6/collections.py +lib/python2.6/collections.pyc +lib/python2.6/collections.pyo +lib/python2.6/colorsys.py +lib/python2.6/colorsys.pyc +lib/python2.6/colorsys.pyo +lib/python2.6/commands.py +lib/python2.6/commands.pyc +lib/python2.6/commands.pyo +lib/python2.6/compileall.py +lib/python2.6/compileall.pyc +lib/python2.6/compileall.pyo +lib/python2.6/compiler/ +lib/python2.6/compiler/__init__.py +lib/python2.6/compiler/__init__.pyc +lib/python2.6/compiler/__init__.pyo +lib/python2.6/compiler/ast.py +lib/python2.6/compiler/ast.pyc +lib/python2.6/compiler/ast.pyo +lib/python2.6/compiler/consts.py +lib/python2.6/compiler/consts.pyc +lib/python2.6/compiler/consts.pyo +lib/python2.6/compiler/future.py +lib/python2.6/compiler/future.pyc +lib/python2.6/compiler/future.pyo +lib/python2.6/compiler/misc.py +lib/python2.6/compiler/misc.pyc +lib/python2.6/compiler/misc.pyo +lib/python2.6/compiler/pyassem.py +lib/python2.6/compiler/pyassem.pyc +lib/python2.6/compiler/pyassem.pyo +lib/python2.6/compiler/pycodegen.py +lib/python2.6/compiler/pycodegen.pyc +lib/python2.6/compiler/pycodegen.pyo +lib/python2.6/compiler/symbols.py +lib/python2.6/compiler/symbols.pyc +lib/python2.6/compiler/symbols.pyo +lib/python2.6/compiler/syntax.py +lib/python2.6/compiler/syntax.pyc +lib/python2.6/compiler/syntax.pyo +lib/python2.6/compiler/transformer.py +lib/python2.6/compiler/transformer.pyc +lib/python2.6/compiler/transformer.pyo +lib/python2.6/compiler/visitor.py +lib/python2.6/compiler/visitor.pyc +lib/python2.6/compiler/visitor.pyo +lib/python2.6/config/ +lib/python2.6/config/Makefile +lib/python2.6/config/Setup +lib/python2.6/config/Setup.config +lib/python2.6/config/Setup.local +lib/python2.6/config/config.c +lib/python2.6/config/config.c.in +lib/python2.6/config/install-sh +lib/python2.6/config/libpython2.6.a +@lib lib/python2.6/config/libpython2.6.so.${LIBpython2.6_VERSION} +lib/python2.6/config/makesetup +lib/python2.6/config/python.o +lib/python2.6/contextlib.py +lib/python2.6/contextlib.pyc +lib/python2.6/contextlib.pyo +lib/python2.6/cookielib.py +lib/python2.6/cookielib.pyc +lib/python2.6/cookielib.pyo +lib/python2.6/copy.py +lib/python2.6/copy.pyc +lib/python2.6/copy.pyo +lib/python2.6/copy_reg.py +lib/python2.6/copy_reg.pyc +lib/python2.6/copy_reg.pyo +lib/python2.6/csv.py +lib/python2.6/csv.pyc +lib/python2.6/csv.pyo +lib/python2.6/ctypes/test/test_delattr.py +lib/python2.6/ctypes/test/test_delattr.pyc +lib/python2.6/ctypes/test/test_delattr.pyo +lib/python2.6/ctypes/test/test_errno.py +lib/python2.6/ctypes/test/test_errno.pyc +lib/python2.6/ctypes/test/test_errno.pyo +lib/python2.6/ctypes/test/test_frombuffer.py +lib/python2.6/ctypes/test/test_frombuffer.pyc +lib/python2.6/ctypes/test/test_frombuffer.pyo +lib/python2.6/ctypes/test/test_pep3118.py +lib/python2.6/ctypes/test/test_pep3118.pyc +lib/python2.6/ctypes/test/test_pep3118.pyo +lib/python2.6/ctypes/test/test_pickling.py +lib/python2.6/ctypes/test/test_pickling.pyc +lib/python2.6/ctypes/test/test_pickling.pyo +lib/python2.6/curses/ +lib/python2.6/curses/__init__.py +lib/python2.6/curses/__init__.pyc +lib/python2.6/curses/__init__.pyo +lib/python2.6/curses/ascii.py +lib/python2.6/curses/ascii.pyc +lib/python2.6/curses/ascii.pyo +lib/python2.6/curses/has_key.py +lib/python2.6/curses/has_key.pyc +lib/python2.6/curses/has_key.pyo +lib/python2.6/curses/panel.py +lib/python2.6/curses/panel.pyc +lib/python2.6/curses/panel.pyo +lib/python2.6/curses/textpad.py +lib/python2.6/curses/textpad.pyc +lib/python2.6/curses/textpad.pyo +lib/python2.6/curses/wrapper.py +lib/python2.6/curses/wrapper.pyc +lib/python2.6/curses/wrapper.pyo +lib/python2.6/dbhash.py +lib/python2.6/dbhash.pyc +lib/python2.6/dbhash.pyo +lib/python2.6/decimal.py +lib/python2.6/decimal.pyc +lib/python2.6/decimal.pyo +lib/python2.6/difflib.py +lib/python2.6/difflib.pyc +lib/python2.6/difflib.pyo +lib/python2.6/dircache.py +lib/python2.6/dircache.pyc +lib/python2.6/dircache.pyo +lib/python2.6/dis.py +lib/python2.6/dis.pyc +lib/python2.6/dis.pyo +lib/python2.6/distutils/ +lib/python2.6/distutils/README +lib/python2.6/distutils/__init__.py +lib/python2.6/distutils/__init__.pyc +lib/python2.6/distutils/__init__.pyo +lib/python2.6/distutils/archive_util.py +lib/python2.6/distutils/archive_util.pyc +lib/python2.6/distutils/archive_util.pyo +lib/python2.6/distutils/bcppcompiler.py +lib/python2.6/distutils/bcppcompiler.pyc +lib/python2.6/distutils/bcppcompiler.pyo +lib/python2.6/distutils/ccompiler.py +lib/python2.6/distutils/ccompiler.pyc +lib/python2.6/distutils/ccompiler.pyo +lib/python2.6/distutils/cmd.py +lib/python2.6/distutils/cmd.pyc +lib/python2.6/distutils/cmd.pyo +lib/python2.6/distutils/command/ +lib/python2.6/distutils/command/__init__.py +lib/python2.6/distutils/command/__init__.pyc +lib/python2.6/distutils/command/__init__.pyo +lib/python2.6/distutils/command/bdist.py +lib/python2.6/distutils/command/bdist.pyc +lib/python2.6/distutils/command/bdist.pyo +lib/python2.6/distutils/command/bdist_dumb.py +lib/python2.6/distutils/command/bdist_dumb.pyc +lib/python2.6/distutils/command/bdist_dumb.pyo +lib/python2.6/distutils/command/bdist_msi.py +lib/python2.6/distutils/command/bdist_msi.pyc +lib/python2.6/distutils/command/bdist_msi.pyo +lib/python2.6/distutils/command/bdist_rpm.py +lib/python2.6/distutils/command/bdist_rpm.pyc +lib/python2.6/distutils/command/bdist_rpm.pyo +lib/python2.6/distutils/command/bdist_wininst.py +lib/python2.6/distutils/command/bdist_wininst.pyc +lib/python2.6/distutils/command/bdist_wininst.pyo +lib/python2.6/distutils/command/build.py +lib/python2.6/distutils/command/build.pyc +lib/python2.6/distutils/command/build.pyo +lib/python2.6/distutils/command/build_clib.py +lib/python2.6/distutils/command/build_clib.pyc +lib/python2.6/distutils/command/build_clib.pyo +lib/python2.6/distutils/command/build_ext.py +lib/python2.6/distutils/command/build_ext.pyc +lib/python2.6/distutils/command/build_ext.pyo +lib/python2.6/distutils/command/build_py.py +lib/python2.6/distutils/command/build_py.pyc +lib/python2.6/distutils/command/build_py.pyo +lib/python2.6/distutils/command/build_scripts.py +lib/python2.6/distutils/command/build_scripts.pyc +lib/python2.6/distutils/command/build_scripts.pyo +lib/python2.6/distutils/command/clean.py +lib/python2.6/distutils/command/clean.pyc +lib/python2.6/distutils/command/clean.pyo +lib/python2.6/distutils/command/command_template +lib/python2.6/distutils/command/config.py +lib/python2.6/distutils/command/config.pyc +lib/python2.6/distutils/command/config.pyo +lib/python2.6/distutils/command/install.py +lib/python2.6/distutils/command/install.pyc +lib/python2.6/distutils/command/install.pyo +lib/python2.6/distutils/command/install_data.py +lib/python2.6/distutils/command/install_data.pyc +lib/python2.6/distutils/command/install_data.pyo +lib/python2.6/distutils/command/install_egg_info.py +lib/python2.6/distutils/command/install_egg_info.pyc +lib/python2.6/distutils/command/install_egg_info.pyo +lib/python2.6/distutils/command/install_headers.py +lib/python2.6/distutils/command/install_headers.pyc +lib/python2.6/distutils/command/install_headers.pyo +lib/python2.6/distutils/command/install_lib.py +lib/python2.6/distutils/command/install_lib.pyc +lib/python2.6/distutils/command/install_lib.pyo +lib/python2.6/distutils/command/install_scripts.py +lib/python2.6/distutils/command/install_scripts.pyc +lib/python2.6/distutils/command/install_scripts.pyo +lib/python2.6/distutils/command/register.py +lib/python2.6/distutils/command/register.pyc +lib/python2.6/distutils/command/register.pyo +lib/python2.6/distutils/command/sdist.py +lib/python2.6/distutils/command/sdist.pyc +lib/python2.6/distutils/command/sdist.pyo +lib/python2.6/distutils/command/upload.py +lib/python2.6/distutils/command/upload.pyc +lib/python2.6/distutils/command/upload.pyo +lib/python2.6/distutils/command/wininst-6.0.exe +lib/python2.6/distutils/command/wininst-7.1.exe +lib/python2.6/distutils/command/wininst-8.0.exe +lib/python2.6/distutils/command/wininst-9.0-amd64.exe +lib/python2.6/distutils/command/wininst-9.0.exe +lib/python2.6/distutils/config.py +lib/python2.6/distutils/config.pyc +lib/python2.6/distutils/config.pyo +lib/python2.6/distutils/core.py +lib/python2.6/distutils/core.pyc +lib/python2.6/distutils/core.pyo +lib/python2.6/distutils/cygwinccompiler.py +lib/python2.6/distutils/cygwinccompiler.pyc +lib/python2.6/distutils/cygwinccompiler.pyo +lib/python2.6/distutils/debug.py +lib/python2.6/distutils/debug.pyc +lib/python2.6/distutils/debug.pyo +lib/python2.6/distutils/dep_util.py +lib/python2.6/distutils/dep_util.pyc +lib/python2.6/distutils/dep_util.pyo +lib/python2.6/distutils/dir_util.py +lib/python2.6/distutils/dir_util.pyc +lib/python2.6/distutils/dir_util.pyo +lib/python2.6/distutils/dist.py +lib/python2.6/distutils/dist.pyc +lib/python2.6/distutils/dist.pyo +lib/python2.6/distutils/emxccompiler.py +lib/python2.6/distutils/emxccompiler.pyc +lib/python2.6/distutils/emxccompiler.pyo +lib/python2.6/distutils/errors.py +lib/python2.6/distutils/errors.pyc +lib/python2.6/distutils/errors.pyo +lib/python2.6/distutils/extension.py +lib/python2.6/distutils/extension.pyc +lib/python2.6/distutils/extension.pyo +lib/python2.6/distutils/fancy_getopt.py +lib/python2.6/distutils/fancy_getopt.pyc +lib/python2.6/distutils/fancy_getopt.pyo +lib/python2.6/distutils/file_util.py +lib/python2.6/distutils/file_util.pyc +lib/python2.6/distutils/file_util.pyo +lib/python2.6/distutils/filelist.py +lib/python2.6/distutils/filelist.pyc +lib/python2.6/distutils/filelist.pyo +lib/python2.6/distutils/log.py +lib/python2.6/distutils/log.pyc +lib/python2.6/distutils/log.pyo +lib/python2.6/distutils/msvc9compiler.py +lib/python2.6/distutils/msvc9compiler.pyc +lib/python2.6/distutils/msvc9compiler.pyo +lib/python2.6/distutils/msvccompiler.py +lib/python2.6/distutils/msvccompiler.pyc +lib/python2.6/distutils/msvccompiler.pyo +lib/python2.6/distutils/mwerkscompiler.py +lib/python2.6/distutils/mwerkscompiler.pyc +lib/python2.6/distutils/mwerkscompiler.pyo +lib/python2.6/distutils/spawn.py +lib/python2.6/distutils/spawn.pyc +lib/python2.6/distutils/spawn.pyo +lib/python2.6/distutils/sysconfig.py +lib/python2.6/distutils/sysconfig.pyc +lib/python2.6/distutils/sysconfig.pyo +lib/python2.6/distutils/tests/ +lib/python2.6/distutils/tests/__init__.py +lib/python2.6/distutils/tests/__init__.pyc +lib/python2.6/distutils/tests/__init__.pyo +lib/python2.6/distutils/tests/support.py +lib/python2.6/distutils/tests/support.pyc +lib/python2.6/distutils/tests/support.pyo +lib/python2.6/distutils/tests/test_build_ext.py +lib/python2.6/distutils/tests/test_build_ext.pyc +lib/python2.6/distutils/tests/test_build_ext.pyo +lib/python2.6/distutils/tests/test_build_py.py +lib/python2.6/distutils/tests/test_build_py.pyc +lib/python2.6/distutils/tests/test_build_py.pyo +lib/python2.6/distutils/tests/test_build_scripts.py +lib/python2.6/distutils/tests/test_build_scripts.pyc +lib/python2.6/distutils/tests/test_build_scripts.pyo +lib/python2.6/distutils/tests/test_config.py +lib/python2.6/distutils/tests/test_config.pyc +lib/python2.6/distutils/tests/test_config.pyo +lib/python2.6/distutils/tests/test_core.py +lib/python2.6/distutils/tests/test_core.pyc +lib/python2.6/distutils/tests/test_core.pyo +lib/python2.6/distutils/tests/test_dist.py +lib/python2.6/distutils/tests/test_dist.pyc +lib/python2.6/distutils/tests/test_dist.pyo +lib/python2.6/distutils/tests/test_install.py +lib/python2.6/distutils/tests/test_install.pyc +lib/python2.6/distutils/tests/test_install.pyo +lib/python2.6/distutils/tests/test_install_scripts.py +lib/python2.6/distutils/tests/test_install_scripts.pyc +lib/python2.6/distutils/tests/test_install_scripts.pyo +lib/python2.6/distutils/tests/test_sysconfig.py +lib/python2.6/distutils/tests/test_sysconfig.pyc +lib/python2.6/distutils/tests/test_sysconfig.pyo +lib/python2.6/distutils/tests/test_upload.py +lib/python2.6/distutils/tests/test_upload.pyc +lib/python2.6/distutils/tests/test_upload.pyo +lib/python2.6/distutils/tests/test_versionpredicate.py +lib/python2.6/distutils/tests/test_versionpredicate.pyc +lib/python2.6/distutils/tests/test_versionpredicate.pyo +lib/python2.6/distutils/text_file.py +lib/python2.6/distutils/text_file.pyc +lib/python2.6/distutils/text_file.pyo +lib/python2.6/distutils/unixccompiler.py +lib/python2.6/distutils/unixccompiler.pyc +lib/python2.6/distutils/unixccompiler.pyo +lib/python2.6/distutils/util.py +lib/python2.6/distutils/util.pyc +lib/python2.6/distutils/util.pyo +lib/python2.6/distutils/version.py +lib/python2.6/distutils/version.pyc +lib/python2.6/distutils/version.pyo +lib/python2.6/distutils/versionpredicate.py +lib/python2.6/distutils/versionpredicate.pyc +lib/python2.6/distutils/versionpredicate.pyo +lib/python2.6/doctest.py +lib/python2.6/doctest.pyc +lib/python2.6/doctest.pyo +lib/python2.6/dumbdbm.py +lib/python2.6/dumbdbm.pyc +lib/python2.6/dumbdbm.pyo +lib/python2.6/dummy_thread.py +lib/python2.6/dummy_thread.pyc +lib/python2.6/dummy_thread.pyo +lib/python2.6/dummy_threading.py +lib/python2.6/dummy_threading.pyc +lib/python2.6/dummy_threading.pyo +lib/python2.6/email/ +lib/python2.6/email/__init__.py +lib/python2.6/email/__init__.pyc +lib/python2.6/email/__init__.pyo +lib/python2.6/email/_parseaddr.py +lib/python2.6/email/_parseaddr.pyc +lib/python2.6/email/_parseaddr.pyo +lib/python2.6/email/base64mime.py +lib/python2.6/email/base64mime.pyc +lib/python2.6/email/base64mime.pyo +lib/python2.6/email/charset.py +lib/python2.6/email/charset.pyc +lib/python2.6/email/charset.pyo +lib/python2.6/email/encoders.py +lib/python2.6/email/encoders.pyc +lib/python2.6/email/encoders.pyo +lib/python2.6/email/errors.py +lib/python2.6/email/errors.pyc +lib/python2.6/email/errors.pyo +lib/python2.6/email/feedparser.py +lib/python2.6/email/feedparser.pyc +lib/python2.6/email/feedparser.pyo +lib/python2.6/email/generator.py +lib/python2.6/email/generator.pyc +lib/python2.6/email/generator.pyo +lib/python2.6/email/header.py +lib/python2.6/email/header.pyc +lib/python2.6/email/header.pyo +lib/python2.6/email/iterators.py +lib/python2.6/email/iterators.pyc +lib/python2.6/email/iterators.pyo +lib/python2.6/email/message.py +lib/python2.6/email/message.pyc +lib/python2.6/email/message.pyo +lib/python2.6/email/mime/ +lib/python2.6/email/mime/__init__.py +lib/python2.6/email/mime/__init__.pyc +lib/python2.6/email/mime/__init__.pyo +lib/python2.6/email/mime/application.py +lib/python2.6/email/mime/application.pyc +lib/python2.6/email/mime/application.pyo +lib/python2.6/email/mime/audio.py +lib/python2.6/email/mime/audio.pyc +lib/python2.6/email/mime/audio.pyo +lib/python2.6/email/mime/base.py +lib/python2.6/email/mime/base.pyc +lib/python2.6/email/mime/base.pyo +lib/python2.6/email/mime/image.py +lib/python2.6/email/mime/image.pyc +lib/python2.6/email/mime/image.pyo +lib/python2.6/email/mime/message.py +lib/python2.6/email/mime/message.pyc +lib/python2.6/email/mime/message.pyo +lib/python2.6/email/mime/multipart.py +lib/python2.6/email/mime/multipart.pyc +lib/python2.6/email/mime/multipart.pyo +lib/python2.6/email/mime/nonmultipart.py +lib/python2.6/email/mime/nonmultipart.pyc +lib/python2.6/email/mime/nonmultipart.pyo +lib/python2.6/email/mime/text.py +lib/python2.6/email/mime/text.pyc +lib/python2.6/email/mime/text.pyo +lib/python2.6/email/parser.py +lib/python2.6/email/parser.pyc +lib/python2.6/email/parser.pyo +lib/python2.6/email/quoprimime.py +lib/python2.6/email/quoprimime.pyc +lib/python2.6/email/quoprimime.pyo +lib/python2.6/email/test/ +lib/python2.6/email/test/__init__.py +lib/python2.6/email/test/__init__.pyc +lib/python2.6/email/test/__init__.pyo +lib/python2.6/email/test/data/ +lib/python2.6/email/test/data/PyBanner048.gif +lib/python2.6/email/test/data/audiotest.au +lib/python2.6/email/test/data/msg_01.txt +lib/python2.6/email/test/data/msg_02.txt +lib/python2.6/email/test/data/msg_03.txt +lib/python2.6/email/test/data/msg_04.txt +lib/python2.6/email/test/data/msg_05.txt +lib/python2.6/email/test/data/msg_06.txt +lib/python2.6/email/test/data/msg_07.txt +lib/python2.6/email/test/data/msg_08.txt +lib/python2.6/email/test/data/msg_09.txt +lib/python2.6/email/test/data/msg_10.txt +lib/python2.6/email/test/data/msg_11.txt +lib/python2.6/email/test/data/msg_12.txt +lib/python2.6/email/test/data/msg_12a.txt +lib/python2.6/email/test/data/msg_13.txt +lib/python2.6/email/test/data/msg_14.txt +lib/python2.6/email/test/data/msg_15.txt +lib/python2.6/email/test/data/msg_16.txt +lib/python2.6/email/test/data/msg_17.txt +lib/python2.6/email/test/data/msg_18.txt +lib/python2.6/email/test/data/msg_19.txt +lib/python2.6/email/test/data/msg_20.txt +lib/python2.6/email/test/data/msg_21.txt +lib/python2.6/email/test/data/msg_22.txt +lib/python2.6/email/test/data/msg_23.txt +lib/python2.6/email/test/data/msg_24.txt +lib/python2.6/email/test/data/msg_25.txt +lib/python2.6/email/test/data/msg_26.txt +lib/python2.6/email/test/data/msg_27.txt +lib/python2.6/email/test/data/msg_28.txt +lib/python2.6/email/test/data/msg_29.txt +lib/python2.6/email/test/data/msg_30.txt +lib/python2.6/email/test/data/msg_31.txt +lib/python2.6/email/test/data/msg_32.txt +lib/python2.6/email/test/data/msg_33.txt +lib/python2.6/email/test/data/msg_34.txt +lib/python2.6/email/test/data/msg_35.txt +lib/python2.6/email/test/data/msg_36.txt +lib/python2.6/email/test/data/msg_37.txt +lib/python2.6/email/test/data/msg_38.txt +lib/python2.6/email/test/data/msg_39.txt +lib/python2.6/email/test/data/msg_40.txt +lib/python2.6/email/test/data/msg_41.txt +lib/python2.6/email/test/data/msg_42.txt +lib/python2.6/email/test/data/msg_43.txt +lib/python2.6/email/test/data/msg_44.txt +lib/python2.6/email/test/test_email.py +lib/python2.6/email/test/test_email.pyc +lib/python2.6/email/test/test_email.pyo +lib/python2.6/email/test/test_email_codecs.py +lib/python2.6/email/test/test_email_codecs.pyc +lib/python2.6/email/test/test_email_codecs.pyo +lib/python2.6/email/test/test_email_codecs_renamed.py +lib/python2.6/email/test/test_email_codecs_renamed.pyc +lib/python2.6/email/test/test_email_codecs_renamed.pyo +lib/python2.6/email/test/test_email_renamed.py +lib/python2.6/email/test/test_email_renamed.pyc +lib/python2.6/email/test/test_email_renamed.pyo +lib/python2.6/email/test/test_email_torture.py +lib/python2.6/email/test/test_email_torture.pyc +lib/python2.6/email/test/test_email_torture.pyo +lib/python2.6/email/utils.py +lib/python2.6/email/utils.pyc +lib/python2.6/email/utils.pyo +lib/python2.6/encodings/ +lib/python2.6/encodings/__init__.py +lib/python2.6/encodings/__init__.pyc +lib/python2.6/encodings/__init__.pyo +lib/python2.6/encodings/aliases.py +lib/python2.6/encodings/aliases.pyc +lib/python2.6/encodings/aliases.pyo +lib/python2.6/encodings/ascii.py +lib/python2.6/encodings/ascii.pyc +lib/python2.6/encodings/ascii.pyo +lib/python2.6/encodings/base64_codec.py +lib/python2.6/encodings/base64_codec.pyc +lib/python2.6/encodings/base64_codec.pyo +lib/python2.6/encodings/big5.py +lib/python2.6/encodings/big5.pyc +lib/python2.6/encodings/big5.pyo +lib/python2.6/encodings/big5hkscs.py +lib/python2.6/encodings/big5hkscs.pyc +lib/python2.6/encodings/big5hkscs.pyo +lib/python2.6/encodings/bz2_codec.py +lib/python2.6/encodings/bz2_codec.pyc +lib/python2.6/encodings/bz2_codec.pyo +lib/python2.6/encodings/charmap.py +lib/python2.6/encodings/charmap.pyc +lib/python2.6/encodings/charmap.pyo +lib/python2.6/encodings/cp037.py +lib/python2.6/encodings/cp037.pyc +lib/python2.6/encodings/cp037.pyo +lib/python2.6/encodings/cp1006.py +lib/python2.6/encodings/cp1006.pyc +lib/python2.6/encodings/cp1006.pyo +lib/python2.6/encodings/cp1026.py +lib/python2.6/encodings/cp1026.pyc +lib/python2.6/encodings/cp1026.pyo +lib/python2.6/encodings/cp1140.py +lib/python2.6/encodings/cp1140.pyc +lib/python2.6/encodings/cp1140.pyo +lib/python2.6/encodings/cp1250.py +lib/python2.6/encodings/cp1250.pyc +lib/python2.6/encodings/cp1250.pyo +lib/python2.6/encodings/cp1251.py +lib/python2.6/encodings/cp1251.pyc +lib/python2.6/encodings/cp1251.pyo +lib/python2.6/encodings/cp1252.py +lib/python2.6/encodings/cp1252.pyc +lib/python2.6/encodings/cp1252.pyo +lib/python2.6/encodings/cp1253.py +lib/python2.6/encodings/cp1253.pyc +lib/python2.6/encodings/cp1253.pyo +lib/python2.6/encodings/cp1254.py +lib/python2.6/encodings/cp1254.pyc +lib/python2.6/encodings/cp1254.pyo +lib/python2.6/encodings/cp1255.py +lib/python2.6/encodings/cp1255.pyc +lib/python2.6/encodings/cp1255.pyo +lib/python2.6/encodings/cp1256.py +lib/python2.6/encodings/cp1256.pyc +lib/python2.6/encodings/cp1256.pyo +lib/python2.6/encodings/cp1257.py +lib/python2.6/encodings/cp1257.pyc +lib/python2.6/encodings/cp1257.pyo +lib/python2.6/encodings/cp1258.py +lib/python2.6/encodings/cp1258.pyc +lib/python2.6/encodings/cp1258.pyo +lib/python2.6/encodings/cp424.py +lib/python2.6/encodings/cp424.pyc +lib/python2.6/encodings/cp424.pyo +lib/python2.6/encodings/cp437.py +lib/python2.6/encodings/cp437.pyc +lib/python2.6/encodings/cp437.pyo +lib/python2.6/encodings/cp500.py +lib/python2.6/encodings/cp500.pyc +lib/python2.6/encodings/cp500.pyo +lib/python2.6/encodings/cp737.py +lib/python2.6/encodings/cp737.pyc +lib/python2.6/encodings/cp737.pyo +lib/python2.6/encodings/cp775.py +lib/python2.6/encodings/cp775.pyc +lib/python2.6/encodings/cp775.pyo +lib/python2.6/encodings/cp850.py +lib/python2.6/encodings/cp850.pyc +lib/python2.6/encodings/cp850.pyo +lib/python2.6/encodings/cp852.py +lib/python2.6/encodings/cp852.pyc +lib/python2.6/encodings/cp852.pyo +lib/python2.6/encodings/cp855.py +lib/python2.6/encodings/cp855.pyc +lib/python2.6/encodings/cp855.pyo +lib/python2.6/encodings/cp856.py +lib/python2.6/encodings/cp856.pyc +lib/python2.6/encodings/cp856.pyo +lib/python2.6/encodings/cp857.py +lib/python2.6/encodings/cp857.pyc +lib/python2.6/encodings/cp857.pyo +lib/python2.6/encodings/cp860.py +lib/python2.6/encodings/cp860.pyc +lib/python2.6/encodings/cp860.pyo +lib/python2.6/encodings/cp861.py +lib/python2.6/encodings/cp861.pyc +lib/python2.6/encodings/cp861.pyo +lib/python2.6/encodings/cp862.py +lib/python2.6/encodings/cp862.pyc +lib/python2.6/encodings/cp862.pyo +lib/python2.6/encodings/cp863.py +lib/python2.6/encodings/cp863.pyc +lib/python2.6/encodings/cp863.pyo +lib/python2.6/encodings/cp864.py +lib/python2.6/encodings/cp864.pyc +lib/python2.6/encodings/cp864.pyo +lib/python2.6/encodings/cp865.py +lib/python2.6/encodings/cp865.pyc +lib/python2.6/encodings/cp865.pyo +lib/python2.6/encodings/cp866.py +lib/python2.6/encodings/cp866.pyc +lib/python2.6/encodings/cp866.pyo +lib/python2.6/encodings/cp869.py +lib/python2.6/encodings/cp869.pyc +lib/python2.6/encodings/cp869.pyo +lib/python2.6/encodings/cp874.py +lib/python2.6/encodings/cp874.pyc +lib/python2.6/encodings/cp874.pyo +lib/python2.6/encodings/cp875.py +lib/python2.6/encodings/cp875.pyc +lib/python2.6/encodings/cp875.pyo +lib/python2.6/encodings/cp932.py +lib/python2.6/encodings/cp932.pyc +lib/python2.6/encodings/cp932.pyo +lib/python2.6/encodings/cp949.py +lib/python2.6/encodings/cp949.pyc +lib/python2.6/encodings/cp949.pyo +lib/python2.6/encodings/cp950.py +lib/python2.6/encodings/cp950.pyc +lib/python2.6/encodings/cp950.pyo +lib/python2.6/encodings/euc_jis_2004.py +lib/python2.6/encodings/euc_jis_2004.pyc +lib/python2.6/encodings/euc_jis_2004.pyo +lib/python2.6/encodings/euc_jisx0213.py +lib/python2.6/encodings/euc_jisx0213.pyc +lib/python2.6/encodings/euc_jisx0213.pyo +lib/python2.6/encodings/euc_jp.py +lib/python2.6/encodings/euc_jp.pyc +lib/python2.6/encodings/euc_jp.pyo +lib/python2.6/encodings/euc_kr.py +lib/python2.6/encodings/euc_kr.pyc +lib/python2.6/encodings/euc_kr.pyo +lib/python2.6/encodings/gb18030.py +lib/python2.6/encodings/gb18030.pyc +lib/python2.6/encodings/gb18030.pyo +lib/python2.6/encodings/gb2312.py +lib/python2.6/encodings/gb2312.pyc +lib/python2.6/encodings/gb2312.pyo +lib/python2.6/encodings/gbk.py +lib/python2.6/encodings/gbk.pyc +lib/python2.6/encodings/gbk.pyo +lib/python2.6/encodings/hex_codec.py +lib/python2.6/encodings/hex_codec.pyc +lib/python2.6/encodings/hex_codec.pyo +lib/python2.6/encodings/hp_roman8.py +lib/python2.6/encodings/hp_roman8.pyc +lib/python2.6/encodings/hp_roman8.pyo +lib/python2.6/encodings/hz.py +lib/python2.6/encodings/hz.pyc +lib/python2.6/encodings/hz.pyo +lib/python2.6/encodings/idna.py +lib/python2.6/encodings/idna.pyc +lib/python2.6/encodings/idna.pyo +lib/python2.6/encodings/iso2022_jp.py +lib/python2.6/encodings/iso2022_jp.pyc +lib/python2.6/encodings/iso2022_jp.pyo +lib/python2.6/encodings/iso2022_jp_1.py +lib/python2.6/encodings/iso2022_jp_1.pyc +lib/python2.6/encodings/iso2022_jp_1.pyo +lib/python2.6/encodings/iso2022_jp_2.py +lib/python2.6/encodings/iso2022_jp_2.pyc +lib/python2.6/encodings/iso2022_jp_2.pyo +lib/python2.6/encodings/iso2022_jp_2004.py +lib/python2.6/encodings/iso2022_jp_2004.pyc +lib/python2.6/encodings/iso2022_jp_2004.pyo +lib/python2.6/encodings/iso2022_jp_3.py +lib/python2.6/encodings/iso2022_jp_3.pyc +lib/python2.6/encodings/iso2022_jp_3.pyo +lib/python2.6/encodings/iso2022_jp_ext.py +lib/python2.6/encodings/iso2022_jp_ext.pyc +lib/python2.6/encodings/iso2022_jp_ext.pyo +lib/python2.6/encodings/iso2022_kr.py +lib/python2.6/encodings/iso2022_kr.pyc +lib/python2.6/encodings/iso2022_kr.pyo +lib/python2.6/encodings/iso8859_1.py +lib/python2.6/encodings/iso8859_1.pyc +lib/python2.6/encodings/iso8859_1.pyo +lib/python2.6/encodings/iso8859_10.py +lib/python2.6/encodings/iso8859_10.pyc +lib/python2.6/encodings/iso8859_10.pyo +lib/python2.6/encodings/iso8859_11.py +lib/python2.6/encodings/iso8859_11.pyc +lib/python2.6/encodings/iso8859_11.pyo +lib/python2.6/encodings/iso8859_13.py +lib/python2.6/encodings/iso8859_13.pyc +lib/python2.6/encodings/iso8859_13.pyo +lib/python2.6/encodings/iso8859_14.py +lib/python2.6/encodings/iso8859_14.pyc +lib/python2.6/encodings/iso8859_14.pyo +lib/python2.6/encodings/iso8859_15.py +lib/python2.6/encodings/iso8859_15.pyc +lib/python2.6/encodings/iso8859_15.pyo +lib/python2.6/encodings/iso8859_16.py +lib/python2.6/encodings/iso8859_16.pyc +lib/python2.6/encodings/iso8859_16.pyo +lib/python2.6/encodings/iso8859_2.py +lib/python2.6/encodings/iso8859_2.pyc +lib/python2.6/encodings/iso8859_2.pyo +lib/python2.6/encodings/iso8859_3.py +lib/python2.6/encodings/iso8859_3.pyc +lib/python2.6/encodings/iso8859_3.pyo +lib/python2.6/encodings/iso8859_4.py +lib/python2.6/encodings/iso8859_4.pyc +lib/python2.6/encodings/iso8859_4.pyo +lib/python2.6/encodings/iso8859_5.py +lib/python2.6/encodings/iso8859_5.pyc +lib/python2.6/encodings/iso8859_5.pyo +lib/python2.6/encodings/iso8859_6.py +lib/python2.6/encodings/iso8859_6.pyc +lib/python2.6/encodings/iso8859_6.pyo +lib/python2.6/encodings/iso8859_7.py +lib/python2.6/encodings/iso8859_7.pyc +lib/python2.6/encodings/iso8859_7.pyo +lib/python2.6/encodings/iso8859_8.py +lib/python2.6/encodings/iso8859_8.pyc +lib/python2.6/encodings/iso8859_8.pyo +lib/python2.6/encodings/iso8859_9.py +lib/python2.6/encodings/iso8859_9.pyc +lib/python2.6/encodings/iso8859_9.pyo +lib/python2.6/encodings/johab.py +lib/python2.6/encodings/johab.pyc +lib/python2.6/encodings/johab.pyo +lib/python2.6/encodings/koi8_r.py +lib/python2.6/encodings/koi8_r.pyc +lib/python2.6/encodings/koi8_r.pyo +lib/python2.6/encodings/koi8_u.py +lib/python2.6/encodings/koi8_u.pyc +lib/python2.6/encodings/koi8_u.pyo +lib/python2.6/encodings/latin_1.py +lib/python2.6/encodings/latin_1.pyc +lib/python2.6/encodings/latin_1.pyo +lib/python2.6/encodings/mac_arabic.py +lib/python2.6/encodings/mac_arabic.pyc +lib/python2.6/encodings/mac_arabic.pyo +lib/python2.6/encodings/mac_centeuro.py +lib/python2.6/encodings/mac_centeuro.pyc +lib/python2.6/encodings/mac_centeuro.pyo +lib/python2.6/encodings/mac_croatian.py +lib/python2.6/encodings/mac_croatian.pyc +lib/python2.6/encodings/mac_croatian.pyo +lib/python2.6/encodings/mac_cyrillic.py +lib/python2.6/encodings/mac_cyrillic.pyc +lib/python2.6/encodings/mac_cyrillic.pyo +lib/python2.6/encodings/mac_farsi.py +lib/python2.6/encodings/mac_farsi.pyc +lib/python2.6/encodings/mac_farsi.pyo +lib/python2.6/encodings/mac_greek.py +lib/python2.6/encodings/mac_greek.pyc +lib/python2.6/encodings/mac_greek.pyo +lib/python2.6/encodings/mac_iceland.py +lib/python2.6/encodings/mac_iceland.pyc +lib/python2.6/encodings/mac_iceland.pyo +lib/python2.6/encodings/mac_latin2.py +lib/python2.6/encodings/mac_latin2.pyc +lib/python2.6/encodings/mac_latin2.pyo +lib/python2.6/encodings/mac_roman.py +lib/python2.6/encodings/mac_roman.pyc +lib/python2.6/encodings/mac_roman.pyo +lib/python2.6/encodings/mac_romanian.py +lib/python2.6/encodings/mac_romanian.pyc +lib/python2.6/encodings/mac_romanian.pyo +lib/python2.6/encodings/mac_turkish.py +lib/python2.6/encodings/mac_turkish.pyc +lib/python2.6/encodings/mac_turkish.pyo +lib/python2.6/encodings/mbcs.py +lib/python2.6/encodings/mbcs.pyc +lib/python2.6/encodings/mbcs.pyo +lib/python2.6/encodings/palmos.py +lib/python2.6/encodings/palmos.pyc +lib/python2.6/encodings/palmos.pyo +lib/python2.6/encodings/ptcp154.py +lib/python2.6/encodings/ptcp154.pyc +lib/python2.6/encodings/ptcp154.pyo +lib/python2.6/encodings/punycode.py +lib/python2.6/encodings/punycode.pyc +lib/python2.6/encodings/punycode.pyo +lib/python2.6/encodings/quopri_codec.py +lib/python2.6/encodings/quopri_codec.pyc +lib/python2.6/encodings/quopri_codec.pyo +lib/python2.6/encodings/raw_unicode_escape.py +lib/python2.6/encodings/raw_unicode_escape.pyc +lib/python2.6/encodings/raw_unicode_escape.pyo +lib/python2.6/encodings/rot_13.py +lib/python2.6/encodings/rot_13.pyc +lib/python2.6/encodings/rot_13.pyo +lib/python2.6/encodings/shift_jis.py +lib/python2.6/encodings/shift_jis.pyc +lib/python2.6/encodings/shift_jis.pyo +lib/python2.6/encodings/shift_jis_2004.py +lib/python2.6/encodings/shift_jis_2004.pyc +lib/python2.6/encodings/shift_jis_2004.pyo +lib/python2.6/encodings/shift_jisx0213.py +lib/python2.6/encodings/shift_jisx0213.pyc +lib/python2.6/encodings/shift_jisx0213.pyo +lib/python2.6/encodings/string_escape.py +lib/python2.6/encodings/string_escape.pyc +lib/python2.6/encodings/string_escape.pyo +lib/python2.6/encodings/tis_620.py +lib/python2.6/encodings/tis_620.pyc +lib/python2.6/encodings/tis_620.pyo +lib/python2.6/encodings/undefined.py +lib/python2.6/encodings/undefined.pyc +lib/python2.6/encodings/undefined.pyo +lib/python2.6/encodings/unicode_escape.py +lib/python2.6/encodings/unicode_escape.pyc +lib/python2.6/encodings/unicode_escape.pyo +lib/python2.6/encodings/unicode_internal.py +lib/python2.6/encodings/unicode_internal.pyc +lib/python2.6/encodings/unicode_internal.pyo +lib/python2.6/encodings/utf_16.py +lib/python2.6/encodings/utf_16.pyc +lib/python2.6/encodings/utf_16.pyo +lib/python2.6/encodings/utf_16_be.py +lib/python2.6/encodings/utf_16_be.pyc +lib/python2.6/encodings/utf_16_be.pyo +lib/python2.6/encodings/utf_16_le.py +lib/python2.6/encodings/utf_16_le.pyc +lib/python2.6/encodings/utf_16_le.pyo +lib/python2.6/encodings/utf_32.py +lib/python2.6/encodings/utf_32.pyc +lib/python2.6/encodings/utf_32.pyo +lib/python2.6/encodings/utf_32_be.py +lib/python2.6/encodings/utf_32_be.pyc +lib/python2.6/encodings/utf_32_be.pyo +lib/python2.6/encodings/utf_32_le.py +lib/python2.6/encodings/utf_32_le.pyc +lib/python2.6/encodings/utf_32_le.pyo +lib/python2.6/encodings/utf_7.py +lib/python2.6/encodings/utf_7.pyc +lib/python2.6/encodings/utf_7.pyo +lib/python2.6/encodings/utf_8.py +lib/python2.6/encodings/utf_8.pyc +lib/python2.6/encodings/utf_8.pyo +lib/python2.6/encodings/utf_8_sig.py +lib/python2.6/encodings/utf_8_sig.pyc +lib/python2.6/encodings/utf_8_sig.pyo +lib/python2.6/encodings/uu_codec.py +lib/python2.6/encodings/uu_codec.pyc +lib/python2.6/encodings/uu_codec.pyo +lib/python2.6/encodings/zlib_codec.py +lib/python2.6/encodings/zlib_codec.pyc +lib/python2.6/encodings/zlib_codec.pyo +lib/python2.6/filecmp.py +lib/python2.6/filecmp.pyc +lib/python2.6/filecmp.pyo +lib/python2.6/fileinput.py +lib/python2.6/fileinput.pyc +lib/python2.6/fileinput.pyo +lib/python2.6/fnmatch.py +lib/python2.6/fnmatch.pyc +lib/python2.6/fnmatch.pyo +lib/python2.6/formatter.py +lib/python2.6/formatter.pyc +lib/python2.6/formatter.pyo +lib/python2.6/fpformat.py +lib/python2.6/fpformat.pyc +lib/python2.6/fpformat.pyo +lib/python2.6/fractions.py +lib/python2.6/fractions.pyc +lib/python2.6/fractions.pyo +lib/python2.6/ftplib.py +lib/python2.6/ftplib.pyc +lib/python2.6/ftplib.pyo +lib/python2.6/functools.py +lib/python2.6/functools.pyc +lib/python2.6/functools.pyo +lib/python2.6/genericpath.py +lib/python2.6/genericpath.pyc +lib/python2.6/genericpath.pyo +lib/python2.6/getopt.py +lib/python2.6/getopt.pyc +lib/python2.6/getopt.pyo +lib/python2.6/getpass.py +lib/python2.6/getpass.pyc +lib/python2.6/getpass.pyo +lib/python2.6/gettext.py +lib/python2.6/gettext.pyc +lib/python2.6/gettext.pyo +lib/python2.6/glob.py +lib/python2.6/glob.pyc +lib/python2.6/glob.pyo +lib/python2.6/gzip.py +lib/python2.6/gzip.pyc +lib/python2.6/gzip.pyo +lib/python2.6/hashlib.py +lib/python2.6/hashlib.pyc +lib/python2.6/hashlib.pyo +lib/python2.6/heapq.py +lib/python2.6/heapq.pyc +lib/python2.6/heapq.pyo +lib/python2.6/hmac.py +lib/python2.6/hmac.pyc +lib/python2.6/hmac.pyo +lib/python2.6/hotshot/ +lib/python2.6/hotshot/__init__.py +lib/python2.6/hotshot/__init__.pyc +lib/python2.6/hotshot/__init__.pyo +lib/python2.6/hotshot/log.py +lib/python2.6/hotshot/log.pyc +lib/python2.6/hotshot/log.pyo +lib/python2.6/hotshot/stats.py +lib/python2.6/hotshot/stats.pyc +lib/python2.6/hotshot/stats.pyo +lib/python2.6/hotshot/stones.py +lib/python2.6/hotshot/stones.pyc +lib/python2.6/hotshot/stones.pyo +lib/python2.6/htmlentitydefs.py +lib/python2.6/htmlentitydefs.pyc +lib/python2.6/htmlentitydefs.pyo +lib/python2.6/htmllib.py +lib/python2.6/htmllib.pyc +lib/python2.6/htmllib.pyo +lib/python2.6/httplib.py +lib/python2.6/httplib.pyc +lib/python2.6/httplib.pyo +lib/python2.6/ihooks.py +lib/python2.6/ihooks.pyc +lib/python2.6/ihooks.pyo +lib/python2.6/imaplib.py +lib/python2.6/imaplib.pyc +lib/python2.6/imaplib.pyo +lib/python2.6/imghdr.py +lib/python2.6/imghdr.pyc +lib/python2.6/imghdr.pyo +lib/python2.6/imputil.py +lib/python2.6/imputil.pyc +lib/python2.6/imputil.pyo +lib/python2.6/inspect.py +lib/python2.6/inspect.pyc +lib/python2.6/inspect.pyo +lib/python2.6/io.py +lib/python2.6/io.pyc +lib/python2.6/io.pyo +lib/python2.6/json/ +lib/python2.6/json/__init__.py +lib/python2.6/json/__init__.pyc +lib/python2.6/json/__init__.pyo +lib/python2.6/json/decoder.py +lib/python2.6/json/decoder.pyc +lib/python2.6/json/decoder.pyo +lib/python2.6/json/encoder.py +lib/python2.6/json/encoder.pyc +lib/python2.6/json/encoder.pyo +lib/python2.6/json/scanner.py +lib/python2.6/json/scanner.pyc +lib/python2.6/json/scanner.pyo +lib/python2.6/json/tests/ +lib/python2.6/json/tests/__init__.py +lib/python2.6/json/tests/__init__.pyc +lib/python2.6/json/tests/__init__.pyo +lib/python2.6/json/tests/test_decode.py +lib/python2.6/json/tests/test_decode.pyc +lib/python2.6/json/tests/test_decode.pyo +lib/python2.6/json/tests/test_default.py +lib/python2.6/json/tests/test_default.pyc +lib/python2.6/json/tests/test_default.pyo +lib/python2.6/json/tests/test_dump.py +lib/python2.6/json/tests/test_dump.pyc +lib/python2.6/json/tests/test_dump.pyo +lib/python2.6/json/tests/test_encode_basestring_ascii.py +lib/python2.6/json/tests/test_encode_basestring_ascii.pyc +lib/python2.6/json/tests/test_encode_basestring_ascii.pyo +lib/python2.6/json/tests/test_fail.py +lib/python2.6/json/tests/test_fail.pyc +lib/python2.6/json/tests/test_fail.pyo +lib/python2.6/json/tests/test_float.py +lib/python2.6/json/tests/test_float.pyc +lib/python2.6/json/tests/test_float.pyo +lib/python2.6/json/tests/test_indent.py +lib/python2.6/json/tests/test_indent.pyc +lib/python2.6/json/tests/test_indent.pyo +lib/python2.6/json/tests/test_pass1.py +lib/python2.6/json/tests/test_pass1.pyc +lib/python2.6/json/tests/test_pass1.pyo +lib/python2.6/json/tests/test_pass2.py +lib/python2.6/json/tests/test_pass2.pyc +lib/python2.6/json/tests/test_pass2.pyo +lib/python2.6/json/tests/test_pass3.py +lib/python2.6/json/tests/test_pass3.pyc +lib/python2.6/json/tests/test_pass3.pyo +lib/python2.6/json/tests/test_recursion.py +lib/python2.6/json/tests/test_recursion.pyc +lib/python2.6/json/tests/test_recursion.pyo +lib/python2.6/json/tests/test_scanstring.py +lib/python2.6/json/tests/test_scanstring.pyc +lib/python2.6/json/tests/test_scanstring.pyo +lib/python2.6/json/tests/test_separators.py +lib/python2.6/json/tests/test_separators.pyc +lib/python2.6/json/tests/test_separators.pyo +lib/python2.6/json/tests/test_speedups.py +lib/python2.6/json/tests/test_speedups.pyc +lib/python2.6/json/tests/test_speedups.pyo +lib/python2.6/json/tests/test_unicode.py +lib/python2.6/json/tests/test_unicode.pyc +lib/python2.6/json/tests/test_unicode.pyo +lib/python2.6/json/tool.py +lib/python2.6/json/tool.pyc +lib/python2.6/json/tool.pyo +lib/python2.6/keyword.py +lib/python2.6/keyword.pyc +lib/python2.6/keyword.pyo +lib/python2.6/lib-dynload/ +lib/python2.6/lib-dynload/Python-2.6-py2.6.egg-info +lib/python2.6/lib-dynload/_bisect.so +lib/python2.6/lib-dynload/_bytesio.so +lib/python2.6/lib-dynload/_codecs_cn.so +lib/python2.6/lib-dynload/_codecs_hk.so +lib/python2.6/lib-dynload/_codecs_iso2022.so +lib/python2.6/lib-dynload/_codecs_jp.so +lib/python2.6/lib-dynload/_codecs_kr.so +lib/python2.6/lib-dynload/_codecs_tw.so +lib/python2.6/lib-dynload/_collections.so +lib/python2.6/lib-dynload/_csv.so +lib/python2.6/lib-dynload/_curses.so +lib/python2.6/lib-dynload/_curses_panel.so +lib/python2.6/lib-dynload/_elementtree.so +lib/python2.6/lib-dynload/_fileio.so +lib/python2.6/lib-dynload/_functools.so +lib/python2.6/lib-dynload/_hashlib.so +lib/python2.6/lib-dynload/_heapq.so +lib/python2.6/lib-dynload/_hotshot.so +lib/python2.6/lib-dynload/_json.so +lib/python2.6/lib-dynload/_locale.so +lib/python2.6/lib-dynload/_lsprof.so +lib/python2.6/lib-dynload/_multibytecodec.so +lib/python2.6/lib-dynload/_multiprocessing.so +lib/python2.6/lib-dynload/_random.so +lib/python2.6/lib-dynload/_socket.so +lib/python2.6/lib-dynload/_sqlite3.so +lib/python2.6/lib-dynload/_ssl.so +lib/python2.6/lib-dynload/_struct.so +lib/python2.6/lib-dynload/_testcapi.so +lib/python2.6/lib-dynload/_weakref.so +lib/python2.6/lib-dynload/array.so +lib/python2.6/lib-dynload/audioop.so +lib/python2.6/lib-dynload/binascii.so +lib/python2.6/lib-dynload/bsddb185.so +lib/python2.6/lib-dynload/cPickle.so +lib/python2.6/lib-dynload/cStringIO.so +lib/python2.6/lib-dynload/cmath.so +lib/python2.6/lib-dynload/crypt.so +lib/python2.6/lib-dynload/datetime.so +lib/python2.6/lib-dynload/dbm.so +lib/python2.6/lib-dynload/fcntl.so +lib/python2.6/lib-dynload/future_builtins.so +lib/python2.6/lib-dynload/grp.so +lib/python2.6/lib-dynload/itertools.so +lib/python2.6/lib-dynload/math.so +lib/python2.6/lib-dynload/mmap.so +lib/python2.6/lib-dynload/nis.so +lib/python2.6/lib-dynload/operator.so +lib/python2.6/lib-dynload/ossaudiodev.so +lib/python2.6/lib-dynload/parser.so +lib/python2.6/lib-dynload/pyexpat.so +lib/python2.6/lib-dynload/readline.so +lib/python2.6/lib-dynload/resource.so +lib/python2.6/lib-dynload/select.so +lib/python2.6/lib-dynload/strop.so +lib/python2.6/lib-dynload/syslog.so +lib/python2.6/lib-dynload/termios.so +lib/python2.6/lib-dynload/time.so +lib/python2.6/lib-dynload/unicodedata.so +lib/python2.6/lib-dynload/zlib.so +lib/python2.6/lib-old/ +lib/python2.6/lib2to3/ +lib/python2.6/lib2to3/Grammar.txt +lib/python2.6/lib2to3/Grammar2.6.0.final.0.pickle +lib/python2.6/lib2to3/PatternGrammar.txt +lib/python2.6/lib2to3/PatternGrammar2.6.0.final.0.pickle +lib/python2.6/lib2to3/__init__.py +lib/python2.6/lib2to3/__init__.pyc +lib/python2.6/lib2to3/__init__.pyo +lib/python2.6/lib2to3/fixer_base.py +lib/python2.6/lib2to3/fixer_base.pyc +lib/python2.6/lib2to3/fixer_base.pyo +lib/python2.6/lib2to3/fixer_util.py +lib/python2.6/lib2to3/fixer_util.pyc +lib/python2.6/lib2to3/fixer_util.pyo +lib/python2.6/lib2to3/fixes/ +lib/python2.6/lib2to3/fixes/__init__.py +lib/python2.6/lib2to3/fixes/__init__.pyc +lib/python2.6/lib2to3/fixes/__init__.pyo +lib/python2.6/lib2to3/fixes/fix_apply.py +lib/python2.6/lib2to3/fixes/fix_apply.pyc +lib/python2.6/lib2to3/fixes/fix_apply.pyo +lib/python2.6/lib2to3/fixes/fix_basestring.py +lib/python2.6/lib2to3/fixes/fix_basestring.pyc +lib/python2.6/lib2to3/fixes/fix_basestring.pyo +lib/python2.6/lib2to3/fixes/fix_buffer.py +lib/python2.6/lib2to3/fixes/fix_buffer.pyc +lib/python2.6/lib2to3/fixes/fix_buffer.pyo +lib/python2.6/lib2to3/fixes/fix_callable.py +lib/python2.6/lib2to3/fixes/fix_callable.pyc +lib/python2.6/lib2to3/fixes/fix_callable.pyo +lib/python2.6/lib2to3/fixes/fix_dict.py +lib/python2.6/lib2to3/fixes/fix_dict.pyc +lib/python2.6/lib2to3/fixes/fix_dict.pyo +lib/python2.6/lib2to3/fixes/fix_except.py +lib/python2.6/lib2to3/fixes/fix_except.pyc +lib/python2.6/lib2to3/fixes/fix_except.pyo +lib/python2.6/lib2to3/fixes/fix_exec.py +lib/python2.6/lib2to3/fixes/fix_exec.pyc +lib/python2.6/lib2to3/fixes/fix_exec.pyo +lib/python2.6/lib2to3/fixes/fix_execfile.py +lib/python2.6/lib2to3/fixes/fix_execfile.pyc +lib/python2.6/lib2to3/fixes/fix_execfile.pyo +lib/python2.6/lib2to3/fixes/fix_filter.py +lib/python2.6/lib2to3/fixes/fix_filter.pyc +lib/python2.6/lib2to3/fixes/fix_filter.pyo +lib/python2.6/lib2to3/fixes/fix_funcattrs.py +lib/python2.6/lib2to3/fixes/fix_funcattrs.pyc +lib/python2.6/lib2to3/fixes/fix_funcattrs.pyo +lib/python2.6/lib2to3/fixes/fix_future.py +lib/python2.6/lib2to3/fixes/fix_future.pyc +lib/python2.6/lib2to3/fixes/fix_future.pyo +lib/python2.6/lib2to3/fixes/fix_has_key.py +lib/python2.6/lib2to3/fixes/fix_has_key.pyc +lib/python2.6/lib2to3/fixes/fix_has_key.pyo +lib/python2.6/lib2to3/fixes/fix_idioms.py +lib/python2.6/lib2to3/fixes/fix_idioms.pyc +lib/python2.6/lib2to3/fixes/fix_idioms.pyo +lib/python2.6/lib2to3/fixes/fix_import.py +lib/python2.6/lib2to3/fixes/fix_import.pyc +lib/python2.6/lib2to3/fixes/fix_import.pyo +lib/python2.6/lib2to3/fixes/fix_imports.py +lib/python2.6/lib2to3/fixes/fix_imports.pyc +lib/python2.6/lib2to3/fixes/fix_imports.pyo +lib/python2.6/lib2to3/fixes/fix_imports2.py +lib/python2.6/lib2to3/fixes/fix_imports2.pyc +lib/python2.6/lib2to3/fixes/fix_imports2.pyo +lib/python2.6/lib2to3/fixes/fix_input.py +lib/python2.6/lib2to3/fixes/fix_input.pyc +lib/python2.6/lib2to3/fixes/fix_input.pyo +lib/python2.6/lib2to3/fixes/fix_intern.py +lib/python2.6/lib2to3/fixes/fix_intern.pyc +lib/python2.6/lib2to3/fixes/fix_intern.pyo +lib/python2.6/lib2to3/fixes/fix_itertools.py +lib/python2.6/lib2to3/fixes/fix_itertools.pyc +lib/python2.6/lib2to3/fixes/fix_itertools.pyo +lib/python2.6/lib2to3/fixes/fix_itertools_imports.py +lib/python2.6/lib2to3/fixes/fix_itertools_imports.pyc +lib/python2.6/lib2to3/fixes/fix_itertools_imports.pyo +lib/python2.6/lib2to3/fixes/fix_long.py +lib/python2.6/lib2to3/fixes/fix_long.pyc +lib/python2.6/lib2to3/fixes/fix_long.pyo +lib/python2.6/lib2to3/fixes/fix_map.py +lib/python2.6/lib2to3/fixes/fix_map.pyc +lib/python2.6/lib2to3/fixes/fix_map.pyo +lib/python2.6/lib2to3/fixes/fix_metaclass.py +lib/python2.6/lib2to3/fixes/fix_metaclass.pyc +lib/python2.6/lib2to3/fixes/fix_metaclass.pyo +lib/python2.6/lib2to3/fixes/fix_methodattrs.py +lib/python2.6/lib2to3/fixes/fix_methodattrs.pyc +lib/python2.6/lib2to3/fixes/fix_methodattrs.pyo +lib/python2.6/lib2to3/fixes/fix_ne.py +lib/python2.6/lib2to3/fixes/fix_ne.pyc +lib/python2.6/lib2to3/fixes/fix_ne.pyo +lib/python2.6/lib2to3/fixes/fix_next.py +lib/python2.6/lib2to3/fixes/fix_next.pyc +lib/python2.6/lib2to3/fixes/fix_next.pyo +lib/python2.6/lib2to3/fixes/fix_nonzero.py +lib/python2.6/lib2to3/fixes/fix_nonzero.pyc +lib/python2.6/lib2to3/fixes/fix_nonzero.pyo +lib/python2.6/lib2to3/fixes/fix_numliterals.py +lib/python2.6/lib2to3/fixes/fix_numliterals.pyc +lib/python2.6/lib2to3/fixes/fix_numliterals.pyo +lib/python2.6/lib2to3/fixes/fix_paren.py +lib/python2.6/lib2to3/fixes/fix_paren.pyc +lib/python2.6/lib2to3/fixes/fix_paren.pyo +lib/python2.6/lib2to3/fixes/fix_print.py +lib/python2.6/lib2to3/fixes/fix_print.pyc +lib/python2.6/lib2to3/fixes/fix_print.pyo +lib/python2.6/lib2to3/fixes/fix_raise.py +lib/python2.6/lib2to3/fixes/fix_raise.pyc +lib/python2.6/lib2to3/fixes/fix_raise.pyo +lib/python2.6/lib2to3/fixes/fix_raw_input.py +lib/python2.6/lib2to3/fixes/fix_raw_input.pyc +lib/python2.6/lib2to3/fixes/fix_raw_input.pyo +lib/python2.6/lib2to3/fixes/fix_renames.py +lib/python2.6/lib2to3/fixes/fix_renames.pyc +lib/python2.6/lib2to3/fixes/fix_renames.pyo +lib/python2.6/lib2to3/fixes/fix_repr.py +lib/python2.6/lib2to3/fixes/fix_repr.pyc +lib/python2.6/lib2to3/fixes/fix_repr.pyo +lib/python2.6/lib2to3/fixes/fix_standarderror.py +lib/python2.6/lib2to3/fixes/fix_standarderror.pyc +lib/python2.6/lib2to3/fixes/fix_standarderror.pyo +lib/python2.6/lib2to3/fixes/fix_sys_exc.py +lib/python2.6/lib2to3/fixes/fix_sys_exc.pyc +lib/python2.6/lib2to3/fixes/fix_sys_exc.pyo +lib/python2.6/lib2to3/fixes/fix_throw.py +lib/python2.6/lib2to3/fixes/fix_throw.pyc +lib/python2.6/lib2to3/fixes/fix_throw.pyo +lib/python2.6/lib2to3/fixes/fix_tuple_params.py +lib/python2.6/lib2to3/fixes/fix_tuple_params.pyc +lib/python2.6/lib2to3/fixes/fix_tuple_params.pyo +lib/python2.6/lib2to3/fixes/fix_types.py +lib/python2.6/lib2to3/fixes/fix_types.pyc +lib/python2.6/lib2to3/fixes/fix_types.pyo +lib/python2.6/lib2to3/fixes/fix_unicode.py +lib/python2.6/lib2to3/fixes/fix_unicode.pyc +lib/python2.6/lib2to3/fixes/fix_unicode.pyo +lib/python2.6/lib2to3/fixes/fix_urllib.py +lib/python2.6/lib2to3/fixes/fix_urllib.pyc +lib/python2.6/lib2to3/fixes/fix_urllib.pyo +lib/python2.6/lib2to3/fixes/fix_ws_comma.py +lib/python2.6/lib2to3/fixes/fix_ws_comma.pyc +lib/python2.6/lib2to3/fixes/fix_ws_comma.pyo +lib/python2.6/lib2to3/fixes/fix_xrange.py +lib/python2.6/lib2to3/fixes/fix_xrange.pyc +lib/python2.6/lib2to3/fixes/fix_xrange.pyo +lib/python2.6/lib2to3/fixes/fix_xreadlines.py +lib/python2.6/lib2to3/fixes/fix_xreadlines.pyc +lib/python2.6/lib2to3/fixes/fix_xreadlines.pyo +lib/python2.6/lib2to3/fixes/fix_zip.py +lib/python2.6/lib2to3/fixes/fix_zip.pyc +lib/python2.6/lib2to3/fixes/fix_zip.pyo +lib/python2.6/lib2to3/main.py +lib/python2.6/lib2to3/main.pyc +lib/python2.6/lib2to3/main.pyo +lib/python2.6/lib2to3/patcomp.py +lib/python2.6/lib2to3/patcomp.pyc +lib/python2.6/lib2to3/patcomp.pyo +lib/python2.6/lib2to3/pgen2/ +lib/python2.6/lib2to3/pgen2/__init__.py +lib/python2.6/lib2to3/pgen2/__init__.pyc +lib/python2.6/lib2to3/pgen2/__init__.pyo +lib/python2.6/lib2to3/pgen2/conv.py +lib/python2.6/lib2to3/pgen2/conv.pyc +lib/python2.6/lib2to3/pgen2/conv.pyo +lib/python2.6/lib2to3/pgen2/driver.py +lib/python2.6/lib2to3/pgen2/driver.pyc +lib/python2.6/lib2to3/pgen2/driver.pyo +lib/python2.6/lib2to3/pgen2/grammar.py +lib/python2.6/lib2to3/pgen2/grammar.pyc +lib/python2.6/lib2to3/pgen2/grammar.pyo +lib/python2.6/lib2to3/pgen2/literals.py +lib/python2.6/lib2to3/pgen2/literals.pyc +lib/python2.6/lib2to3/pgen2/literals.pyo +lib/python2.6/lib2to3/pgen2/parse.py +lib/python2.6/lib2to3/pgen2/parse.pyc +lib/python2.6/lib2to3/pgen2/parse.pyo +lib/python2.6/lib2to3/pgen2/pgen.py +lib/python2.6/lib2to3/pgen2/pgen.pyc +lib/python2.6/lib2to3/pgen2/pgen.pyo +lib/python2.6/lib2to3/pgen2/token.py +lib/python2.6/lib2to3/pgen2/token.pyc +lib/python2.6/lib2to3/pgen2/token.pyo +lib/python2.6/lib2to3/pgen2/tokenize.py +lib/python2.6/lib2to3/pgen2/tokenize.pyc +lib/python2.6/lib2to3/pgen2/tokenize.pyo +lib/python2.6/lib2to3/pygram.py +lib/python2.6/lib2to3/pygram.pyc +lib/python2.6/lib2to3/pygram.pyo +lib/python2.6/lib2to3/pytree.py +lib/python2.6/lib2to3/pytree.pyc +lib/python2.6/lib2to3/pytree.pyo +lib/python2.6/lib2to3/refactor.py +lib/python2.6/lib2to3/refactor.pyc +lib/python2.6/lib2to3/refactor.pyo +lib/python2.6/lib2to3/tests/ +lib/python2.6/lib2to3/tests/__init__.py +lib/python2.6/lib2to3/tests/__init__.pyc +lib/python2.6/lib2to3/tests/__init__.pyo +lib/python2.6/lib2to3/tests/benchmark.py +lib/python2.6/lib2to3/tests/benchmark.pyc +lib/python2.6/lib2to3/tests/benchmark.pyo +lib/python2.6/lib2to3/tests/pytree_idempotency.py +lib/python2.6/lib2to3/tests/pytree_idempotency.pyc +lib/python2.6/lib2to3/tests/pytree_idempotency.pyo +lib/python2.6/lib2to3/tests/support.py +lib/python2.6/lib2to3/tests/support.pyc +lib/python2.6/lib2to3/tests/support.pyo +lib/python2.6/lib2to3/tests/test_all_fixers.py +lib/python2.6/lib2to3/tests/test_all_fixers.pyc +lib/python2.6/lib2to3/tests/test_all_fixers.pyo +lib/python2.6/lib2to3/tests/test_fixers.py +lib/python2.6/lib2to3/tests/test_fixers.pyc +lib/python2.6/lib2to3/tests/test_fixers.pyo +lib/python2.6/lib2to3/tests/test_parser.py +lib/python2.6/lib2to3/tests/test_parser.pyc +lib/python2.6/lib2to3/tests/test_parser.pyo +lib/python2.6/lib2to3/tests/test_pytree.py +lib/python2.6/lib2to3/tests/test_pytree.pyc +lib/python2.6/lib2to3/tests/test_pytree.pyo +lib/python2.6/lib2to3/tests/test_refactor.py +lib/python2.6/lib2to3/tests/test_refactor.pyc +lib/python2.6/lib2to3/tests/test_refactor.pyo +lib/python2.6/lib2to3/tests/test_util.py +lib/python2.6/lib2to3/tests/test_util.pyc +lib/python2.6/lib2to3/tests/test_util.pyo +lib/python2.6/linecache.py +lib/python2.6/linecache.pyc +lib/python2.6/linecache.pyo +lib/python2.6/locale.py +lib/python2.6/locale.pyc +lib/python2.6/locale.pyo +lib/python2.6/logging/ +lib/python2.6/logging/__init__.py +lib/python2.6/logging/__init__.pyc +lib/python2.6/logging/__init__.pyo +lib/python2.6/logging/config.py +lib/python2.6/logging/config.pyc +lib/python2.6/logging/config.pyo +lib/python2.6/logging/handlers.py +lib/python2.6/logging/handlers.pyc +lib/python2.6/logging/handlers.pyo +lib/python2.6/macpath.py +lib/python2.6/macpath.pyc +lib/python2.6/macpath.pyo +lib/python2.6/macurl2path.py +lib/python2.6/macurl2path.pyc +lib/python2.6/macurl2path.pyo +lib/python2.6/mailbox.py +lib/python2.6/mailbox.pyc +lib/python2.6/mailbox.pyo +lib/python2.6/mailcap.py +lib/python2.6/mailcap.pyc +lib/python2.6/mailcap.pyo +lib/python2.6/markupbase.py +lib/python2.6/markupbase.pyc +lib/python2.6/markupbase.pyo +lib/python2.6/md5.py +lib/python2.6/md5.pyc +lib/python2.6/md5.pyo +lib/python2.6/mhlib.py +lib/python2.6/mhlib.pyc +lib/python2.6/mhlib.pyo +lib/python2.6/mimetools.py +lib/python2.6/mimetools.pyc +lib/python2.6/mimetools.pyo +lib/python2.6/mimetypes.py +lib/python2.6/mimetypes.pyc +lib/python2.6/mimetypes.pyo +lib/python2.6/mimify.py +lib/python2.6/mimify.pyc +lib/python2.6/mimify.pyo +lib/python2.6/modulefinder.py +lib/python2.6/modulefinder.pyc +lib/python2.6/modulefinder.pyo +lib/python2.6/multifile.py +lib/python2.6/multifile.pyc +lib/python2.6/multifile.pyo +lib/python2.6/multiprocessing/ +lib/python2.6/multiprocessing/__init__.py +lib/python2.6/multiprocessing/__init__.pyc +lib/python2.6/multiprocessing/__init__.pyo +lib/python2.6/multiprocessing/connection.py +lib/python2.6/multiprocessing/connection.pyc +lib/python2.6/multiprocessing/connection.pyo +lib/python2.6/multiprocessing/dummy/ +lib/python2.6/multiprocessing/dummy/__init__.py +lib/python2.6/multiprocessing/dummy/__init__.pyc +lib/python2.6/multiprocessing/dummy/__init__.pyo +lib/python2.6/multiprocessing/dummy/connection.py +lib/python2.6/multiprocessing/dummy/connection.pyc +lib/python2.6/multiprocessing/dummy/connection.pyo +lib/python2.6/multiprocessing/forking.py +lib/python2.6/multiprocessing/forking.pyc +lib/python2.6/multiprocessing/forking.pyo +lib/python2.6/multiprocessing/heap.py +lib/python2.6/multiprocessing/heap.pyc +lib/python2.6/multiprocessing/heap.pyo +lib/python2.6/multiprocessing/managers.py +lib/python2.6/multiprocessing/managers.pyc +lib/python2.6/multiprocessing/managers.pyo +lib/python2.6/multiprocessing/pool.py +lib/python2.6/multiprocessing/pool.pyc +lib/python2.6/multiprocessing/pool.pyo +lib/python2.6/multiprocessing/process.py +lib/python2.6/multiprocessing/process.pyc +lib/python2.6/multiprocessing/process.pyo +lib/python2.6/multiprocessing/queues.py +lib/python2.6/multiprocessing/queues.pyc +lib/python2.6/multiprocessing/queues.pyo +lib/python2.6/multiprocessing/reduction.py +lib/python2.6/multiprocessing/reduction.pyc +lib/python2.6/multiprocessing/reduction.pyo +lib/python2.6/multiprocessing/sharedctypes.py +lib/python2.6/multiprocessing/sharedctypes.pyc +lib/python2.6/multiprocessing/sharedctypes.pyo +lib/python2.6/multiprocessing/synchronize.py +lib/python2.6/multiprocessing/synchronize.pyc +lib/python2.6/multiprocessing/synchronize.pyo +lib/python2.6/multiprocessing/util.py +lib/python2.6/multiprocessing/util.pyc +lib/python2.6/multiprocessing/util.pyo +lib/python2.6/mutex.py +lib/python2.6/mutex.pyc +lib/python2.6/mutex.pyo +lib/python2.6/netrc.py +lib/python2.6/netrc.pyc +lib/python2.6/netrc.pyo +lib/python2.6/new.py +lib/python2.6/new.pyc +lib/python2.6/new.pyo +lib/python2.6/nntplib.py +lib/python2.6/nntplib.pyc +lib/python2.6/nntplib.pyo +lib/python2.6/ntpath.py +lib/python2.6/ntpath.pyc +lib/python2.6/ntpath.pyo +lib/python2.6/nturl2path.py +lib/python2.6/nturl2path.pyc +lib/python2.6/nturl2path.pyo +lib/python2.6/numbers.py +lib/python2.6/numbers.pyc +lib/python2.6/numbers.pyo +lib/python2.6/opcode.py +lib/python2.6/opcode.pyc +lib/python2.6/opcode.pyo +lib/python2.6/optparse.py +lib/python2.6/optparse.pyc +lib/python2.6/optparse.pyo +lib/python2.6/os.py +lib/python2.6/os.pyc +lib/python2.6/os.pyo +lib/python2.6/os2emxpath.py +lib/python2.6/os2emxpath.pyc +lib/python2.6/os2emxpath.pyo +lib/python2.6/pdb.doc +lib/python2.6/pdb.py +lib/python2.6/pdb.pyc +lib/python2.6/pdb.pyo +lib/python2.6/pickle.py +lib/python2.6/pickle.pyc +lib/python2.6/pickle.pyo +lib/python2.6/pickletools.py +lib/python2.6/pickletools.pyc +lib/python2.6/pickletools.pyo +lib/python2.6/pipes.py +lib/python2.6/pipes.pyc +lib/python2.6/pipes.pyo +lib/python2.6/pkgutil.py +lib/python2.6/pkgutil.pyc +lib/python2.6/pkgutil.pyo +lib/python2.6/plat-openbsd4/ +lib/python2.6/plat-openbsd4/IN.py +lib/python2.6/plat-openbsd4/IN.pyc +lib/python2.6/plat-openbsd4/IN.pyo +lib/python2.6/plat-openbsd4/regen +lib/python2.6/platform.py +lib/python2.6/platform.pyc +lib/python2.6/platform.pyo +lib/python2.6/plistlib.py +lib/python2.6/plistlib.pyc +lib/python2.6/plistlib.pyo +lib/python2.6/popen2.py +lib/python2.6/popen2.pyc +lib/python2.6/popen2.pyo +lib/python2.6/poplib.py +lib/python2.6/poplib.pyc +lib/python2.6/poplib.pyo +lib/python2.6/posixfile.py +lib/python2.6/posixfile.pyc +lib/python2.6/posixfile.pyo +lib/python2.6/posixpath.py +lib/python2.6/posixpath.pyc +lib/python2.6/posixpath.pyo +lib/python2.6/pprint.py +lib/python2.6/pprint.pyc +lib/python2.6/pprint.pyo +lib/python2.6/profile.py +lib/python2.6/profile.pyc +lib/python2.6/profile.pyo +lib/python2.6/pstats.py +lib/python2.6/pstats.pyc +lib/python2.6/pstats.pyo +lib/python2.6/pty.py +lib/python2.6/pty.pyc +lib/python2.6/pty.pyo +lib/python2.6/py_compile.py +lib/python2.6/py_compile.pyc +lib/python2.6/py_compile.pyo +lib/python2.6/pyclbr.py +lib/python2.6/pyclbr.pyc +lib/python2.6/pyclbr.pyo +lib/python2.6/pydoc.py +lib/python2.6/pydoc.pyc +lib/python2.6/pydoc.pyo +lib/python2.6/pydoc_topics.py +lib/python2.6/pydoc_topics.pyc +lib/python2.6/pydoc_topics.pyo +lib/python2.6/quopri.py +lib/python2.6/quopri.pyc +lib/python2.6/quopri.pyo +lib/python2.6/random.py +lib/python2.6/random.pyc +lib/python2.6/random.pyo +lib/python2.6/re.py +lib/python2.6/re.pyc +lib/python2.6/re.pyo +lib/python2.6/repr.py +lib/python2.6/repr.pyc +lib/python2.6/repr.pyo +lib/python2.6/rexec.py +lib/python2.6/rexec.pyc +lib/python2.6/rexec.pyo +lib/python2.6/rfc822.py +lib/python2.6/rfc822.pyc +lib/python2.6/rfc822.pyo +lib/python2.6/rlcompleter.py +lib/python2.6/rlcompleter.pyc +lib/python2.6/rlcompleter.pyo +lib/python2.6/robotparser.py +lib/python2.6/robotparser.pyc +lib/python2.6/robotparser.pyo +lib/python2.6/runpy.py +lib/python2.6/runpy.pyc +lib/python2.6/runpy.pyo +lib/python2.6/sched.py +lib/python2.6/sched.pyc +lib/python2.6/sched.pyo +lib/python2.6/sets.py +lib/python2.6/sets.pyc +lib/python2.6/sets.pyo +lib/python2.6/sgmllib.py +lib/python2.6/sgmllib.pyc +lib/python2.6/sgmllib.pyo +lib/python2.6/sha.py +lib/python2.6/sha.pyc +lib/python2.6/sha.pyo +lib/python2.6/shelve.py +lib/python2.6/shelve.pyc +lib/python2.6/shelve.pyo +lib/python2.6/shlex.py +lib/python2.6/shlex.pyc +lib/python2.6/shlex.pyo +lib/python2.6/shutil.py +lib/python2.6/shutil.pyc +lib/python2.6/shutil.pyo +lib/python2.6/site-packages/ +lib/python2.6/site-packages/README +lib/python2.6/site.py +lib/python2.6/site.pyc +lib/python2.6/site.pyo +lib/python2.6/smtpd.py +lib/python2.6/smtpd.pyc +lib/python2.6/smtpd.pyo +lib/python2.6/smtplib.py +lib/python2.6/smtplib.pyc +lib/python2.6/smtplib.pyo +lib/python2.6/sndhdr.py +lib/python2.6/sndhdr.pyc +lib/python2.6/sndhdr.pyo +lib/python2.6/socket.py +lib/python2.6/socket.pyc +lib/python2.6/socket.pyo +lib/python2.6/sqlite3/ +lib/python2.6/sqlite3/__init__.py +lib/python2.6/sqlite3/__init__.pyc +lib/python2.6/sqlite3/__init__.pyo +lib/python2.6/sqlite3/dbapi2.py +lib/python2.6/sqlite3/dbapi2.pyc +lib/python2.6/sqlite3/dbapi2.pyo +lib/python2.6/sqlite3/dump.py +lib/python2.6/sqlite3/dump.pyc +lib/python2.6/sqlite3/dump.pyo +lib/python2.6/sqlite3/test/ +lib/python2.6/sqlite3/test/__init__.py +lib/python2.6/sqlite3/test/__init__.pyc +lib/python2.6/sqlite3/test/__init__.pyo +lib/python2.6/sqlite3/test/dbapi.py +lib/python2.6/sqlite3/test/dbapi.pyc +lib/python2.6/sqlite3/test/dbapi.pyo +lib/python2.6/sqlite3/test/dump.py +lib/python2.6/sqlite3/test/dump.pyc +lib/python2.6/sqlite3/test/dump.pyo +lib/python2.6/sqlite3/test/factory.py +lib/python2.6/sqlite3/test/factory.pyc +lib/python2.6/sqlite3/test/factory.pyo +lib/python2.6/sqlite3/test/hooks.py +lib/python2.6/sqlite3/test/hooks.pyc +lib/python2.6/sqlite3/test/hooks.pyo +lib/python2.6/sqlite3/test/py25tests.py +lib/python2.6/sqlite3/test/py25tests.pyc +lib/python2.6/sqlite3/test/py25tests.pyo +lib/python2.6/sqlite3/test/regression.py +lib/python2.6/sqlite3/test/regression.pyc +lib/python2.6/sqlite3/test/regression.pyo +lib/python2.6/sqlite3/test/transactions.py +lib/python2.6/sqlite3/test/transactions.pyc +lib/python2.6/sqlite3/test/transactions.pyo +lib/python2.6/sqlite3/test/types.py +lib/python2.6/sqlite3/test/types.pyc +lib/python2.6/sqlite3/test/types.pyo +lib/python2.6/sqlite3/test/userfunctions.py +lib/python2.6/sqlite3/test/userfunctions.pyc +lib/python2.6/sqlite3/test/userfunctions.pyo +lib/python2.6/sre.py +lib/python2.6/sre.pyc +lib/python2.6/sre.pyo +lib/python2.6/sre_compile.py +lib/python2.6/sre_compile.pyc +lib/python2.6/sre_compile.pyo +lib/python2.6/sre_constants.py +lib/python2.6/sre_constants.pyc +lib/python2.6/sre_constants.pyo +lib/python2.6/sre_parse.py +lib/python2.6/sre_parse.pyc +lib/python2.6/sre_parse.pyo +lib/python2.6/ssl.py +lib/python2.6/ssl.pyc +lib/python2.6/ssl.pyo +lib/python2.6/stat.py +lib/python2.6/stat.pyc +lib/python2.6/stat.pyo +lib/python2.6/statvfs.py +lib/python2.6/statvfs.pyc +lib/python2.6/statvfs.pyo +lib/python2.6/string.py +lib/python2.6/string.pyc +lib/python2.6/string.pyo +lib/python2.6/stringold.py +lib/python2.6/stringold.pyc +lib/python2.6/stringold.pyo +lib/python2.6/stringprep.py +lib/python2.6/stringprep.pyc +lib/python2.6/stringprep.pyo +lib/python2.6/struct.py +lib/python2.6/struct.pyc +lib/python2.6/struct.pyo +lib/python2.6/subprocess.py +lib/python2.6/subprocess.pyc +lib/python2.6/subprocess.pyo +lib/python2.6/sunau.py +lib/python2.6/sunau.pyc +lib/python2.6/sunau.pyo +lib/python2.6/sunaudio.py +lib/python2.6/sunaudio.pyc +lib/python2.6/sunaudio.pyo +lib/python2.6/symbol.py +lib/python2.6/symbol.pyc +lib/python2.6/symbol.pyo +lib/python2.6/symtable.py +lib/python2.6/symtable.pyc +lib/python2.6/symtable.pyo +lib/python2.6/tabnanny.py +lib/python2.6/tabnanny.pyc +lib/python2.6/tabnanny.pyo +lib/python2.6/tarfile.py +lib/python2.6/tarfile.pyc +lib/python2.6/tarfile.pyo +lib/python2.6/telnetlib.py +lib/python2.6/telnetlib.pyc +lib/python2.6/telnetlib.pyo +lib/python2.6/tempfile.py +lib/python2.6/tempfile.pyc +lib/python2.6/tempfile.pyo +lib/python2.6/textwrap.py +lib/python2.6/textwrap.pyc +lib/python2.6/textwrap.pyo +lib/python2.6/this.py +lib/python2.6/this.pyc +lib/python2.6/this.pyo +lib/python2.6/threading.py +lib/python2.6/threading.pyc +lib/python2.6/threading.pyo +lib/python2.6/timeit.py +lib/python2.6/timeit.pyc +lib/python2.6/timeit.pyo +lib/python2.6/toaiff.py +lib/python2.6/toaiff.pyc +lib/python2.6/toaiff.pyo +lib/python2.6/token.py +lib/python2.6/token.pyc +lib/python2.6/token.pyo +lib/python2.6/tokenize.py +lib/python2.6/tokenize.pyc +lib/python2.6/tokenize.pyo +lib/python2.6/trace.py +lib/python2.6/trace.pyc +lib/python2.6/trace.pyo +lib/python2.6/traceback.py +lib/python2.6/traceback.pyc +lib/python2.6/traceback.pyo +lib/python2.6/tty.py +lib/python2.6/tty.pyc +lib/python2.6/tty.pyo +lib/python2.6/types.py +lib/python2.6/types.pyc +lib/python2.6/types.pyo +lib/python2.6/unittest.py +lib/python2.6/unittest.pyc +lib/python2.6/unittest.pyo +lib/python2.6/urllib.py +lib/python2.6/urllib.pyc +lib/python2.6/urllib.pyo +lib/python2.6/urllib2.py +lib/python2.6/urllib2.pyc +lib/python2.6/urllib2.pyo +lib/python2.6/urlparse.py +lib/python2.6/urlparse.pyc +lib/python2.6/urlparse.pyo +lib/python2.6/user.py +lib/python2.6/user.pyc +lib/python2.6/user.pyo +lib/python2.6/uu.py +lib/python2.6/uu.pyc +lib/python2.6/uu.pyo +lib/python2.6/uuid.py +lib/python2.6/uuid.pyc +lib/python2.6/uuid.pyo +lib/python2.6/warnings.py +lib/python2.6/warnings.pyc +lib/python2.6/warnings.pyo +lib/python2.6/wave.py +lib/python2.6/wave.pyc +lib/python2.6/wave.pyo +lib/python2.6/weakref.py +lib/python2.6/weakref.pyc +lib/python2.6/weakref.pyo +lib/python2.6/webbrowser.py +lib/python2.6/webbrowser.pyc +lib/python2.6/webbrowser.pyo +lib/python2.6/whichdb.py +lib/python2.6/whichdb.pyc +lib/python2.6/whichdb.pyo +lib/python2.6/wsgiref/ +lib/python2.6/wsgiref.egg-info +lib/python2.6/wsgiref/__init__.py +lib/python2.6/wsgiref/__init__.pyc +lib/python2.6/wsgiref/__init__.pyo +lib/python2.6/wsgiref/handlers.py +lib/python2.6/wsgiref/handlers.pyc +lib/python2.6/wsgiref/handlers.pyo +lib/python2.6/wsgiref/headers.py +lib/python2.6/wsgiref/headers.pyc +lib/python2.6/wsgiref/headers.pyo +lib/python2.6/wsgiref/simple_server.py +lib/python2.6/wsgiref/simple_server.pyc +lib/python2.6/wsgiref/simple_server.pyo +lib/python2.6/wsgiref/util.py +lib/python2.6/wsgiref/util.pyc +lib/python2.6/wsgiref/util.pyo +lib/python2.6/wsgiref/validate.py +lib/python2.6/wsgiref/validate.pyc +lib/python2.6/wsgiref/validate.pyo +lib/python2.6/xdrlib.py +lib/python2.6/xdrlib.pyc +lib/python2.6/xdrlib.pyo +lib/python2.6/xml/ +lib/python2.6/xml/__init__.py +lib/python2.6/xml/__init__.pyc +lib/python2.6/xml/__init__.pyo +lib/python2.6/xml/dom/ +lib/python2.6/xml/dom/NodeFilter.py +lib/python2.6/xml/dom/NodeFilter.pyc +lib/python2.6/xml/dom/NodeFilter.pyo +lib/python2.6/xml/dom/__init__.py +lib/python2.6/xml/dom/__init__.pyc +lib/python2.6/xml/dom/__init__.pyo +lib/python2.6/xml/dom/domreg.py +lib/python2.6/xml/dom/domreg.pyc +lib/python2.6/xml/dom/domreg.pyo +lib/python2.6/xml/dom/expatbuilder.py +lib/python2.6/xml/dom/expatbuilder.pyc +lib/python2.6/xml/dom/expatbuilder.pyo +lib/python2.6/xml/dom/minicompat.py +lib/python2.6/xml/dom/minicompat.pyc +lib/python2.6/xml/dom/minicompat.pyo +lib/python2.6/xml/dom/minidom.py +lib/python2.6/xml/dom/minidom.pyc +lib/python2.6/xml/dom/minidom.pyo +lib/python2.6/xml/dom/pulldom.py +lib/python2.6/xml/dom/pulldom.pyc +lib/python2.6/xml/dom/pulldom.pyo +lib/python2.6/xml/dom/xmlbuilder.py +lib/python2.6/xml/dom/xmlbuilder.pyc +lib/python2.6/xml/dom/xmlbuilder.pyo +lib/python2.6/xml/etree/ +lib/python2.6/xml/etree/ElementInclude.py +lib/python2.6/xml/etree/ElementInclude.pyc +lib/python2.6/xml/etree/ElementInclude.pyo +lib/python2.6/xml/etree/ElementPath.py +lib/python2.6/xml/etree/ElementPath.pyc +lib/python2.6/xml/etree/ElementPath.pyo +lib/python2.6/xml/etree/ElementTree.py +lib/python2.6/xml/etree/ElementTree.pyc +lib/python2.6/xml/etree/ElementTree.pyo +lib/python2.6/xml/etree/__init__.py +lib/python2.6/xml/etree/__init__.pyc +lib/python2.6/xml/etree/__init__.pyo +lib/python2.6/xml/etree/cElementTree.py +lib/python2.6/xml/etree/cElementTree.pyc +lib/python2.6/xml/etree/cElementTree.pyo +lib/python2.6/xml/parsers/ +lib/python2.6/xml/parsers/__init__.py +lib/python2.6/xml/parsers/__init__.pyc +lib/python2.6/xml/parsers/__init__.pyo +lib/python2.6/xml/parsers/expat.py +lib/python2.6/xml/parsers/expat.pyc +lib/python2.6/xml/parsers/expat.pyo +lib/python2.6/xml/sax/ +lib/python2.6/xml/sax/__init__.py +lib/python2.6/xml/sax/__init__.pyc +lib/python2.6/xml/sax/__init__.pyo +lib/python2.6/xml/sax/_exceptions.py +lib/python2.6/xml/sax/_exceptions.pyc +lib/python2.6/xml/sax/_exceptions.pyo +lib/python2.6/xml/sax/expatreader.py +lib/python2.6/xml/sax/expatreader.pyc +lib/python2.6/xml/sax/expatreader.pyo +lib/python2.6/xml/sax/handler.py +lib/python2.6/xml/sax/handler.pyc +lib/python2.6/xml/sax/handler.pyo +lib/python2.6/xml/sax/saxutils.py +lib/python2.6/xml/sax/saxutils.pyc +lib/python2.6/xml/sax/saxutils.pyo +lib/python2.6/xml/sax/xmlreader.py +lib/python2.6/xml/sax/xmlreader.pyc +lib/python2.6/xml/sax/xmlreader.pyo +lib/python2.6/xmllib.py +lib/python2.6/xmllib.pyc +lib/python2.6/xmllib.pyo +lib/python2.6/xmlrpclib.py +lib/python2.6/xmlrpclib.pyc +lib/python2.6/xmlrpclib.pyo +lib/python2.6/zipfile.py +lib/python2.6/zipfile.pyc +lib/python2.6/zipfile.pyo +@man man/man1/python2.6.1 +share/doc/python2.6/ +share/doc/python2.6/CHANGES.OpenBSD +%%mm%% +%%ctypes%% diff --git a/lang/python/2.6/pkg/PLIST-tests b/lang/python/2.6/pkg/PLIST-tests new file mode 100644 index 00000000000..a41e3d928ec --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-tests @@ -0,0 +1,1391 @@ +@comment $OpenBSD: PLIST-tests,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python-tests->=2.6,<2.6 +lib/python2.6/test/ +lib/python2.6/test/185test.db +lib/python2.6/test/README +lib/python2.6/test/__init__.py +lib/python2.6/test/__init__.pyc +lib/python2.6/test/__init__.pyo +lib/python2.6/test/audiotest.au +lib/python2.6/test/autotest.py +lib/python2.6/test/autotest.pyc +lib/python2.6/test/autotest.pyo +lib/python2.6/test/bad_coding.py +lib/python2.6/test/bad_coding2.py +lib/python2.6/test/badcert.pem +lib/python2.6/test/badkey.pem +lib/python2.6/test/badsyntax_future3.py +lib/python2.6/test/badsyntax_future4.py +lib/python2.6/test/badsyntax_future5.py +lib/python2.6/test/badsyntax_future6.py +lib/python2.6/test/badsyntax_future7.py +lib/python2.6/test/badsyntax_future8.py +lib/python2.6/test/badsyntax_future9.py +lib/python2.6/test/badsyntax_nocaret.py +lib/python2.6/test/buffer_tests.py +lib/python2.6/test/buffer_tests.pyc +lib/python2.6/test/buffer_tests.pyo +lib/python2.6/test/cfgparser.1 +lib/python2.6/test/check_soundcard.vbs +lib/python2.6/test/cjkencodings_test.py +lib/python2.6/test/cjkencodings_test.pyc +lib/python2.6/test/cjkencodings_test.pyo +lib/python2.6/test/cmath_testcases.txt +lib/python2.6/test/curses_tests.py +lib/python2.6/test/curses_tests.pyc +lib/python2.6/test/curses_tests.pyo +lib/python2.6/test/decimaltestdata/ +lib/python2.6/test/decimaltestdata/abs.decTest +lib/python2.6/test/decimaltestdata/add.decTest +lib/python2.6/test/decimaltestdata/and.decTest +lib/python2.6/test/decimaltestdata/base.decTest +lib/python2.6/test/decimaltestdata/clamp.decTest +lib/python2.6/test/decimaltestdata/class.decTest +lib/python2.6/test/decimaltestdata/compare.decTest +lib/python2.6/test/decimaltestdata/comparetotal.decTest +lib/python2.6/test/decimaltestdata/comparetotmag.decTest +lib/python2.6/test/decimaltestdata/copy.decTest +lib/python2.6/test/decimaltestdata/copyabs.decTest +lib/python2.6/test/decimaltestdata/copynegate.decTest +lib/python2.6/test/decimaltestdata/copysign.decTest +lib/python2.6/test/decimaltestdata/ddAbs.decTest +lib/python2.6/test/decimaltestdata/ddAdd.decTest +lib/python2.6/test/decimaltestdata/ddAnd.decTest +lib/python2.6/test/decimaltestdata/ddBase.decTest +lib/python2.6/test/decimaltestdata/ddCanonical.decTest +lib/python2.6/test/decimaltestdata/ddClass.decTest +lib/python2.6/test/decimaltestdata/ddCompare.decTest +lib/python2.6/test/decimaltestdata/ddCompareSig.decTest +lib/python2.6/test/decimaltestdata/ddCompareTotal.decTest +lib/python2.6/test/decimaltestdata/ddCompareTotalMag.decTest +lib/python2.6/test/decimaltestdata/ddCopy.decTest +lib/python2.6/test/decimaltestdata/ddCopyAbs.decTest +lib/python2.6/test/decimaltestdata/ddCopyNegate.decTest +lib/python2.6/test/decimaltestdata/ddCopySign.decTest +lib/python2.6/test/decimaltestdata/ddDivide.decTest +lib/python2.6/test/decimaltestdata/ddDivideInt.decTest +lib/python2.6/test/decimaltestdata/ddEncode.decTest +lib/python2.6/test/decimaltestdata/ddFMA.decTest +lib/python2.6/test/decimaltestdata/ddInvert.decTest +lib/python2.6/test/decimaltestdata/ddLogB.decTest +lib/python2.6/test/decimaltestdata/ddMax.decTest +lib/python2.6/test/decimaltestdata/ddMaxMag.decTest +lib/python2.6/test/decimaltestdata/ddMin.decTest +lib/python2.6/test/decimaltestdata/ddMinMag.decTest +lib/python2.6/test/decimaltestdata/ddMinus.decTest +lib/python2.6/test/decimaltestdata/ddMultiply.decTest +lib/python2.6/test/decimaltestdata/ddNextMinus.decTest +lib/python2.6/test/decimaltestdata/ddNextPlus.decTest +lib/python2.6/test/decimaltestdata/ddNextToward.decTest +lib/python2.6/test/decimaltestdata/ddOr.decTest +lib/python2.6/test/decimaltestdata/ddPlus.decTest +lib/python2.6/test/decimaltestdata/ddQuantize.decTest +lib/python2.6/test/decimaltestdata/ddReduce.decTest +lib/python2.6/test/decimaltestdata/ddRemainder.decTest +lib/python2.6/test/decimaltestdata/ddRemainderNear.decTest +lib/python2.6/test/decimaltestdata/ddRotate.decTest +lib/python2.6/test/decimaltestdata/ddSameQuantum.decTest +lib/python2.6/test/decimaltestdata/ddScaleB.decTest +lib/python2.6/test/decimaltestdata/ddShift.decTest +lib/python2.6/test/decimaltestdata/ddSubtract.decTest +lib/python2.6/test/decimaltestdata/ddToIntegral.decTest +lib/python2.6/test/decimaltestdata/ddXor.decTest +lib/python2.6/test/decimaltestdata/decDouble.decTest +lib/python2.6/test/decimaltestdata/decQuad.decTest +lib/python2.6/test/decimaltestdata/decSingle.decTest +lib/python2.6/test/decimaltestdata/divide.decTest +lib/python2.6/test/decimaltestdata/divideint.decTest +lib/python2.6/test/decimaltestdata/dqAbs.decTest +lib/python2.6/test/decimaltestdata/dqAdd.decTest +lib/python2.6/test/decimaltestdata/dqAnd.decTest +lib/python2.6/test/decimaltestdata/dqBase.decTest +lib/python2.6/test/decimaltestdata/dqCanonical.decTest +lib/python2.6/test/decimaltestdata/dqClass.decTest +lib/python2.6/test/decimaltestdata/dqCompare.decTest +lib/python2.6/test/decimaltestdata/dqCompareSig.decTest +lib/python2.6/test/decimaltestdata/dqCompareTotal.decTest +lib/python2.6/test/decimaltestdata/dqCompareTotalMag.decTest +lib/python2.6/test/decimaltestdata/dqCopy.decTest +lib/python2.6/test/decimaltestdata/dqCopyAbs.decTest +lib/python2.6/test/decimaltestdata/dqCopyNegate.decTest +lib/python2.6/test/decimaltestdata/dqCopySign.decTest +lib/python2.6/test/decimaltestdata/dqDivide.decTest +lib/python2.6/test/decimaltestdata/dqDivideInt.decTest +lib/python2.6/test/decimaltestdata/dqEncode.decTest +lib/python2.6/test/decimaltestdata/dqFMA.decTest +lib/python2.6/test/decimaltestdata/dqInvert.decTest +lib/python2.6/test/decimaltestdata/dqLogB.decTest +lib/python2.6/test/decimaltestdata/dqMax.decTest +lib/python2.6/test/decimaltestdata/dqMaxMag.decTest +lib/python2.6/test/decimaltestdata/dqMin.decTest +lib/python2.6/test/decimaltestdata/dqMinMag.decTest +lib/python2.6/test/decimaltestdata/dqMinus.decTest +lib/python2.6/test/decimaltestdata/dqMultiply.decTest +lib/python2.6/test/decimaltestdata/dqNextMinus.decTest +lib/python2.6/test/decimaltestdata/dqNextPlus.decTest +lib/python2.6/test/decimaltestdata/dqNextToward.decTest +lib/python2.6/test/decimaltestdata/dqOr.decTest +lib/python2.6/test/decimaltestdata/dqPlus.decTest +lib/python2.6/test/decimaltestdata/dqQuantize.decTest +lib/python2.6/test/decimaltestdata/dqReduce.decTest +lib/python2.6/test/decimaltestdata/dqRemainder.decTest +lib/python2.6/test/decimaltestdata/dqRemainderNear.decTest +lib/python2.6/test/decimaltestdata/dqRotate.decTest +lib/python2.6/test/decimaltestdata/dqSameQuantum.decTest +lib/python2.6/test/decimaltestdata/dqScaleB.decTest +lib/python2.6/test/decimaltestdata/dqShift.decTest +lib/python2.6/test/decimaltestdata/dqSubtract.decTest +lib/python2.6/test/decimaltestdata/dqToIntegral.decTest +lib/python2.6/test/decimaltestdata/dqXor.decTest +lib/python2.6/test/decimaltestdata/dsBase.decTest +lib/python2.6/test/decimaltestdata/dsEncode.decTest +lib/python2.6/test/decimaltestdata/exp.decTest +lib/python2.6/test/decimaltestdata/extra.decTest +lib/python2.6/test/decimaltestdata/fma.decTest +lib/python2.6/test/decimaltestdata/inexact.decTest +lib/python2.6/test/decimaltestdata/invert.decTest +lib/python2.6/test/decimaltestdata/ln.decTest +lib/python2.6/test/decimaltestdata/log10.decTest +lib/python2.6/test/decimaltestdata/logb.decTest +lib/python2.6/test/decimaltestdata/max.decTest +lib/python2.6/test/decimaltestdata/maxmag.decTest +lib/python2.6/test/decimaltestdata/min.decTest +lib/python2.6/test/decimaltestdata/minmag.decTest +lib/python2.6/test/decimaltestdata/minus.decTest +lib/python2.6/test/decimaltestdata/multiply.decTest +lib/python2.6/test/decimaltestdata/nextminus.decTest +lib/python2.6/test/decimaltestdata/nextplus.decTest +lib/python2.6/test/decimaltestdata/nexttoward.decTest +lib/python2.6/test/decimaltestdata/or.decTest +lib/python2.6/test/decimaltestdata/plus.decTest +lib/python2.6/test/decimaltestdata/power.decTest +lib/python2.6/test/decimaltestdata/powersqrt.decTest +lib/python2.6/test/decimaltestdata/quantize.decTest +lib/python2.6/test/decimaltestdata/randomBound32.decTest +lib/python2.6/test/decimaltestdata/randoms.decTest +lib/python2.6/test/decimaltestdata/reduce.decTest +lib/python2.6/test/decimaltestdata/remainder.decTest +lib/python2.6/test/decimaltestdata/remainderNear.decTest +lib/python2.6/test/decimaltestdata/rescale.decTest +lib/python2.6/test/decimaltestdata/rotate.decTest +lib/python2.6/test/decimaltestdata/rounding.decTest +lib/python2.6/test/decimaltestdata/samequantum.decTest +lib/python2.6/test/decimaltestdata/scaleb.decTest +lib/python2.6/test/decimaltestdata/shift.decTest +lib/python2.6/test/decimaltestdata/squareroot.decTest +lib/python2.6/test/decimaltestdata/subtract.decTest +lib/python2.6/test/decimaltestdata/testall.decTest +lib/python2.6/test/decimaltestdata/tointegral.decTest +lib/python2.6/test/decimaltestdata/tointegralx.decTest +lib/python2.6/test/decimaltestdata/xor.decTest +lib/python2.6/test/doctest_aliases.py +lib/python2.6/test/doctest_aliases.pyc +lib/python2.6/test/doctest_aliases.pyo +lib/python2.6/test/double_const.py +lib/python2.6/test/double_const.pyc +lib/python2.6/test/double_const.pyo +lib/python2.6/test/empty.vbs +lib/python2.6/test/exception_hierarchy.txt +lib/python2.6/test/floating_points.txt +lib/python2.6/test/fork_wait.py +lib/python2.6/test/fork_wait.pyc +lib/python2.6/test/fork_wait.pyo +lib/python2.6/test/greyrgb.uue +lib/python2.6/test/https_svn_python_org_root.pem +lib/python2.6/test/ieee754.txt +lib/python2.6/test/infinite_reload.py +lib/python2.6/test/infinite_reload.pyc +lib/python2.6/test/infinite_reload.pyo +lib/python2.6/test/inspect_fodder.py +lib/python2.6/test/inspect_fodder.pyc +lib/python2.6/test/inspect_fodder.pyo +lib/python2.6/test/inspect_fodder2.py +lib/python2.6/test/inspect_fodder2.pyc +lib/python2.6/test/inspect_fodder2.pyo +lib/python2.6/test/keycert.pem +lib/python2.6/test/list_tests.py +lib/python2.6/test/list_tests.pyc +lib/python2.6/test/list_tests.pyo +lib/python2.6/test/mapping_tests.py +lib/python2.6/test/mapping_tests.pyc +lib/python2.6/test/mapping_tests.pyo +lib/python2.6/test/nullcert.pem +lib/python2.6/test/outstanding_bugs.py +lib/python2.6/test/outstanding_bugs.pyc +lib/python2.6/test/outstanding_bugs.pyo +lib/python2.6/test/pickletester.py +lib/python2.6/test/pickletester.pyc +lib/python2.6/test/pickletester.pyo +lib/python2.6/test/profilee.py +lib/python2.6/test/profilee.pyc +lib/python2.6/test/profilee.pyo +lib/python2.6/test/pyclbr_input.py +lib/python2.6/test/pyclbr_input.pyc +lib/python2.6/test/pyclbr_input.pyo +lib/python2.6/test/pydoc_mod.py +lib/python2.6/test/pydoc_mod.pyc +lib/python2.6/test/pydoc_mod.pyo +lib/python2.6/test/pydocfodder.py +lib/python2.6/test/pydocfodder.pyc +lib/python2.6/test/pydocfodder.pyo +lib/python2.6/test/pystone.py +lib/python2.6/test/pystone.pyc +lib/python2.6/test/pystone.pyo +lib/python2.6/test/randv2_32.pck +lib/python2.6/test/randv2_64.pck +lib/python2.6/test/randv3.pck +lib/python2.6/test/re_tests.py +lib/python2.6/test/re_tests.pyc +lib/python2.6/test/re_tests.pyo +lib/python2.6/test/regex_tests.py +lib/python2.6/test/regex_tests.pyc +lib/python2.6/test/regex_tests.pyo +lib/python2.6/test/regrtest.py +lib/python2.6/test/regrtest.pyc +lib/python2.6/test/regrtest.pyo +lib/python2.6/test/relimport.py +lib/python2.6/test/relimport.pyc +lib/python2.6/test/relimport.pyo +lib/python2.6/test/reperf.py +lib/python2.6/test/reperf.pyc +lib/python2.6/test/reperf.pyo +lib/python2.6/test/sample_doctest.py +lib/python2.6/test/sample_doctest.pyc +lib/python2.6/test/sample_doctest.pyo +lib/python2.6/test/seq_tests.py +lib/python2.6/test/seq_tests.pyc +lib/python2.6/test/seq_tests.pyo +lib/python2.6/test/sgml_input.html +lib/python2.6/test/sortperf.py +lib/python2.6/test/sortperf.pyc +lib/python2.6/test/sortperf.pyo +lib/python2.6/test/ssl_cert.pem +lib/python2.6/test/ssl_key.pem +lib/python2.6/test/string_tests.py +lib/python2.6/test/string_tests.pyc +lib/python2.6/test/string_tests.pyo +lib/python2.6/test/svn_python_org_https_cert.pem +lib/python2.6/test/test.xml +lib/python2.6/test/test.xml.out +lib/python2.6/test/test_MimeWriter.py +lib/python2.6/test/test_MimeWriter.pyc +lib/python2.6/test/test_MimeWriter.pyo +lib/python2.6/test/test_SimpleHTTPServer.py +lib/python2.6/test/test_SimpleHTTPServer.pyc +lib/python2.6/test/test_SimpleHTTPServer.pyo +lib/python2.6/test/test_StringIO.py +lib/python2.6/test/test_StringIO.pyc +lib/python2.6/test/test_StringIO.pyo +lib/python2.6/test/test___all__.py +lib/python2.6/test/test___all__.pyc +lib/python2.6/test/test___all__.pyo +lib/python2.6/test/test___future__.py +lib/python2.6/test/test___future__.pyc +lib/python2.6/test/test___future__.pyo +lib/python2.6/test/test__locale.py +lib/python2.6/test/test__locale.pyc +lib/python2.6/test/test__locale.pyo +lib/python2.6/test/test_abc.py +lib/python2.6/test/test_abc.pyc +lib/python2.6/test/test_abc.pyo +lib/python2.6/test/test_abstract_numbers.py +lib/python2.6/test/test_abstract_numbers.pyc +lib/python2.6/test/test_abstract_numbers.pyo +lib/python2.6/test/test_aepack.py +lib/python2.6/test/test_aepack.pyc +lib/python2.6/test/test_aepack.pyo +lib/python2.6/test/test_al.py +lib/python2.6/test/test_al.pyc +lib/python2.6/test/test_al.pyo +lib/python2.6/test/test_anydbm.py +lib/python2.6/test/test_anydbm.pyc +lib/python2.6/test/test_anydbm.pyo +lib/python2.6/test/test_applesingle.py +lib/python2.6/test/test_applesingle.pyc +lib/python2.6/test/test_applesingle.pyo +lib/python2.6/test/test_array.py +lib/python2.6/test/test_array.pyc +lib/python2.6/test/test_array.pyo +lib/python2.6/test/test_ast.py +lib/python2.6/test/test_ast.pyc +lib/python2.6/test/test_ast.pyo +lib/python2.6/test/test_asynchat.py +lib/python2.6/test/test_asynchat.pyc +lib/python2.6/test/test_asynchat.pyo +lib/python2.6/test/test_asyncore.py +lib/python2.6/test/test_asyncore.pyc +lib/python2.6/test/test_asyncore.pyo +lib/python2.6/test/test_atexit.py +lib/python2.6/test/test_atexit.pyc +lib/python2.6/test/test_atexit.pyo +lib/python2.6/test/test_audioop.py +lib/python2.6/test/test_audioop.pyc +lib/python2.6/test/test_audioop.pyo +lib/python2.6/test/test_augassign.py +lib/python2.6/test/test_augassign.pyc +lib/python2.6/test/test_augassign.pyo +lib/python2.6/test/test_base64.py +lib/python2.6/test/test_base64.pyc +lib/python2.6/test/test_base64.pyo +lib/python2.6/test/test_bastion.py +lib/python2.6/test/test_bastion.pyc +lib/python2.6/test/test_bastion.pyo +lib/python2.6/test/test_bigaddrspace.py +lib/python2.6/test/test_bigaddrspace.pyc +lib/python2.6/test/test_bigaddrspace.pyo +lib/python2.6/test/test_bigmem.py +lib/python2.6/test/test_bigmem.pyc +lib/python2.6/test/test_bigmem.pyo +lib/python2.6/test/test_binascii.py +lib/python2.6/test/test_binascii.pyc +lib/python2.6/test/test_binascii.pyo +lib/python2.6/test/test_binhex.py +lib/python2.6/test/test_binhex.pyc +lib/python2.6/test/test_binhex.pyo +lib/python2.6/test/test_binop.py +lib/python2.6/test/test_binop.pyc +lib/python2.6/test/test_binop.pyo +lib/python2.6/test/test_bisect.py +lib/python2.6/test/test_bisect.pyc +lib/python2.6/test/test_bisect.pyo +lib/python2.6/test/test_bool.py +lib/python2.6/test/test_bool.pyc +lib/python2.6/test/test_bool.pyo +lib/python2.6/test/test_bsddb.py +lib/python2.6/test/test_bsddb.pyc +lib/python2.6/test/test_bsddb.pyo +lib/python2.6/test/test_bsddb185.py +lib/python2.6/test/test_bsddb185.pyc +lib/python2.6/test/test_bsddb185.pyo +lib/python2.6/test/test_bsddb3.py +lib/python2.6/test/test_bsddb3.pyc +lib/python2.6/test/test_bsddb3.pyo +lib/python2.6/test/test_buffer.py +lib/python2.6/test/test_buffer.pyc +lib/python2.6/test/test_buffer.pyo +lib/python2.6/test/test_bufio.py +lib/python2.6/test/test_bufio.pyc +lib/python2.6/test/test_bufio.pyo +lib/python2.6/test/test_builtin.py +lib/python2.6/test/test_builtin.pyc +lib/python2.6/test/test_builtin.pyo +lib/python2.6/test/test_bytes.py +lib/python2.6/test/test_bytes.pyc +lib/python2.6/test/test_bytes.pyo +lib/python2.6/test/test_bz2.py +lib/python2.6/test/test_bz2.pyc +lib/python2.6/test/test_bz2.pyo +lib/python2.6/test/test_calendar.py +lib/python2.6/test/test_calendar.pyc +lib/python2.6/test/test_calendar.pyo +lib/python2.6/test/test_call.py +lib/python2.6/test/test_call.pyc +lib/python2.6/test/test_call.pyo +lib/python2.6/test/test_capi.py +lib/python2.6/test/test_capi.pyc +lib/python2.6/test/test_capi.pyo +lib/python2.6/test/test_cd.py +lib/python2.6/test/test_cd.pyc +lib/python2.6/test/test_cd.pyo +lib/python2.6/test/test_cfgparser.py +lib/python2.6/test/test_cfgparser.pyc +lib/python2.6/test/test_cfgparser.pyo +lib/python2.6/test/test_cgi.py +lib/python2.6/test/test_cgi.pyc +lib/python2.6/test/test_cgi.pyo +lib/python2.6/test/test_charmapcodec.py +lib/python2.6/test/test_charmapcodec.pyc +lib/python2.6/test/test_charmapcodec.pyo +lib/python2.6/test/test_cl.py +lib/python2.6/test/test_cl.pyc +lib/python2.6/test/test_cl.pyo +lib/python2.6/test/test_class.py +lib/python2.6/test/test_class.pyc +lib/python2.6/test/test_class.pyo +lib/python2.6/test/test_cmath.py +lib/python2.6/test/test_cmath.pyc +lib/python2.6/test/test_cmath.pyo +lib/python2.6/test/test_cmd.py +lib/python2.6/test/test_cmd.pyc +lib/python2.6/test/test_cmd.pyo +lib/python2.6/test/test_cmd_line.py +lib/python2.6/test/test_cmd_line.pyc +lib/python2.6/test/test_cmd_line.pyo +lib/python2.6/test/test_cmd_line_script.py +lib/python2.6/test/test_cmd_line_script.pyc +lib/python2.6/test/test_cmd_line_script.pyo +lib/python2.6/test/test_code.py +lib/python2.6/test/test_code.pyc +lib/python2.6/test/test_code.pyo +lib/python2.6/test/test_codeccallbacks.py +lib/python2.6/test/test_codeccallbacks.pyc +lib/python2.6/test/test_codeccallbacks.pyo +lib/python2.6/test/test_codecencodings_cn.py +lib/python2.6/test/test_codecencodings_cn.pyc +lib/python2.6/test/test_codecencodings_cn.pyo +lib/python2.6/test/test_codecencodings_hk.py +lib/python2.6/test/test_codecencodings_hk.pyc +lib/python2.6/test/test_codecencodings_hk.pyo +lib/python2.6/test/test_codecencodings_jp.py +lib/python2.6/test/test_codecencodings_jp.pyc +lib/python2.6/test/test_codecencodings_jp.pyo +lib/python2.6/test/test_codecencodings_kr.py +lib/python2.6/test/test_codecencodings_kr.pyc +lib/python2.6/test/test_codecencodings_kr.pyo +lib/python2.6/test/test_codecencodings_tw.py +lib/python2.6/test/test_codecencodings_tw.pyc +lib/python2.6/test/test_codecencodings_tw.pyo +lib/python2.6/test/test_codecmaps_cn.py +lib/python2.6/test/test_codecmaps_cn.pyc +lib/python2.6/test/test_codecmaps_cn.pyo +lib/python2.6/test/test_codecmaps_hk.py +lib/python2.6/test/test_codecmaps_hk.pyc +lib/python2.6/test/test_codecmaps_hk.pyo +lib/python2.6/test/test_codecmaps_jp.py +lib/python2.6/test/test_codecmaps_jp.pyc +lib/python2.6/test/test_codecmaps_jp.pyo +lib/python2.6/test/test_codecmaps_kr.py +lib/python2.6/test/test_codecmaps_kr.pyc +lib/python2.6/test/test_codecmaps_kr.pyo +lib/python2.6/test/test_codecmaps_tw.py +lib/python2.6/test/test_codecmaps_tw.pyc +lib/python2.6/test/test_codecmaps_tw.pyo +lib/python2.6/test/test_codecs.py +lib/python2.6/test/test_codecs.pyc +lib/python2.6/test/test_codecs.pyo +lib/python2.6/test/test_codeop.py +lib/python2.6/test/test_codeop.pyc +lib/python2.6/test/test_codeop.pyo +lib/python2.6/test/test_coding.py +lib/python2.6/test/test_coding.pyc +lib/python2.6/test/test_coding.pyo +lib/python2.6/test/test_coercion.py +lib/python2.6/test/test_coercion.pyc +lib/python2.6/test/test_coercion.pyo +lib/python2.6/test/test_collections.py +lib/python2.6/test/test_collections.pyc +lib/python2.6/test/test_collections.pyo +lib/python2.6/test/test_colorsys.py +lib/python2.6/test/test_colorsys.pyc +lib/python2.6/test/test_colorsys.pyo +lib/python2.6/test/test_commands.py +lib/python2.6/test/test_commands.pyc +lib/python2.6/test/test_commands.pyo +lib/python2.6/test/test_compare.py +lib/python2.6/test/test_compare.pyc +lib/python2.6/test/test_compare.pyo +lib/python2.6/test/test_compile.py +lib/python2.6/test/test_compile.pyc +lib/python2.6/test/test_compile.pyo +lib/python2.6/test/test_compiler.py +lib/python2.6/test/test_compiler.pyc +lib/python2.6/test/test_compiler.pyo +lib/python2.6/test/test_complex.py +lib/python2.6/test/test_complex.pyc +lib/python2.6/test/test_complex.pyo +lib/python2.6/test/test_complex_args.py +lib/python2.6/test/test_complex_args.pyc +lib/python2.6/test/test_complex_args.pyo +lib/python2.6/test/test_contains.py +lib/python2.6/test/test_contains.pyc +lib/python2.6/test/test_contains.pyo +lib/python2.6/test/test_contextlib.py +lib/python2.6/test/test_contextlib.pyc +lib/python2.6/test/test_contextlib.pyo +lib/python2.6/test/test_cookie.py +lib/python2.6/test/test_cookie.pyc +lib/python2.6/test/test_cookie.pyo +lib/python2.6/test/test_cookielib.py +lib/python2.6/test/test_cookielib.pyc +lib/python2.6/test/test_cookielib.pyo +lib/python2.6/test/test_copy.py +lib/python2.6/test/test_copy.pyc +lib/python2.6/test/test_copy.pyo +lib/python2.6/test/test_copy_reg.py +lib/python2.6/test/test_copy_reg.pyc +lib/python2.6/test/test_copy_reg.pyo +lib/python2.6/test/test_cpickle.py +lib/python2.6/test/test_cpickle.pyc +lib/python2.6/test/test_cpickle.pyo +lib/python2.6/test/test_cprofile.py +lib/python2.6/test/test_cprofile.pyc +lib/python2.6/test/test_cprofile.pyo +lib/python2.6/test/test_crypt.py +lib/python2.6/test/test_crypt.pyc +lib/python2.6/test/test_crypt.pyo +lib/python2.6/test/test_csv.py +lib/python2.6/test/test_csv.pyc +lib/python2.6/test/test_csv.pyo +lib/python2.6/test/test_ctypes.py +lib/python2.6/test/test_ctypes.pyc +lib/python2.6/test/test_ctypes.pyo +lib/python2.6/test/test_curses.py +lib/python2.6/test/test_curses.pyc +lib/python2.6/test/test_curses.pyo +lib/python2.6/test/test_datetime.py +lib/python2.6/test/test_datetime.pyc +lib/python2.6/test/test_datetime.pyo +lib/python2.6/test/test_dbm.py +lib/python2.6/test/test_dbm.pyc +lib/python2.6/test/test_dbm.pyo +lib/python2.6/test/test_decimal.py +lib/python2.6/test/test_decimal.pyc +lib/python2.6/test/test_decimal.pyo +lib/python2.6/test/test_decorators.py +lib/python2.6/test/test_decorators.pyc +lib/python2.6/test/test_decorators.pyo +lib/python2.6/test/test_defaultdict.py +lib/python2.6/test/test_defaultdict.pyc +lib/python2.6/test/test_defaultdict.pyo +lib/python2.6/test/test_deque.py +lib/python2.6/test/test_deque.pyc +lib/python2.6/test/test_deque.pyo +lib/python2.6/test/test_descr.py +lib/python2.6/test/test_descr.pyc +lib/python2.6/test/test_descr.pyo +lib/python2.6/test/test_descrtut.py +lib/python2.6/test/test_descrtut.pyc +lib/python2.6/test/test_descrtut.pyo +lib/python2.6/test/test_dict.py +lib/python2.6/test/test_dict.pyc +lib/python2.6/test/test_dict.pyo +lib/python2.6/test/test_difflib.py +lib/python2.6/test/test_difflib.pyc +lib/python2.6/test/test_difflib.pyo +lib/python2.6/test/test_difflib_expect.html +lib/python2.6/test/test_dircache.py +lib/python2.6/test/test_dircache.pyc +lib/python2.6/test/test_dircache.pyo +lib/python2.6/test/test_dis.py +lib/python2.6/test/test_dis.pyc +lib/python2.6/test/test_dis.pyo +lib/python2.6/test/test_distutils.py +lib/python2.6/test/test_distutils.pyc +lib/python2.6/test/test_distutils.pyo +lib/python2.6/test/test_dl.py +lib/python2.6/test/test_dl.pyc +lib/python2.6/test/test_dl.pyo +lib/python2.6/test/test_doctest.py +lib/python2.6/test/test_doctest.pyc +lib/python2.6/test/test_doctest.pyo +lib/python2.6/test/test_doctest.txt +lib/python2.6/test/test_doctest2.py +lib/python2.6/test/test_doctest2.pyc +lib/python2.6/test/test_doctest2.pyo +lib/python2.6/test/test_doctest2.txt +lib/python2.6/test/test_doctest3.txt +lib/python2.6/test/test_doctest4.txt +lib/python2.6/test/test_docxmlrpc.py +lib/python2.6/test/test_docxmlrpc.pyc +lib/python2.6/test/test_docxmlrpc.pyo +lib/python2.6/test/test_dumbdbm.py +lib/python2.6/test/test_dumbdbm.pyc +lib/python2.6/test/test_dumbdbm.pyo +lib/python2.6/test/test_dummy_thread.py +lib/python2.6/test/test_dummy_thread.pyc +lib/python2.6/test/test_dummy_thread.pyo +lib/python2.6/test/test_dummy_threading.py +lib/python2.6/test/test_dummy_threading.pyc +lib/python2.6/test/test_dummy_threading.pyo +lib/python2.6/test/test_email.py +lib/python2.6/test/test_email.pyc +lib/python2.6/test/test_email.pyo +lib/python2.6/test/test_email_codecs.py +lib/python2.6/test/test_email_codecs.pyc +lib/python2.6/test/test_email_codecs.pyo +lib/python2.6/test/test_email_renamed.py +lib/python2.6/test/test_email_renamed.pyc +lib/python2.6/test/test_email_renamed.pyo +lib/python2.6/test/test_enumerate.py +lib/python2.6/test/test_enumerate.pyc +lib/python2.6/test/test_enumerate.pyo +lib/python2.6/test/test_eof.py +lib/python2.6/test/test_eof.pyc +lib/python2.6/test/test_eof.pyo +lib/python2.6/test/test_epoll.py +lib/python2.6/test/test_epoll.pyc +lib/python2.6/test/test_epoll.pyo +lib/python2.6/test/test_errno.py +lib/python2.6/test/test_errno.pyc +lib/python2.6/test/test_errno.pyo +lib/python2.6/test/test_exception_variations.py +lib/python2.6/test/test_exception_variations.pyc +lib/python2.6/test/test_exception_variations.pyo +lib/python2.6/test/test_exceptions.py +lib/python2.6/test/test_exceptions.pyc +lib/python2.6/test/test_exceptions.pyo +lib/python2.6/test/test_extcall.py +lib/python2.6/test/test_extcall.pyc +lib/python2.6/test/test_extcall.pyo +lib/python2.6/test/test_fcntl.py +lib/python2.6/test/test_fcntl.pyc +lib/python2.6/test/test_fcntl.pyo +lib/python2.6/test/test_file.py +lib/python2.6/test/test_file.pyc +lib/python2.6/test/test_file.pyo +lib/python2.6/test/test_filecmp.py +lib/python2.6/test/test_filecmp.pyc +lib/python2.6/test/test_filecmp.pyo +lib/python2.6/test/test_fileinput.py +lib/python2.6/test/test_fileinput.pyc +lib/python2.6/test/test_fileinput.pyo +lib/python2.6/test/test_fileio.py +lib/python2.6/test/test_fileio.pyc +lib/python2.6/test/test_fileio.pyo +lib/python2.6/test/test_float.py +lib/python2.6/test/test_float.pyc +lib/python2.6/test/test_float.pyo +lib/python2.6/test/test_fnmatch.py +lib/python2.6/test/test_fnmatch.pyc +lib/python2.6/test/test_fnmatch.pyo +lib/python2.6/test/test_fork1.py +lib/python2.6/test/test_fork1.pyc +lib/python2.6/test/test_fork1.pyo +lib/python2.6/test/test_format.py +lib/python2.6/test/test_format.pyc +lib/python2.6/test/test_format.pyo +lib/python2.6/test/test_fpformat.py +lib/python2.6/test/test_fpformat.pyc +lib/python2.6/test/test_fpformat.pyo +lib/python2.6/test/test_fractions.py +lib/python2.6/test/test_fractions.pyc +lib/python2.6/test/test_fractions.pyo +lib/python2.6/test/test_frozen.py +lib/python2.6/test/test_frozen.pyc +lib/python2.6/test/test_frozen.pyo +lib/python2.6/test/test_ftplib.py +lib/python2.6/test/test_ftplib.pyc +lib/python2.6/test/test_ftplib.pyo +lib/python2.6/test/test_funcattrs.py +lib/python2.6/test/test_funcattrs.pyc +lib/python2.6/test/test_funcattrs.pyo +lib/python2.6/test/test_functools.py +lib/python2.6/test/test_functools.pyc +lib/python2.6/test/test_functools.pyo +lib/python2.6/test/test_future.py +lib/python2.6/test/test_future.pyc +lib/python2.6/test/test_future.pyo +lib/python2.6/test/test_future1.py +lib/python2.6/test/test_future1.pyc +lib/python2.6/test/test_future1.pyo +lib/python2.6/test/test_future2.py +lib/python2.6/test/test_future2.pyc +lib/python2.6/test/test_future2.pyo +lib/python2.6/test/test_future3.py +lib/python2.6/test/test_future3.pyc +lib/python2.6/test/test_future3.pyo +lib/python2.6/test/test_future4.py +lib/python2.6/test/test_future4.pyc +lib/python2.6/test/test_future4.pyo +lib/python2.6/test/test_future_builtins.py +lib/python2.6/test/test_future_builtins.pyc +lib/python2.6/test/test_future_builtins.pyo +lib/python2.6/test/test_gc.py +lib/python2.6/test/test_gc.pyc +lib/python2.6/test/test_gc.pyo +lib/python2.6/test/test_gdbm.py +lib/python2.6/test/test_gdbm.pyc +lib/python2.6/test/test_gdbm.pyo +lib/python2.6/test/test_generators.py +lib/python2.6/test/test_generators.pyc +lib/python2.6/test/test_generators.pyo +lib/python2.6/test/test_genericpath.py +lib/python2.6/test/test_genericpath.pyc +lib/python2.6/test/test_genericpath.pyo +lib/python2.6/test/test_genexps.py +lib/python2.6/test/test_genexps.pyc +lib/python2.6/test/test_genexps.pyo +lib/python2.6/test/test_getargs.py +lib/python2.6/test/test_getargs.pyc +lib/python2.6/test/test_getargs.pyo +lib/python2.6/test/test_getargs2.py +lib/python2.6/test/test_getargs2.pyc +lib/python2.6/test/test_getargs2.pyo +lib/python2.6/test/test_getopt.py +lib/python2.6/test/test_getopt.pyc +lib/python2.6/test/test_getopt.pyo +lib/python2.6/test/test_gettext.py +lib/python2.6/test/test_gettext.pyc +lib/python2.6/test/test_gettext.pyo +lib/python2.6/test/test_gl.py +lib/python2.6/test/test_gl.pyc +lib/python2.6/test/test_gl.pyo +lib/python2.6/test/test_glob.py +lib/python2.6/test/test_glob.pyc +lib/python2.6/test/test_glob.pyo +lib/python2.6/test/test_global.py +lib/python2.6/test/test_global.pyc +lib/python2.6/test/test_global.pyo +lib/python2.6/test/test_grammar.py +lib/python2.6/test/test_grammar.pyc +lib/python2.6/test/test_grammar.pyo +lib/python2.6/test/test_grp.py +lib/python2.6/test/test_grp.pyc +lib/python2.6/test/test_grp.pyo +lib/python2.6/test/test_gzip.py +lib/python2.6/test/test_gzip.pyc +lib/python2.6/test/test_gzip.pyo +lib/python2.6/test/test_hash.py +lib/python2.6/test/test_hash.pyc +lib/python2.6/test/test_hash.pyo +lib/python2.6/test/test_hashlib.py +lib/python2.6/test/test_hashlib.pyc +lib/python2.6/test/test_hashlib.pyo +lib/python2.6/test/test_heapq.py +lib/python2.6/test/test_heapq.pyc +lib/python2.6/test/test_heapq.pyo +lib/python2.6/test/test_hmac.py +lib/python2.6/test/test_hmac.pyc +lib/python2.6/test/test_hmac.pyo +lib/python2.6/test/test_hotshot.py +lib/python2.6/test/test_hotshot.pyc +lib/python2.6/test/test_hotshot.pyo +lib/python2.6/test/test_htmllib.py +lib/python2.6/test/test_htmllib.pyc +lib/python2.6/test/test_htmllib.pyo +lib/python2.6/test/test_htmlparser.py +lib/python2.6/test/test_htmlparser.pyc +lib/python2.6/test/test_htmlparser.pyo +lib/python2.6/test/test_httplib.py +lib/python2.6/test/test_httplib.pyc +lib/python2.6/test/test_httplib.pyo +lib/python2.6/test/test_httpservers.py +lib/python2.6/test/test_httpservers.pyc +lib/python2.6/test/test_httpservers.pyo +lib/python2.6/test/test_imageop.py +lib/python2.6/test/test_imageop.pyc +lib/python2.6/test/test_imageop.pyo +lib/python2.6/test/test_imaplib.py +lib/python2.6/test/test_imaplib.pyc +lib/python2.6/test/test_imaplib.pyo +lib/python2.6/test/test_imgfile.py +lib/python2.6/test/test_imgfile.pyc +lib/python2.6/test/test_imgfile.pyo +lib/python2.6/test/test_imp.py +lib/python2.6/test/test_imp.pyc +lib/python2.6/test/test_imp.pyo +lib/python2.6/test/test_import.py +lib/python2.6/test/test_import.pyc +lib/python2.6/test/test_import.pyo +lib/python2.6/test/test_importhooks.py +lib/python2.6/test/test_importhooks.pyc +lib/python2.6/test/test_importhooks.pyo +lib/python2.6/test/test_index.py +lib/python2.6/test/test_index.pyc +lib/python2.6/test/test_index.pyo +lib/python2.6/test/test_inspect.py +lib/python2.6/test/test_inspect.pyc +lib/python2.6/test/test_inspect.pyo +lib/python2.6/test/test_int.py +lib/python2.6/test/test_int.pyc +lib/python2.6/test/test_int.pyo +lib/python2.6/test/test_int_literal.py +lib/python2.6/test/test_int_literal.pyc +lib/python2.6/test/test_int_literal.pyo +lib/python2.6/test/test_io.py +lib/python2.6/test/test_io.pyc +lib/python2.6/test/test_io.pyo +lib/python2.6/test/test_ioctl.py +lib/python2.6/test/test_ioctl.pyc +lib/python2.6/test/test_ioctl.pyo +lib/python2.6/test/test_isinstance.py +lib/python2.6/test/test_isinstance.pyc +lib/python2.6/test/test_isinstance.pyo +lib/python2.6/test/test_iter.py +lib/python2.6/test/test_iter.pyc +lib/python2.6/test/test_iter.pyo +lib/python2.6/test/test_iterlen.py +lib/python2.6/test/test_iterlen.pyc +lib/python2.6/test/test_iterlen.pyo +lib/python2.6/test/test_itertools.py +lib/python2.6/test/test_itertools.pyc +lib/python2.6/test/test_itertools.pyo +lib/python2.6/test/test_json.py +lib/python2.6/test/test_json.pyc +lib/python2.6/test/test_json.pyo +lib/python2.6/test/test_kqueue.py +lib/python2.6/test/test_kqueue.pyc +lib/python2.6/test/test_kqueue.pyo +lib/python2.6/test/test_largefile.py +lib/python2.6/test/test_largefile.pyc +lib/python2.6/test/test_largefile.pyo +lib/python2.6/test/test_lib2to3.py +lib/python2.6/test/test_lib2to3.pyc +lib/python2.6/test/test_lib2to3.pyo +lib/python2.6/test/test_linuxaudiodev.py +lib/python2.6/test/test_linuxaudiodev.pyc +lib/python2.6/test/test_linuxaudiodev.pyo +lib/python2.6/test/test_list.py +lib/python2.6/test/test_list.pyc +lib/python2.6/test/test_list.pyo +lib/python2.6/test/test_locale.py +lib/python2.6/test/test_locale.pyc +lib/python2.6/test/test_locale.pyo +lib/python2.6/test/test_logging.py +lib/python2.6/test/test_logging.pyc +lib/python2.6/test/test_logging.pyo +lib/python2.6/test/test_long.py +lib/python2.6/test/test_long.pyc +lib/python2.6/test/test_long.pyo +lib/python2.6/test/test_long_future.py +lib/python2.6/test/test_long_future.pyc +lib/python2.6/test/test_long_future.pyo +lib/python2.6/test/test_longexp.py +lib/python2.6/test/test_longexp.pyc +lib/python2.6/test/test_longexp.pyo +lib/python2.6/test/test_macos.py +lib/python2.6/test/test_macos.pyc +lib/python2.6/test/test_macos.pyo +lib/python2.6/test/test_macostools.py +lib/python2.6/test/test_macostools.pyc +lib/python2.6/test/test_macostools.pyo +lib/python2.6/test/test_macpath.py +lib/python2.6/test/test_macpath.pyc +lib/python2.6/test/test_macpath.pyo +lib/python2.6/test/test_mailbox.py +lib/python2.6/test/test_mailbox.pyc +lib/python2.6/test/test_mailbox.pyo +lib/python2.6/test/test_marshal.py +lib/python2.6/test/test_marshal.pyc +lib/python2.6/test/test_marshal.pyo +lib/python2.6/test/test_math.py +lib/python2.6/test/test_math.pyc +lib/python2.6/test/test_math.pyo +lib/python2.6/test/test_md5.py +lib/python2.6/test/test_md5.pyc +lib/python2.6/test/test_md5.pyo +lib/python2.6/test/test_memoryio.py +lib/python2.6/test/test_memoryio.pyc +lib/python2.6/test/test_memoryio.pyo +lib/python2.6/test/test_mhlib.py +lib/python2.6/test/test_mhlib.pyc +lib/python2.6/test/test_mhlib.pyo +lib/python2.6/test/test_mimetools.py +lib/python2.6/test/test_mimetools.pyc +lib/python2.6/test/test_mimetools.pyo +lib/python2.6/test/test_mimetypes.py +lib/python2.6/test/test_mimetypes.pyc +lib/python2.6/test/test_mimetypes.pyo +lib/python2.6/test/test_minidom.py +lib/python2.6/test/test_minidom.pyc +lib/python2.6/test/test_minidom.pyo +lib/python2.6/test/test_mmap.py +lib/python2.6/test/test_mmap.pyc +lib/python2.6/test/test_mmap.pyo +lib/python2.6/test/test_module.py +lib/python2.6/test/test_module.pyc +lib/python2.6/test/test_module.pyo +lib/python2.6/test/test_modulefinder.py +lib/python2.6/test/test_modulefinder.pyc +lib/python2.6/test/test_modulefinder.pyo +lib/python2.6/test/test_multibytecodec.py +lib/python2.6/test/test_multibytecodec.pyc +lib/python2.6/test/test_multibytecodec.pyo +lib/python2.6/test/test_multibytecodec_support.py +lib/python2.6/test/test_multibytecodec_support.pyc +lib/python2.6/test/test_multibytecodec_support.pyo +lib/python2.6/test/test_multifile.py +lib/python2.6/test/test_multifile.pyc +lib/python2.6/test/test_multifile.pyo +lib/python2.6/test/test_multiprocessing.py +lib/python2.6/test/test_multiprocessing.pyc +lib/python2.6/test/test_multiprocessing.pyo +lib/python2.6/test/test_mutants.py +lib/python2.6/test/test_mutants.pyc +lib/python2.6/test/test_mutants.pyo +lib/python2.6/test/test_mutex.py +lib/python2.6/test/test_mutex.pyc +lib/python2.6/test/test_mutex.pyo +lib/python2.6/test/test_netrc.py +lib/python2.6/test/test_netrc.pyc +lib/python2.6/test/test_netrc.pyo +lib/python2.6/test/test_new.py +lib/python2.6/test/test_new.pyc +lib/python2.6/test/test_new.pyo +lib/python2.6/test/test_nis.py +lib/python2.6/test/test_nis.pyc +lib/python2.6/test/test_nis.pyo +lib/python2.6/test/test_normalization.py +lib/python2.6/test/test_normalization.pyc +lib/python2.6/test/test_normalization.pyo +lib/python2.6/test/test_ntpath.py +lib/python2.6/test/test_ntpath.pyc +lib/python2.6/test/test_ntpath.pyo +lib/python2.6/test/test_old_mailbox.py +lib/python2.6/test/test_old_mailbox.pyc +lib/python2.6/test/test_old_mailbox.pyo +lib/python2.6/test/test_opcodes.py +lib/python2.6/test/test_opcodes.pyc +lib/python2.6/test/test_opcodes.pyo +lib/python2.6/test/test_openpty.py +lib/python2.6/test/test_openpty.pyc +lib/python2.6/test/test_openpty.pyo +lib/python2.6/test/test_operator.py +lib/python2.6/test/test_operator.pyc +lib/python2.6/test/test_operator.pyo +lib/python2.6/test/test_optparse.py +lib/python2.6/test/test_optparse.pyc +lib/python2.6/test/test_optparse.pyo +lib/python2.6/test/test_os.py +lib/python2.6/test/test_os.pyc +lib/python2.6/test/test_os.pyo +lib/python2.6/test/test_ossaudiodev.py +lib/python2.6/test/test_ossaudiodev.pyc +lib/python2.6/test/test_ossaudiodev.pyo +lib/python2.6/test/test_parser.py +lib/python2.6/test/test_parser.pyc +lib/python2.6/test/test_parser.pyo +lib/python2.6/test/test_peepholer.py +lib/python2.6/test/test_peepholer.pyc +lib/python2.6/test/test_peepholer.pyo +lib/python2.6/test/test_pep247.py +lib/python2.6/test/test_pep247.pyc +lib/python2.6/test/test_pep247.pyo +lib/python2.6/test/test_pep263.py +lib/python2.6/test/test_pep263.pyc +lib/python2.6/test/test_pep263.pyo +lib/python2.6/test/test_pep277.py +lib/python2.6/test/test_pep277.pyc +lib/python2.6/test/test_pep277.pyo +lib/python2.6/test/test_pep292.py +lib/python2.6/test/test_pep292.pyc +lib/python2.6/test/test_pep292.pyo +lib/python2.6/test/test_pep352.py +lib/python2.6/test/test_pep352.pyc +lib/python2.6/test/test_pep352.pyo +lib/python2.6/test/test_pickle.py +lib/python2.6/test/test_pickle.pyc +lib/python2.6/test/test_pickle.pyo +lib/python2.6/test/test_pickletools.py +lib/python2.6/test/test_pickletools.pyc +lib/python2.6/test/test_pickletools.pyo +lib/python2.6/test/test_pipes.py +lib/python2.6/test/test_pipes.pyc +lib/python2.6/test/test_pipes.pyo +lib/python2.6/test/test_pkg.py +lib/python2.6/test/test_pkg.pyc +lib/python2.6/test/test_pkg.pyo +lib/python2.6/test/test_pkgimport.py +lib/python2.6/test/test_pkgimport.pyc +lib/python2.6/test/test_pkgimport.pyo +lib/python2.6/test/test_pkgutil.py +lib/python2.6/test/test_pkgutil.pyc +lib/python2.6/test/test_pkgutil.pyo +lib/python2.6/test/test_platform.py +lib/python2.6/test/test_platform.pyc +lib/python2.6/test/test_platform.pyo +lib/python2.6/test/test_plistlib.py +lib/python2.6/test/test_plistlib.pyc +lib/python2.6/test/test_plistlib.pyo +lib/python2.6/test/test_poll.py +lib/python2.6/test/test_poll.pyc +lib/python2.6/test/test_poll.pyo +lib/python2.6/test/test_popen.py +lib/python2.6/test/test_popen.pyc +lib/python2.6/test/test_popen.pyo +lib/python2.6/test/test_popen2.py +lib/python2.6/test/test_popen2.pyc +lib/python2.6/test/test_popen2.pyo +lib/python2.6/test/test_poplib.py +lib/python2.6/test/test_poplib.pyc +lib/python2.6/test/test_poplib.pyo +lib/python2.6/test/test_posix.py +lib/python2.6/test/test_posix.pyc +lib/python2.6/test/test_posix.pyo +lib/python2.6/test/test_posixpath.py +lib/python2.6/test/test_posixpath.pyc +lib/python2.6/test/test_posixpath.pyo +lib/python2.6/test/test_pow.py +lib/python2.6/test/test_pow.pyc +lib/python2.6/test/test_pow.pyo +lib/python2.6/test/test_pprint.py +lib/python2.6/test/test_pprint.pyc +lib/python2.6/test/test_pprint.pyo +lib/python2.6/test/test_print.py +lib/python2.6/test/test_print.pyc +lib/python2.6/test/test_print.pyo +lib/python2.6/test/test_profile.py +lib/python2.6/test/test_profile.pyc +lib/python2.6/test/test_profile.pyo +lib/python2.6/test/test_profilehooks.py +lib/python2.6/test/test_profilehooks.pyc +lib/python2.6/test/test_profilehooks.pyo +lib/python2.6/test/test_property.py +lib/python2.6/test/test_property.pyc +lib/python2.6/test/test_property.pyo +lib/python2.6/test/test_pstats.py +lib/python2.6/test/test_pstats.pyc +lib/python2.6/test/test_pstats.pyo +lib/python2.6/test/test_pty.py +lib/python2.6/test/test_pty.pyc +lib/python2.6/test/test_pty.pyo +lib/python2.6/test/test_pwd.py +lib/python2.6/test/test_pwd.pyc +lib/python2.6/test/test_pwd.pyo +lib/python2.6/test/test_py3kwarn.py +lib/python2.6/test/test_py3kwarn.pyc +lib/python2.6/test/test_py3kwarn.pyo +lib/python2.6/test/test_pyclbr.py +lib/python2.6/test/test_pyclbr.pyc +lib/python2.6/test/test_pyclbr.pyo +lib/python2.6/test/test_pydoc.py +lib/python2.6/test/test_pydoc.pyc +lib/python2.6/test/test_pydoc.pyo +lib/python2.6/test/test_pyexpat.py +lib/python2.6/test/test_pyexpat.pyc +lib/python2.6/test/test_pyexpat.pyo +lib/python2.6/test/test_queue.py +lib/python2.6/test/test_queue.pyc +lib/python2.6/test/test_queue.pyo +lib/python2.6/test/test_quopri.py +lib/python2.6/test/test_quopri.pyc +lib/python2.6/test/test_quopri.pyo +lib/python2.6/test/test_random.py +lib/python2.6/test/test_random.pyc +lib/python2.6/test/test_random.pyo +lib/python2.6/test/test_re.py +lib/python2.6/test/test_re.pyc +lib/python2.6/test/test_re.pyo +lib/python2.6/test/test_repr.py +lib/python2.6/test/test_repr.pyc +lib/python2.6/test/test_repr.pyo +lib/python2.6/test/test_resource.py +lib/python2.6/test/test_resource.pyc +lib/python2.6/test/test_resource.pyo +lib/python2.6/test/test_rfc822.py +lib/python2.6/test/test_rfc822.pyc +lib/python2.6/test/test_rfc822.pyo +lib/python2.6/test/test_richcmp.py +lib/python2.6/test/test_richcmp.pyc +lib/python2.6/test/test_richcmp.pyo +lib/python2.6/test/test_robotparser.py +lib/python2.6/test/test_robotparser.pyc +lib/python2.6/test/test_robotparser.pyo +lib/python2.6/test/test_runpy.py +lib/python2.6/test/test_runpy.pyc +lib/python2.6/test/test_runpy.pyo +lib/python2.6/test/test_sax.py +lib/python2.6/test/test_sax.pyc +lib/python2.6/test/test_sax.pyo +lib/python2.6/test/test_scope.py +lib/python2.6/test/test_scope.pyc +lib/python2.6/test/test_scope.pyo +lib/python2.6/test/test_scriptpackages.py +lib/python2.6/test/test_scriptpackages.pyc +lib/python2.6/test/test_scriptpackages.pyo +lib/python2.6/test/test_select.py +lib/python2.6/test/test_select.pyc +lib/python2.6/test/test_select.pyo +lib/python2.6/test/test_set.py +lib/python2.6/test/test_set.pyc +lib/python2.6/test/test_set.pyo +lib/python2.6/test/test_sets.py +lib/python2.6/test/test_sets.pyc +lib/python2.6/test/test_sets.pyo +lib/python2.6/test/test_sgmllib.py +lib/python2.6/test/test_sgmllib.pyc +lib/python2.6/test/test_sgmllib.pyo +lib/python2.6/test/test_sha.py +lib/python2.6/test/test_sha.pyc +lib/python2.6/test/test_sha.pyo +lib/python2.6/test/test_shelve.py +lib/python2.6/test/test_shelve.pyc +lib/python2.6/test/test_shelve.pyo +lib/python2.6/test/test_shlex.py +lib/python2.6/test/test_shlex.pyc +lib/python2.6/test/test_shlex.pyo +lib/python2.6/test/test_shutil.py +lib/python2.6/test/test_shutil.pyc +lib/python2.6/test/test_shutil.pyo +lib/python2.6/test/test_signal.py +lib/python2.6/test/test_signal.pyc +lib/python2.6/test/test_signal.pyo +lib/python2.6/test/test_site.py +lib/python2.6/test/test_site.pyc +lib/python2.6/test/test_site.pyo +lib/python2.6/test/test_slice.py +lib/python2.6/test/test_slice.pyc +lib/python2.6/test/test_slice.pyo +lib/python2.6/test/test_smtplib.py +lib/python2.6/test/test_smtplib.pyc +lib/python2.6/test/test_smtplib.pyo +lib/python2.6/test/test_socket.py +lib/python2.6/test/test_socket.pyc +lib/python2.6/test/test_socket.pyo +lib/python2.6/test/test_socketserver.py +lib/python2.6/test/test_socketserver.pyc +lib/python2.6/test/test_socketserver.pyo +lib/python2.6/test/test_softspace.py +lib/python2.6/test/test_softspace.pyc +lib/python2.6/test/test_softspace.pyo +lib/python2.6/test/test_sort.py +lib/python2.6/test/test_sort.pyc +lib/python2.6/test/test_sort.pyo +lib/python2.6/test/test_sqlite.py +lib/python2.6/test/test_sqlite.pyc +lib/python2.6/test/test_sqlite.pyo +lib/python2.6/test/test_ssl.py +lib/python2.6/test/test_ssl.pyc +lib/python2.6/test/test_ssl.pyo +lib/python2.6/test/test_startfile.py +lib/python2.6/test/test_startfile.pyc +lib/python2.6/test/test_startfile.pyo +lib/python2.6/test/test_str.py +lib/python2.6/test/test_str.pyc +lib/python2.6/test/test_str.pyo +lib/python2.6/test/test_strftime.py +lib/python2.6/test/test_strftime.pyc +lib/python2.6/test/test_strftime.pyo +lib/python2.6/test/test_string.py +lib/python2.6/test/test_string.pyc +lib/python2.6/test/test_string.pyo +lib/python2.6/test/test_stringprep.py +lib/python2.6/test/test_stringprep.pyc +lib/python2.6/test/test_stringprep.pyo +lib/python2.6/test/test_strop.py +lib/python2.6/test/test_strop.pyc +lib/python2.6/test/test_strop.pyo +lib/python2.6/test/test_strptime.py +lib/python2.6/test/test_strptime.pyc +lib/python2.6/test/test_strptime.pyo +lib/python2.6/test/test_struct.py +lib/python2.6/test/test_struct.pyc +lib/python2.6/test/test_struct.pyo +lib/python2.6/test/test_structmembers.py +lib/python2.6/test/test_structmembers.pyc +lib/python2.6/test/test_structmembers.pyo +lib/python2.6/test/test_structseq.py +lib/python2.6/test/test_structseq.pyc +lib/python2.6/test/test_structseq.pyo +lib/python2.6/test/test_subprocess.py +lib/python2.6/test/test_subprocess.pyc +lib/python2.6/test/test_subprocess.pyo +lib/python2.6/test/test_sunaudiodev.py +lib/python2.6/test/test_sunaudiodev.pyc +lib/python2.6/test/test_sunaudiodev.pyo +lib/python2.6/test/test_sundry.py +lib/python2.6/test/test_sundry.pyc +lib/python2.6/test/test_sundry.pyo +lib/python2.6/test/test_support.py +lib/python2.6/test/test_support.pyc +lib/python2.6/test/test_support.pyo +lib/python2.6/test/test_symtable.py +lib/python2.6/test/test_symtable.pyc +lib/python2.6/test/test_symtable.pyo +lib/python2.6/test/test_syntax.py +lib/python2.6/test/test_syntax.pyc +lib/python2.6/test/test_syntax.pyo +lib/python2.6/test/test_sys.py +lib/python2.6/test/test_sys.pyc +lib/python2.6/test/test_sys.pyo +lib/python2.6/test/test_tarfile.py +lib/python2.6/test/test_tarfile.pyc +lib/python2.6/test/test_tarfile.pyo +lib/python2.6/test/test_tcl.py +lib/python2.6/test/test_tcl.pyc +lib/python2.6/test/test_tcl.pyo +lib/python2.6/test/test_telnetlib.py +lib/python2.6/test/test_telnetlib.pyc +lib/python2.6/test/test_telnetlib.pyo +lib/python2.6/test/test_tempfile.py +lib/python2.6/test/test_tempfile.pyc +lib/python2.6/test/test_tempfile.pyo +lib/python2.6/test/test_textwrap.py +lib/python2.6/test/test_textwrap.pyc +lib/python2.6/test/test_textwrap.pyo +lib/python2.6/test/test_thread.py +lib/python2.6/test/test_thread.pyc +lib/python2.6/test/test_thread.pyo +lib/python2.6/test/test_threaded_import.py +lib/python2.6/test/test_threaded_import.pyc +lib/python2.6/test/test_threaded_import.pyo +lib/python2.6/test/test_threadedtempfile.py +lib/python2.6/test/test_threadedtempfile.pyc +lib/python2.6/test/test_threadedtempfile.pyo +lib/python2.6/test/test_threading.py +lib/python2.6/test/test_threading.pyc +lib/python2.6/test/test_threading.pyo +lib/python2.6/test/test_threading_local.py +lib/python2.6/test/test_threading_local.pyc +lib/python2.6/test/test_threading_local.pyo +lib/python2.6/test/test_threadsignals.py +lib/python2.6/test/test_threadsignals.pyc +lib/python2.6/test/test_threadsignals.pyo +lib/python2.6/test/test_time.py +lib/python2.6/test/test_time.pyc +lib/python2.6/test/test_time.pyo +lib/python2.6/test/test_timeout.py +lib/python2.6/test/test_timeout.pyc +lib/python2.6/test/test_timeout.pyo +lib/python2.6/test/test_tokenize.py +lib/python2.6/test/test_tokenize.pyc +lib/python2.6/test/test_tokenize.pyo +lib/python2.6/test/test_trace.py +lib/python2.6/test/test_trace.pyc +lib/python2.6/test/test_trace.pyo +lib/python2.6/test/test_traceback.py +lib/python2.6/test/test_traceback.pyc +lib/python2.6/test/test_traceback.pyo +lib/python2.6/test/test_transformer.py +lib/python2.6/test/test_transformer.pyc +lib/python2.6/test/test_transformer.pyo +lib/python2.6/test/test_tuple.py +lib/python2.6/test/test_tuple.pyc +lib/python2.6/test/test_tuple.pyo +lib/python2.6/test/test_typechecks.py +lib/python2.6/test/test_typechecks.pyc +lib/python2.6/test/test_typechecks.pyo +lib/python2.6/test/test_types.py +lib/python2.6/test/test_types.pyc +lib/python2.6/test/test_types.pyo +lib/python2.6/test/test_ucn.py +lib/python2.6/test/test_ucn.pyc +lib/python2.6/test/test_ucn.pyo +lib/python2.6/test/test_unary.py +lib/python2.6/test/test_unary.pyc +lib/python2.6/test/test_unary.pyo +lib/python2.6/test/test_undocumented_details.py +lib/python2.6/test/test_undocumented_details.pyc +lib/python2.6/test/test_undocumented_details.pyo +lib/python2.6/test/test_unicode.py +lib/python2.6/test/test_unicode.pyc +lib/python2.6/test/test_unicode.pyo +lib/python2.6/test/test_unicode_file.py +lib/python2.6/test/test_unicode_file.pyc +lib/python2.6/test/test_unicode_file.pyo +lib/python2.6/test/test_unicodedata.py +lib/python2.6/test/test_unicodedata.pyc +lib/python2.6/test/test_unicodedata.pyo +lib/python2.6/test/test_unittest.py +lib/python2.6/test/test_unittest.pyc +lib/python2.6/test/test_unittest.pyo +lib/python2.6/test/test_univnewlines.py +lib/python2.6/test/test_univnewlines.pyc +lib/python2.6/test/test_univnewlines.pyo +lib/python2.6/test/test_unpack.py +lib/python2.6/test/test_unpack.pyc +lib/python2.6/test/test_unpack.pyo +lib/python2.6/test/test_urllib.py +lib/python2.6/test/test_urllib.pyc +lib/python2.6/test/test_urllib.pyo +lib/python2.6/test/test_urllib2.py +lib/python2.6/test/test_urllib2.pyc +lib/python2.6/test/test_urllib2.pyo +lib/python2.6/test/test_urllib2_localnet.py +lib/python2.6/test/test_urllib2_localnet.pyc +lib/python2.6/test/test_urllib2_localnet.pyo +lib/python2.6/test/test_urllib2net.py +lib/python2.6/test/test_urllib2net.pyc +lib/python2.6/test/test_urllib2net.pyo +lib/python2.6/test/test_urllibnet.py +lib/python2.6/test/test_urllibnet.pyc +lib/python2.6/test/test_urllibnet.pyo +lib/python2.6/test/test_urlparse.py +lib/python2.6/test/test_urlparse.pyc +lib/python2.6/test/test_urlparse.pyo +lib/python2.6/test/test_userdict.py +lib/python2.6/test/test_userdict.pyc +lib/python2.6/test/test_userdict.pyo +lib/python2.6/test/test_userlist.py +lib/python2.6/test/test_userlist.pyc +lib/python2.6/test/test_userlist.pyo +lib/python2.6/test/test_userstring.py +lib/python2.6/test/test_userstring.pyc +lib/python2.6/test/test_userstring.pyo +lib/python2.6/test/test_uu.py +lib/python2.6/test/test_uu.pyc +lib/python2.6/test/test_uu.pyo +lib/python2.6/test/test_uuid.py +lib/python2.6/test/test_uuid.pyc +lib/python2.6/test/test_uuid.pyo +lib/python2.6/test/test_wait3.py +lib/python2.6/test/test_wait3.pyc +lib/python2.6/test/test_wait3.pyo +lib/python2.6/test/test_wait4.py +lib/python2.6/test/test_wait4.pyc +lib/python2.6/test/test_wait4.pyo +lib/python2.6/test/test_warnings.py +lib/python2.6/test/test_warnings.pyc +lib/python2.6/test/test_warnings.pyo +lib/python2.6/test/test_wave.py +lib/python2.6/test/test_wave.pyc +lib/python2.6/test/test_wave.pyo +lib/python2.6/test/test_weakref.py +lib/python2.6/test/test_weakref.pyc +lib/python2.6/test/test_weakref.pyo +lib/python2.6/test/test_whichdb.py +lib/python2.6/test/test_whichdb.pyc +lib/python2.6/test/test_whichdb.pyo +lib/python2.6/test/test_winreg.py +lib/python2.6/test/test_winreg.pyc +lib/python2.6/test/test_winreg.pyo +lib/python2.6/test/test_winsound.py +lib/python2.6/test/test_winsound.pyc +lib/python2.6/test/test_winsound.pyo +lib/python2.6/test/test_with.py +lib/python2.6/test/test_with.pyc +lib/python2.6/test/test_with.pyo +lib/python2.6/test/test_wsgiref.py +lib/python2.6/test/test_wsgiref.pyc +lib/python2.6/test/test_wsgiref.pyo +lib/python2.6/test/test_xdrlib.py +lib/python2.6/test/test_xdrlib.pyc +lib/python2.6/test/test_xdrlib.pyo +lib/python2.6/test/test_xml_etree.py +lib/python2.6/test/test_xml_etree.pyc +lib/python2.6/test/test_xml_etree.pyo +lib/python2.6/test/test_xml_etree_c.py +lib/python2.6/test/test_xml_etree_c.pyc +lib/python2.6/test/test_xml_etree_c.pyo +lib/python2.6/test/test_xmllib.py +lib/python2.6/test/test_xmllib.pyc +lib/python2.6/test/test_xmllib.pyo +lib/python2.6/test/test_xmlrpc.py +lib/python2.6/test/test_xmlrpc.pyc +lib/python2.6/test/test_xmlrpc.pyo +lib/python2.6/test/test_xpickle.py +lib/python2.6/test/test_xpickle.pyc +lib/python2.6/test/test_xpickle.pyo +lib/python2.6/test/test_xrange.py +lib/python2.6/test/test_xrange.pyc +lib/python2.6/test/test_xrange.pyo +lib/python2.6/test/test_zipfile.py +lib/python2.6/test/test_zipfile.pyc +lib/python2.6/test/test_zipfile.pyo +lib/python2.6/test/test_zipfile64.py +lib/python2.6/test/test_zipfile64.pyc +lib/python2.6/test/test_zipfile64.pyo +lib/python2.6/test/test_zipimport.py +lib/python2.6/test/test_zipimport.pyc +lib/python2.6/test/test_zipimport.pyo +lib/python2.6/test/test_zlib.py +lib/python2.6/test/test_zlib.pyc +lib/python2.6/test/test_zlib.pyo +lib/python2.6/test/testall.py +lib/python2.6/test/testall.pyc +lib/python2.6/test/testall.pyo +lib/python2.6/test/testcodec.py +lib/python2.6/test/testcodec.pyc +lib/python2.6/test/testcodec.pyo +lib/python2.6/test/testimg.uue +lib/python2.6/test/testimgr.uue +lib/python2.6/test/testrgb.uue +lib/python2.6/test/testtar.tar +lib/python2.6/test/tf_inherit_check.py +lib/python2.6/test/tf_inherit_check.pyc +lib/python2.6/test/tf_inherit_check.pyo +lib/python2.6/test/threaded_import_hangers.py +lib/python2.6/test/threaded_import_hangers.pyc +lib/python2.6/test/threaded_import_hangers.pyo +lib/python2.6/test/time_hashlib.py +lib/python2.6/test/time_hashlib.pyc +lib/python2.6/test/time_hashlib.pyo +lib/python2.6/test/tokenize_tests.txt +lib/python2.6/test/warning_tests.py +lib/python2.6/test/warning_tests.pyc +lib/python2.6/test/warning_tests.pyo +lib/python2.6/test/wrongcert.pem +lib/python2.6/test/xmltests.py +lib/python2.6/test/xmltests.pyc +lib/python2.6/test/xmltests.pyo diff --git a/lang/python/2.6/pkg/PLIST-tkinter b/lang/python/2.6/pkg/PLIST-tkinter new file mode 100644 index 00000000000..70d81e2b3b6 --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-tkinter @@ -0,0 +1,56 @@ +@comment $OpenBSD: PLIST-tkinter,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python-tkinter->=2.6,<2.6 +lib/python2.6/lib-dynload/_tkinter.so +lib/python2.6/lib-tk/ +lib/python2.6/lib-tk/Canvas.py +lib/python2.6/lib-tk/Canvas.pyc +lib/python2.6/lib-tk/Canvas.pyo +lib/python2.6/lib-tk/Dialog.py +lib/python2.6/lib-tk/Dialog.pyc +lib/python2.6/lib-tk/Dialog.pyo +lib/python2.6/lib-tk/FileDialog.py +lib/python2.6/lib-tk/FileDialog.pyc +lib/python2.6/lib-tk/FileDialog.pyo +lib/python2.6/lib-tk/FixTk.py +lib/python2.6/lib-tk/FixTk.pyc +lib/python2.6/lib-tk/FixTk.pyo +lib/python2.6/lib-tk/ScrolledText.py +lib/python2.6/lib-tk/ScrolledText.pyc +lib/python2.6/lib-tk/ScrolledText.pyo +lib/python2.6/lib-tk/SimpleDialog.py +lib/python2.6/lib-tk/SimpleDialog.pyc +lib/python2.6/lib-tk/SimpleDialog.pyo +lib/python2.6/lib-tk/Tix.py +lib/python2.6/lib-tk/Tix.pyc +lib/python2.6/lib-tk/Tix.pyo +lib/python2.6/lib-tk/Tkconstants.py +lib/python2.6/lib-tk/Tkconstants.pyc +lib/python2.6/lib-tk/Tkconstants.pyo +lib/python2.6/lib-tk/Tkdnd.py +lib/python2.6/lib-tk/Tkdnd.pyc +lib/python2.6/lib-tk/Tkdnd.pyo +lib/python2.6/lib-tk/Tkinter.py +lib/python2.6/lib-tk/Tkinter.pyc +lib/python2.6/lib-tk/Tkinter.pyo +lib/python2.6/lib-tk/tkColorChooser.py +lib/python2.6/lib-tk/tkColorChooser.pyc +lib/python2.6/lib-tk/tkColorChooser.pyo +lib/python2.6/lib-tk/tkCommonDialog.py +lib/python2.6/lib-tk/tkCommonDialog.pyc +lib/python2.6/lib-tk/tkCommonDialog.pyo +lib/python2.6/lib-tk/tkFileDialog.py +lib/python2.6/lib-tk/tkFileDialog.pyc +lib/python2.6/lib-tk/tkFileDialog.pyo +lib/python2.6/lib-tk/tkFont.py +lib/python2.6/lib-tk/tkFont.pyc +lib/python2.6/lib-tk/tkFont.pyo +lib/python2.6/lib-tk/tkMessageBox.py +lib/python2.6/lib-tk/tkMessageBox.pyc +lib/python2.6/lib-tk/tkMessageBox.pyo +lib/python2.6/lib-tk/tkSimpleDialog.py +lib/python2.6/lib-tk/tkSimpleDialog.pyc +lib/python2.6/lib-tk/tkSimpleDialog.pyo +lib/python2.6/lib-tk/turtle.py +lib/python2.6/lib-tk/turtle.pyc +lib/python2.6/lib-tk/turtle.pyo diff --git a/lang/python/2.6/pkg/PLIST-tools b/lang/python/2.6/pkg/PLIST-tools new file mode 100644 index 00000000000..47066910310 --- /dev/null +++ b/lang/python/2.6/pkg/PLIST-tools @@ -0,0 +1,265 @@ +@comment $OpenBSD: PLIST-tools,v 1.1 2008/10/18 12:03:56 djm Exp $ +@option no-default-conflict +@conflict python-tools->=2.6,<2.6 +lib/python2.6/Tools/ +lib/python2.6/Tools/README +lib/python2.6/Tools/audiopy/ +lib/python2.6/Tools/audiopy/README +lib/python2.6/Tools/audiopy/audiopy +lib/python2.6/Tools/bgen/ +lib/python2.6/Tools/bgen/README +lib/python2.6/Tools/bgen/bgen/ +lib/python2.6/Tools/bgen/bgen/bgen.py +lib/python2.6/Tools/bgen/bgen/bgenBuffer.py +lib/python2.6/Tools/bgen/bgen/bgenGenerator.py +lib/python2.6/Tools/bgen/bgen/bgenGeneratorGroup.py +lib/python2.6/Tools/bgen/bgen/bgenHeapBuffer.py +lib/python2.6/Tools/bgen/bgen/bgenModule.py +lib/python2.6/Tools/bgen/bgen/bgenObjectDefinition.py +lib/python2.6/Tools/bgen/bgen/bgenOutput.py +lib/python2.6/Tools/bgen/bgen/bgenStackBuffer.py +lib/python2.6/Tools/bgen/bgen/bgenStringBuffer.py +lib/python2.6/Tools/bgen/bgen/bgenType.py +lib/python2.6/Tools/bgen/bgen/bgenVariable.py +lib/python2.6/Tools/bgen/bgen/macsupport.py +lib/python2.6/Tools/bgen/bgen/scantools.py +lib/python2.6/Tools/buildbot/ +lib/python2.6/Tools/buildbot/build.bat +lib/python2.6/Tools/buildbot/buildmsi.bat +lib/python2.6/Tools/buildbot/clean.bat +lib/python2.6/Tools/buildbot/external.bat +lib/python2.6/Tools/buildbot/test.bat +lib/python2.6/Tools/compiler/ +lib/python2.6/Tools/compiler/ACKS +lib/python2.6/Tools/compiler/README +lib/python2.6/Tools/compiler/ast.txt +lib/python2.6/Tools/compiler/astgen.py +lib/python2.6/Tools/compiler/compile.py +lib/python2.6/Tools/compiler/demo.py +lib/python2.6/Tools/compiler/dumppyc.py +lib/python2.6/Tools/compiler/regrtest.py +lib/python2.6/Tools/compiler/stacktest.py +lib/python2.6/Tools/faqwiz/ +lib/python2.6/Tools/faqwiz/README +lib/python2.6/Tools/faqwiz/faqconf.py +lib/python2.6/Tools/faqwiz/faqcust.py +lib/python2.6/Tools/faqwiz/faqw.py +lib/python2.6/Tools/faqwiz/faqwiz.py +lib/python2.6/Tools/faqwiz/move-faqwiz.sh +lib/python2.6/Tools/framer/ +lib/python2.6/Tools/framer/README.txt +lib/python2.6/Tools/framer/TODO.txt +lib/python2.6/Tools/framer/example.py +lib/python2.6/Tools/framer/framer/ +lib/python2.6/Tools/framer/framer/__init__.py +lib/python2.6/Tools/framer/framer/bases.py +lib/python2.6/Tools/framer/framer/function.py +lib/python2.6/Tools/framer/framer/member.py +lib/python2.6/Tools/framer/framer/slots.py +lib/python2.6/Tools/framer/framer/struct.py +lib/python2.6/Tools/framer/framer/structparse.py +lib/python2.6/Tools/framer/framer/template.py +lib/python2.6/Tools/framer/framer/util.py +lib/python2.6/Tools/freeze/ +lib/python2.6/Tools/freeze/README +lib/python2.6/Tools/freeze/bkfile.py +lib/python2.6/Tools/freeze/checkextensions.py +lib/python2.6/Tools/freeze/checkextensions_win32.py +lib/python2.6/Tools/freeze/extensions_win32.ini +lib/python2.6/Tools/freeze/freeze.py +lib/python2.6/Tools/freeze/hello.py +lib/python2.6/Tools/freeze/makeconfig.py +lib/python2.6/Tools/freeze/makefreeze.py +lib/python2.6/Tools/freeze/makemakefile.py +lib/python2.6/Tools/freeze/parsesetup.py +lib/python2.6/Tools/freeze/win32.html +lib/python2.6/Tools/freeze/winmakemakefile.py +lib/python2.6/Tools/i18n/ +lib/python2.6/Tools/i18n/makelocalealias.py +lib/python2.6/Tools/i18n/msgfmt.py +lib/python2.6/Tools/i18n/pygettext.py +lib/python2.6/Tools/modulator/ +lib/python2.6/Tools/modulator/EXAMPLE.py +lib/python2.6/Tools/modulator/README +lib/python2.6/Tools/modulator/ScrolledListbox.py +lib/python2.6/Tools/modulator/Templates/ +lib/python2.6/Tools/modulator/Templates/copyright +lib/python2.6/Tools/modulator/Templates/module_head +lib/python2.6/Tools/modulator/Templates/module_method +lib/python2.6/Tools/modulator/Templates/module_tail +lib/python2.6/Tools/modulator/Templates/object_head +lib/python2.6/Tools/modulator/Templates/object_method +lib/python2.6/Tools/modulator/Templates/object_mlist +lib/python2.6/Tools/modulator/Templates/object_new +lib/python2.6/Tools/modulator/Templates/object_structure +lib/python2.6/Tools/modulator/Templates/object_tail +lib/python2.6/Tools/modulator/Templates/object_tp_as_mapping +lib/python2.6/Tools/modulator/Templates/object_tp_as_number +lib/python2.6/Tools/modulator/Templates/object_tp_as_sequence +lib/python2.6/Tools/modulator/Templates/object_tp_call +lib/python2.6/Tools/modulator/Templates/object_tp_compare +lib/python2.6/Tools/modulator/Templates/object_tp_dealloc +lib/python2.6/Tools/modulator/Templates/object_tp_getattr +lib/python2.6/Tools/modulator/Templates/object_tp_hash +lib/python2.6/Tools/modulator/Templates/object_tp_print +lib/python2.6/Tools/modulator/Templates/object_tp_repr +lib/python2.6/Tools/modulator/Templates/object_tp_setattr +lib/python2.6/Tools/modulator/Templates/object_tp_str +lib/python2.6/Tools/modulator/Tkextra.py +lib/python2.6/Tools/modulator/genmodule.py +lib/python2.6/Tools/modulator/modulator.py +lib/python2.6/Tools/modulator/varsubst.py +lib/python2.6/Tools/msi/ +lib/python2.6/Tools/msi/README.txt +lib/python2.6/Tools/msi/msi.py +lib/python2.6/Tools/msi/msilib.py +lib/python2.6/Tools/msi/msisupport.c +lib/python2.6/Tools/msi/msisupport.mak +lib/python2.6/Tools/msi/schema.py +lib/python2.6/Tools/msi/sequence.py +lib/python2.6/Tools/msi/uisample.py +lib/python2.6/Tools/msi/uuids.py +lib/python2.6/Tools/pybench/ +lib/python2.6/Tools/pybench/Arithmetic.py +lib/python2.6/Tools/pybench/Calls.py +lib/python2.6/Tools/pybench/CommandLine.py +lib/python2.6/Tools/pybench/Constructs.py +lib/python2.6/Tools/pybench/Dict.py +lib/python2.6/Tools/pybench/Exceptions.py +lib/python2.6/Tools/pybench/Imports.py +lib/python2.6/Tools/pybench/Instances.py +lib/python2.6/Tools/pybench/LICENSE +lib/python2.6/Tools/pybench/Lists.py +lib/python2.6/Tools/pybench/Lookups.py +lib/python2.6/Tools/pybench/NewInstances.py +lib/python2.6/Tools/pybench/Numbers.py +lib/python2.6/Tools/pybench/README +lib/python2.6/Tools/pybench/Setup.py +lib/python2.6/Tools/pybench/Strings.py +lib/python2.6/Tools/pybench/Tuples.py +lib/python2.6/Tools/pybench/Unicode.py +lib/python2.6/Tools/pybench/clockres.py +lib/python2.6/Tools/pybench/package/ +lib/python2.6/Tools/pybench/package/__init__.py +lib/python2.6/Tools/pybench/package/submodule.py +lib/python2.6/Tools/pybench/pybench.py +lib/python2.6/Tools/pybench/systimes.py +lib/python2.6/Tools/pynche/ +lib/python2.6/Tools/pynche/ChipViewer.py +lib/python2.6/Tools/pynche/ColorDB.py +lib/python2.6/Tools/pynche/DetailsViewer.py +lib/python2.6/Tools/pynche/ListViewer.py +lib/python2.6/Tools/pynche/Main.py +lib/python2.6/Tools/pynche/PyncheWidget.py +lib/python2.6/Tools/pynche/README +lib/python2.6/Tools/pynche/StripViewer.py +lib/python2.6/Tools/pynche/Switchboard.py +lib/python2.6/Tools/pynche/TextViewer.py +lib/python2.6/Tools/pynche/TypeinViewer.py +lib/python2.6/Tools/pynche/X/ +lib/python2.6/Tools/pynche/X/rgb.txt +lib/python2.6/Tools/pynche/X/xlicense.txt +lib/python2.6/Tools/pynche/__init__.py +lib/python2.6/Tools/pynche/html40colors.txt +lib/python2.6/Tools/pynche/namedcolors.txt +lib/python2.6/Tools/pynche/pyColorChooser.py +lib/python2.6/Tools/pynche/pynche +lib/python2.6/Tools/pynche/pynche.pyw +lib/python2.6/Tools/pynche/webcolors.txt +lib/python2.6/Tools/pynche/websafe.txt +lib/python2.6/Tools/scripts/ +lib/python2.6/Tools/scripts/README +lib/python2.6/Tools/scripts/byext.py +lib/python2.6/Tools/scripts/byteyears.py +lib/python2.6/Tools/scripts/checkappend.py +lib/python2.6/Tools/scripts/checkpyc.py +lib/python2.6/Tools/scripts/classfix.py +lib/python2.6/Tools/scripts/cleanfuture.py +lib/python2.6/Tools/scripts/combinerefs.py +lib/python2.6/Tools/scripts/copytime.py +lib/python2.6/Tools/scripts/crlf.py +lib/python2.6/Tools/scripts/cvsfiles.py +lib/python2.6/Tools/scripts/db2pickle.py +lib/python2.6/Tools/scripts/diff.py +lib/python2.6/Tools/scripts/dutree.doc +lib/python2.6/Tools/scripts/dutree.py +lib/python2.6/Tools/scripts/eptags.py +lib/python2.6/Tools/scripts/finddiv.py +lib/python2.6/Tools/scripts/findlinksto.py +lib/python2.6/Tools/scripts/findnocoding.py +lib/python2.6/Tools/scripts/fixcid.py +lib/python2.6/Tools/scripts/fixdiv.py +lib/python2.6/Tools/scripts/fixheader.py +lib/python2.6/Tools/scripts/fixnotice.py +lib/python2.6/Tools/scripts/fixps.py +lib/python2.6/Tools/scripts/ftpmirror.py +lib/python2.6/Tools/scripts/google.py +lib/python2.6/Tools/scripts/gprof2html.py +lib/python2.6/Tools/scripts/h2py.py +lib/python2.6/Tools/scripts/hotshotmain.py +lib/python2.6/Tools/scripts/idle +lib/python2.6/Tools/scripts/ifdef.py +lib/python2.6/Tools/scripts/lfcr.py +lib/python2.6/Tools/scripts/linktree.py +lib/python2.6/Tools/scripts/lll.py +lib/python2.6/Tools/scripts/logmerge.py +lib/python2.6/Tools/scripts/mailerdaemon.py +lib/python2.6/Tools/scripts/md5sum.py +lib/python2.6/Tools/scripts/methfix.py +lib/python2.6/Tools/scripts/mkreal.py +lib/python2.6/Tools/scripts/ndiff.py +lib/python2.6/Tools/scripts/nm2def.py +lib/python2.6/Tools/scripts/objgraph.py +lib/python2.6/Tools/scripts/parseentities.py +lib/python2.6/Tools/scripts/pathfix.py +lib/python2.6/Tools/scripts/pdeps.py +lib/python2.6/Tools/scripts/pickle2db.py +lib/python2.6/Tools/scripts/pindent.py +lib/python2.6/Tools/scripts/ptags.py +lib/python2.6/Tools/scripts/pydoc +@comment lib/python2.6/Tools/scripts/pydoc.orig +lib/python2.6/Tools/scripts/pydocgui.pyw +lib/python2.6/Tools/scripts/pysource.py +lib/python2.6/Tools/scripts/redemo.py +lib/python2.6/Tools/scripts/reindent.py +lib/python2.6/Tools/scripts/rgrep.py +lib/python2.6/Tools/scripts/setup.py +lib/python2.6/Tools/scripts/suff.py +lib/python2.6/Tools/scripts/svneol.py +lib/python2.6/Tools/scripts/texcheck.py +lib/python2.6/Tools/scripts/texi2html.py +lib/python2.6/Tools/scripts/treesync.py +lib/python2.6/Tools/scripts/untabify.py +lib/python2.6/Tools/scripts/which.py +lib/python2.6/Tools/scripts/xxci.py +lib/python2.6/Tools/unicode/ +lib/python2.6/Tools/unicode/Makefile +lib/python2.6/Tools/unicode/comparecodecs.py +lib/python2.6/Tools/unicode/gencjkcodecs.py +lib/python2.6/Tools/unicode/gencodec.py +lib/python2.6/Tools/unicode/listcodecs.py +lib/python2.6/Tools/unicode/makeunicodedata.py +lib/python2.6/Tools/unicode/mkstringprep.py +lib/python2.6/Tools/unicode/python-mappings/ +lib/python2.6/Tools/unicode/python-mappings/CP1140.TXT +lib/python2.6/Tools/unicode/python-mappings/KOI8-U.TXT +lib/python2.6/Tools/unicode/python-mappings/TIS-620.TXT +lib/python2.6/Tools/versioncheck/ +lib/python2.6/Tools/versioncheck/README +lib/python2.6/Tools/versioncheck/_checkversion.py +lib/python2.6/Tools/versioncheck/checkversions.py +lib/python2.6/Tools/versioncheck/pyversioncheck.py +lib/python2.6/Tools/webchecker/ +lib/python2.6/Tools/webchecker/README +lib/python2.6/Tools/webchecker/tktools.py +lib/python2.6/Tools/webchecker/wcgui.py +lib/python2.6/Tools/webchecker/wcmac.py +lib/python2.6/Tools/webchecker/webchecker.py +lib/python2.6/Tools/webchecker/websucker.py +lib/python2.6/Tools/webchecker/wsgui.py +lib/python2.6/Tools/world/ +lib/python2.6/Tools/world/README +lib/python2.6/Tools/world/world +share/emacs/ +share/emacs/site-lisp/ +share/emacs/site-lisp/python-mode.el diff --git a/lang/python/2.6/pkg/UNMESSAGE-idle b/lang/python/2.6/pkg/UNMESSAGE-idle new file mode 100644 index 00000000000..e41707f6b8e --- /dev/null +++ b/lang/python/2.6/pkg/UNMESSAGE-idle @@ -0,0 +1,2 @@ +Don't forget to remove ${PREFIX}/bin/idle +if it was a symlink to ${PREFIX}/bin/idle2.6. diff --git a/lang/python/2.6/pkg/UNMESSAGE-main b/lang/python/2.6/pkg/UNMESSAGE-main new file mode 100644 index 00000000000..9c91b402de5 --- /dev/null +++ b/lang/python/2.6/pkg/UNMESSAGE-main @@ -0,0 +1,5 @@ +Don't forget to remove ${PREFIX}/bin/python, +${PREFIX}/bin/python-config or/and +${PREFIX}/bin/pydoc if they were symlinks to +${PREFIX}/bin/python2.6, ${PREFIX}/bin/python2.6-config +or to ${PREFIX}/bin/pydoc2.6.