Alexander Pyhalov
2014-12-13 7b0dcec86c5455046c26524cf1a36c2e9df55fd9
Update python-34  to 3.4.2. Enable pymalloc.
4 files added
13 files modified
2274 ■■■■■ changed files
components/python/python34/Makefile 23 ●●●● patch | view | raw | blame | history
components/python/python34/patches/00-dtrace.patch 62 ●●●● patch | view | raw | blame | history
components/python/python34/patches/01-bits.patch 6 ●●●● patch | view | raw | blame | history
components/python/python34/patches/03-setup.patch 8 ●●●● patch | view | raw | blame | history
components/python/python34/patches/06-solaris-64-bit.patch 287 ●●●●● patch | view | raw | blame | history
components/python/python34/patches/07-ucred.patch 6 ●●●● patch | view | raw | blame | history
components/python/python34/patches/12-py_db.patch 112 ●●●●● patch | view | raw | blame | history
components/python/python34/patches/14-ossaudiodev.patch 6 ●●●● patch | view | raw | blame | history
components/python/python34/patches/15-include.patch 12 ●●●● patch | view | raw | blame | history
components/python/python34/patches/16-pic-compile.patch 6 ●●●● patch | view | raw | blame | history
components/python/python34/patches/17-frozen-path.patch 14 ●●●●● patch | view | raw | blame | history
components/python/python34/patches/19-SOABI.patch 14 ●●●●● patch | view | raw | blame | history
components/python/python34/patches/test_readline.patch 36 ●●●●● patch | view | raw | blame | history
components/python/python34/python-34.p5m 576 ●●●● patch | view | raw | blame | history
components/python/python34/python34.license 1074 ●●●●● patch | view | raw | blame | history
components/python/python34/tkinter-34.p5m 24 ●●●●● patch | view | raw | blame | history
transforms/python-3-soabi 8 ●●●●● patch | view | raw | blame | history
components/python/python34/Makefile
@@ -26,13 +26,12 @@
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME=        Python
COMPONENT_VERSION=    3.4.0
COMPONENT_REVISION=    1
COMPONENT_VERSION=    3.4.2
COMPONENT_PROJECT_URL=    http://python.org/
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.xz
COMPONENT_ARCHIVE_HASH=    \
    sha256:f13686c0a2d45e7146759e9d5d1cbd8097a0606483c0cf7730e1e13f58b14cbe
    sha256:1c6d9682d145c056537e477bbfa060ce727f9edd38df1827e0f970dcf04b2def
COMPONENT_ARCHIVE_URL=    $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
COMPONENT_BUGDB=    utility/python
@@ -75,6 +74,18 @@
# build pic
CFLAGS +=    $(CC_PIC)
# The python build is profile-guided for studio; to see the benefits of that,
# Python must be compiled with -xO5 and a different build target must be used.
# Use of xprofile requires that the same options be used during compilation and
# linking.  The targets chosen are based on Solaris 11 minimum supported system
# requirements.
#COMPONENT_BUILD_TARGETS = profile-opt
#XPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
#PYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
#PYFLAGS.sparc =
#CFLAGS += -xO5 $(PYFLAGS.$(MACH))
#LDFLAGS += -xO5 $(PYFLAGS.$(MACH))
# add /usr/gnu/lib to the library search/run path
LDFLAGS.32 = -R/usr/gnu/lib -L/usr/gnu/lib
LDFLAGS.64 = -R/usr/gnu/lib/$(MACH64) -L/usr/gnu/lib/$(MACH64)
@@ -89,9 +100,6 @@
CONFIGURE_OPTIONS  +=        --with-system-expat
CONFIGURE_OPTIONS  +=        --with-system-ffi
CONFIGURE_OPTIONS  +=        --without-gcc
# Building with pymalloc is the default, but that causes core dumps;
# see http://bugs.python.org/issue21412 for details.
CONFIGURE_OPTIONS  +=        --without-pymalloc
CONFIGURE_OPTIONS  +=        --without-ensurepip
CONFIGURE_OPTIONS  +=        --enable-ipv6
CONFIGURE_OPTIONS  +=        CPPFLAGS="$(CPPFLAGS)"
@@ -105,6 +113,9 @@
# the publish step will fail in 'pkgdepend generate' without this:
COMPONENT_PUBLISH_ENV  +=    LC_ALL=en_US.UTF-8
# parallel building of dtrace probes is not safe
COMPONENT_BUILD_ARGS =
# 64 bit shared objects need to go in a 64-bit directory
COMPONENT_INSTALL_ARGS += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python3.4/lib-dynload
components/python/python34/patches/00-dtrace.patch
@@ -1011,8 +1011,8 @@
+if __name__ == '__main__':
+    test_main()
+
--- Python-3.4.0/Lib/test/test_sys.py
+++ Python-3.4.0/Lib/test/test_sys.py
--- Python-3.4.2/Lib/test/test_sys.py.~1~    2014-09-22 05:57:02.000000000 -0700
+++ Python-3.4.2/Lib/test/test_sys.py    2014-09-22 11:46:06.131047596 -0700
@@ -729,6 +729,7 @@
         self.assertEqual(sys.getsizeof(True, -1), size('') + self.longdigit)
 
@@ -1042,8 +1042,8 @@
         # complex
         check(complex(0,1), size('2d'))
         # method_descriptor (descriptor object)
--- Python-3.4.0/Makefile.pre.in
+++ Python-3.4.0/Makefile.pre.in
--- Python-3.4.2/Makefile.pre.in.~1~    2014-09-22 05:57:02.000000000 -0700
+++ Python-3.4.2/Makefile.pre.in    2014-09-22 11:47:52.199531636 -0700
@@ -52,6 +52,13 @@
 # Use this to make a link between python$(VERSION) and python in $(BINDIR)
 LN=        @LN@
@@ -1058,7 +1058,7 @@
 # Portable install script (configure doesn't always guess right)
 INSTALL=    @INSTALL@
 INSTALL_PROGRAM=@INSTALL_PROGRAM@
@@ -569,7 +576,7 @@
@@ -584,7 +591,7 @@
     $(AR) $(ARFLAGS) $@ $(MODOBJS)
     $(RANLIB) $@
 
@@ -1067,7 +1067,7 @@
     if test $(INSTSONAME) != $(LDLIBRARY); then \
         $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
         $(LN) -f $(INSTSONAME) $@; \
@@ -580,9 +587,8 @@
@@ -595,9 +602,8 @@
 libpython3.so:    libpython$(LDVERSION).so
     $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^
 
@@ -1079,7 +1079,7 @@
 
 libpython$(VERSION).sl: $(LIBRARY_OBJS)
     $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST)
@@ -682,12 +688,18 @@
@@ -697,12 +703,18 @@
         $(MODULE_OBJS) \
         $(SIGNAL_OBJS) \
         $(MODOBJS) \
@@ -1098,7 +1098,7 @@
 
 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
     $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
@@ -820,6 +832,46 @@
@@ -835,6 +847,46 @@
 Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py
     $(PYTHON) $(srcdir)/Objects/typeslots.py < $(srcdir)/Include/typeslots.h > Objects/typeslots.inc
 
@@ -1145,7 +1145,7 @@
 ############################################################################
 # Header files
 
@@ -1515,6 +1567,11 @@
@@ -1531,6 +1583,11 @@
     find build -name '*.py[co]' -exec rm -f {} ';' || true
     -rm -f pybuilddir.txt
     -rm -f Lib/lib2to3/*Grammar*.pickle
@@ -1157,7 +1157,7 @@
     -rm -f Modules/_testembed Modules/_freeze_importlib
 
 profile-removal:
@@ -1546,6 +1603,11 @@
@@ -1562,6 +1619,11 @@
                      -o -name '*.orig' -o -name '*.rej' \
                      -o -name '*.bak' ')' \
                      -exec rm -f {} ';'
@@ -1219,8 +1219,8 @@
+    }
+    return m;
+}
--- Python-3.4.0/Modules/gcmodule.c
+++ Python-3.4.0/Modules/gcmodule.c
--- Python-3.4.1/Modules/gcmodule.c.~1~    2014-05-18 22:19:39.000000000 -0700
+++ Python-3.4.1/Modules/gcmodule.c    2014-05-27 10:34:04.215193143 -0700
@@ -26,6 +26,10 @@
 #include "Python.h"
 #include "frameobject.h"        /* for PyFrame_ClearFreeList */
@@ -1232,7 +1232,7 @@
 /* Get an object's GC head */
 #define AS_GC(o) ((PyGC_Head *)(o)-1)
 
@@ -905,7 +909,12 @@
@@ -917,7 +921,12 @@
 /* This is the main function.  Read this to understand how the
  * collection process works. */
 static Py_ssize_t
@@ -1246,7 +1246,7 @@
         int nofail)
 {
     int i;
@@ -1080,6 +1089,50 @@
@@ -1092,6 +1101,50 @@
     return n+m;
 }
 
@@ -1480,8 +1480,8 @@
     PyTypeObject *type, *base;
     destructor basedealloc;
     PyThreadState *tstate = PyThreadState_GET();
--- Python-3.4.0/Python/ceval.c
+++ Python-3.4.0/Python/ceval.c
--- Python-3.4.2/Python/ceval.c.~1~    2014-09-22 05:57:05.000000000 -0700
+++ Python-3.4.2/Python/ceval.c    2014-09-22 11:50:27.740913482 -0700
@@ -18,6 +18,13 @@
 
 #include <ctype.h>
@@ -1606,7 +1606,7 @@
     co = f->f_code;
     names = co->co_names;
     consts = co->co_consts;
@@ -1343,6 +1412,12 @@
@@ -1350,6 +1419,12 @@
         /* Main switch on opcode */
         READ_TIMESTAMP(inst0);
 
@@ -1619,7 +1619,7 @@
         switch (opcode) {
 
         /* BEWARE!
@@ -3216,6 +3291,10 @@
@@ -3223,6 +3298,10 @@
 
     /* pop frame */
 exit_eval_frame:
@@ -1630,7 +1630,7 @@
     Py_LeaveRecursiveCall();
     f->f_executing = 0;
     tstate->frame = f->f_back;
@@ -3915,6 +3994,57 @@
@@ -3922,6 +4001,57 @@
     return result;
 }
 
@@ -1688,7 +1688,7 @@
 PyObject *
 _PyEval_CallTracing(PyObject *func, PyObject *args)
 {
@@ -3932,6 +4062,51 @@
@@ -3939,6 +4069,51 @@
     return result;
 }
 
@@ -1740,8 +1740,8 @@
 /* See Objects/lnotab_notes.txt for a description of how tracing works. */
 static int
 maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
--- Python-3.4.0/configure
+++ Python-3.4.0/configure
--- Python-3.4.2/configure.~1~    2014-09-22 05:57:05.000000000 -0700
+++ Python-3.4.2/configure    2014-09-22 12:48:32.849088475 -0700
@@ -642,6 +642,11 @@
 MACHDEP_OBJS
 DYNLOADFILE
@@ -1754,7 +1754,7 @@
 THREADOBJ
 LDLAST
 USE_THREAD_MODULE
@@ -811,6 +816,7 @@
@@ -812,6 +817,7 @@
 with_tsc
 with_pymalloc
 with_valgrind
@@ -1762,7 +1762,7 @@
 with_fpectl
 with_libm
 with_libc
@@ -1494,6 +1500,7 @@
@@ -1495,6 +1501,7 @@
   --with(out)-tsc         enable/disable timestamp counter profile
   --with(out)-pymalloc    disable/enable specialized mallocs
   --with-valgrind         Enable Valgrind support
@@ -1770,7 +1770,7 @@
   --with-fpectl           enable SIGFPE catching
   --with-libm=STRING      math library
   --with-libc=STRING      C library
@@ -10391,6 +10398,174 @@
@@ -10386,6 +10393,174 @@
     OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
 fi
 
@@ -1945,9 +1945,9 @@
 # -I${DLINCLDIR} is added to the compile rule for importdl.o
 
 DLINCLDIR=.
--- Python-3.4.0/configure.ac
+++ Python-3.4.0/configure.ac
@@ -2868,6 +2868,62 @@
--- Python-3.4.2/configure.ac.~1~    2014-09-22 05:57:05.000000000 -0700
+++ Python-3.4.2/configure.ac    2014-09-22 12:51:15.173895356 -0700
@@ -2874,6 +2874,62 @@
     OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
 fi
 
@@ -2022,9 +2022,9 @@
 /* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
    linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
    Dyld is necessary to support frameworks. */
--- Python-3.4.0/setup.py
+++ Python-3.4.0/setup.py
@@ -637,6 +637,9 @@
--- Python-3.4.2/setup.py.~1~    2014-09-22 05:57:05.000000000 -0700
+++ Python-3.4.2/setup.py    2014-09-22 12:56:08.602474892 -0700
@@ -643,6 +643,9 @@
         # syslog daemon interface
         exts.append( Extension('syslog', ['syslogmodule.c']) )
 
components/python/python34/patches/01-bits.patch
@@ -2,8 +2,8 @@
# This patch addresses problems with the configure script.
# As it is Solaris-specific, it is not suitable for upstream.
#
--- Python-3.4.0/configure.ac.~1~    2014-03-16 19:31:31.000000000 -0700
+++ Python-3.4.0/configure.ac    2014-03-17 11:11:22.990261823 -0700
--- Python-3.4.2/configure.ac.~2~    2014-09-22 12:56:55.683506632 -0700
+++ Python-3.4.2/configure.ac    2014-09-22 12:56:55.695790952 -0700
@@ -5,7 +5,7 @@
 # Set VERSION so we only need to edit in one place (i.e., here)
 m4_define(PYTHON_VERSION, 3.4)
@@ -13,7 +13,7 @@
 
 AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
 
@@ -2108,12 +2108,6 @@
@@ -2114,12 +2114,6 @@
 if test -z "$CCSHARED"
 then
     case $ac_sys_system/$ac_sys_release in
components/python/python34/patches/03-setup.patch
@@ -1,9 +1,9 @@
This patch modifies the setup script to support Solaris.
As it is Solaris-specific, it is not suitable for upstream.
--- Python-3.4.0/setup.py.~2~    2014-03-19 10:36:25.778101571 -0700
+++ Python-3.4.0/setup.py    2014-03-19 10:36:25.855568930 -0700
@@ -728,6 +728,13 @@
--- Python-3.4.2/setup.py.~2~    2014-09-22 12:58:20.756337175 -0700
+++ Python-3.4.2/setup.py    2014-09-22 12:58:20.806201115 -0700
@@ -736,6 +736,13 @@
                                                      ['/usr/lib/termcap'],
                                                      'termcap'):
                 readline_libs.append('termcap')
@@ -17,7 +17,7 @@
             exts.append( Extension('readline', ['readline.c'],
                                    library_dirs=['/usr/lib/termcap'],
                                    extra_link_args=readline_extra_link_args,
@@ -1900,7 +1907,7 @@
@@ -1918,7 +1925,7 @@
             # this option. If you want to compile ctypes with the Sun
             # compiler, please research a proper solution, instead of
             # finding some -z option for the Sun compiler.
components/python/python34/patches/06-solaris-64-bit.patch
@@ -1,44 +1,146 @@
This patch ensures that 64-bit shared objects are in a subdirectory named
"64".  Note that changes to the Lib/distutils/tests/test_build.py and
Lib/distutils/tests/test_install.py avoid running tests that fail due to
this patch.  As this is Solaris-specific, it is not suitable for upstream.
This patch ensures that 64-bit shared objects are put in and found in a
subdirectory named "64".  Note that the changes to the
Lib/distutils/tests/test_build_ext.py and .../test_sysconfig.py avoid running
tests that fail due to this patch.  As the patch is Solaris-specific, it is
not suitable for upstream.
--- Python-3.4.0/Lib/distutils/command/build_ext.py.~1~    2014-03-16 19:31:29.000000000 -0700
+++ Python-3.4.0/Lib/distutils/command/build_ext.py    2014-03-17 13:18:10.057787061 -0700
@@ -668,7 +668,12 @@
--- Python-3.4.2/Lib/distutils/command/build_ext.py.~1~    2014-09-22 05:56:59.000000000 -0700
+++ Python-3.4.2/Lib/distutils/command/build_ext.py    2014-09-22 14:05:09.231795935 -0700
@@ -659,6 +659,9 @@
         ext_suffix = get_config_var('EXT_SUFFIX')
         if os.name == 'nt' and self.debug:
             return os.path.join(*ext_path) + '_d' + ext_suffix
-        return os.path.join(*ext_path) + ext_suffix
+        #return os.path.join(*ext_path) + ext_suffix
+        path = os.path.join (ext_path)
+        if sys.maxsize == 2147483647:
+        if sys.maxsize == 2 ** 31 - 1:
+            return os.path.join(*ext_path) + ext_suffix
+        (dirname, basename) = os.path.split(os.path.join(*ext_path));
+        return os.path.join(dirname, "64", basename + ext_suffix)
+        ext_path[-1:-1] = ["64"]
         return os.path.join(*ext_path) + ext_suffix
 
     def get_export_symbols(self, ext):
         """Return the list of symbols that a shared extension has to
--- Python-3.4.0/Lib/distutils/tests/test_build_ext.py.~1~    2014-03-16 19:31:29.000000000 -0700
+++ Python-3.4.0/Lib/distutils/tests/test_build_ext.py    2014-03-17 13:18:10.098081226 -0700
@@ -317,7 +317,7 @@
--- Python-3.4.2/Lib/distutils/tests/test_build_ext.py.~1~    2014-09-22 05:56:59.000000000 -0700
+++ Python-3.4.2/Lib/distutils/tests/test_build_ext.py    2014-09-22 14:08:54.798141164 -0700
@@ -315,7 +315,8 @@
         ext_suffix = sysconfig.get_config_var('EXT_SUFFIX')
         self.assertTrue(so_file.endswith(ext_suffix))
         so_dir = os.path.dirname(so_file)
-        self.assertEqual(so_dir, other_tmp_dir)
+        #self.assertEqual(so_dir, other_tmp_dir)
+        if sys.platform != 'sunos5':
+            self.assertEqual(so_dir, other_tmp_dir)
 
         cmd.inplace = 0
         cmd.compiler = None
@@ -364,7 +364,7 @@
@@ -324,7 +325,8 @@
         self.assertTrue(os.path.exists(so_file))
         self.assertTrue(so_file.endswith(ext_suffix))
         so_dir = os.path.dirname(so_file)
-        self.assertEqual(so_dir, cmd.build_lib)
+        if sys.platform != 'sunos5':
+            self.assertEqual(so_dir, cmd.build_lib)
         # inplace = 0, cmd.package = 'bar'
         build_py = cmd.get_finalized_command('build_py')
@@ -332,7 +334,8 @@
         path = cmd.get_ext_fullpath('foo')
         # checking that the last directory is the build_dir
         path = os.path.split(path)[0]
-        self.assertEqual(path, cmd.build_lib)
+        if sys.platform != 'sunos5':
+            self.assertEqual(path, cmd.build_lib)
         # inplace = 1, cmd.package = 'bar'
         cmd.inplace = 1
@@ -346,7 +349,8 @@
         # checking that the last directory is bar
         path = os.path.split(path)[0]
         lastdir = os.path.split(path)[-1]
-        self.assertEqual(lastdir, 'bar')
+        if sys.platform != 'sunos5':
+            self.assertEqual(lastdir, 'bar')
     def test_ext_fullpath(self):
         ext = sysconfig.get_config_var('EXT_SUFFIX')
@@ -362,14 +366,16 @@
         curdir = os.getcwd()
         wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext)
         path = cmd.get_ext_fullpath('lxml.etree')
-        self.assertEqual(wanted, path)
+        #self.assertEqual(wanted, path)
+        if sys.platform != 'sunos5':
+            self.assertEqual(wanted, path)
 
         # building lxml.etree not inplace
         cmd.inplace = 0
         cmd.build_lib = os.path.join(curdir, 'tmpdir')
         wanted = os.path.join(curdir, 'tmpdir', 'lxml', 'etree' + ext)
         path = cmd.get_ext_fullpath('lxml.etree')
-        self.assertEqual(wanted, path)
+        if sys.platform != 'sunos5':
+            self.assertEqual(wanted, path)
         # building twisted.runner.portmap not inplace
         build_py = cmd.get_finalized_command('build_py')
@@ -378,13 +384,15 @@
         path = cmd.get_ext_fullpath('twisted.runner.portmap')
         wanted = os.path.join(curdir, 'tmpdir', 'twisted', 'runner',
                               'portmap' + ext)
-        self.assertEqual(wanted, path)
+        if sys.platform != 'sunos5':
+            self.assertEqual(wanted, path)
         # building twisted.runner.portmap inplace
         cmd.inplace = 1
         path = cmd.get_ext_fullpath('twisted.runner.portmap')
         wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap' + ext)
-        self.assertEqual(wanted, path)
+        if sys.platform != 'sunos5':
+            self.assertEqual(wanted, path)
     @unittest.skipUnless(sys.platform == 'darwin', 'test only relevant for MacOSX')
--- Python-3.4.2/Lib/distutils/tests/test_sysconfig.py.~1~    2014-09-22 05:56:59.000000000 -0700
+++ Python-3.4.2/Lib/distutils/tests/test_sysconfig.py    2014-09-22 14:10:18.427824361 -0700
@@ -1,4 +1,5 @@
 """Tests for distutils.sysconfig."""
+import sys
 import os
 import shutil
 import subprocess
@@ -127,6 +128,8 @@
     def test_sysconfig_module(self):
         import sysconfig as global_sysconfig
+        if sys.platform == 'sunos5':
+            return
         self.assertEqual(global_sysconfig.get_config_var('CFLAGS'),
                          sysconfig.get_config_var('CFLAGS'))
         self.assertEqual(global_sysconfig.get_config_var('LDFLAGS'),
@@ -152,8 +155,9 @@
         import sysconfig as global_sysconfig
         if sysconfig.get_config_var('CUSTOMIZED_OSX_COMPILER'):
             self.skipTest('compiler flags customized')
-        self.assertEqual(global_sysconfig.get_config_var('LDSHARED'),
-                         sysconfig.get_config_var('LDSHARED'))
+        if sys.platform != 'sunos5':
+            self.assertEqual(global_sysconfig.get_config_var('LDSHARED'),
+                             sysconfig.get_config_var('LDSHARED'))
         self.assertEqual(global_sysconfig.get_config_var('CC'),
                          sysconfig.get_config_var('CC'))
--- Python-3.4.1/Lib/importlib/_bootstrap.py.~1~    2014-05-18 22:19:38.000000000 -0700
+++ Python-3.4.1/Lib/importlib/_bootstrap.py    2014-08-27 08:46:00.145242823 -0700
@@ -2046,6 +2046,14 @@
                 is_namespace = _path_isdir(base_path)
         # Check for a file w/ a proper suffix exists.
         for suffix, loader_class in self._loaders:
+            message = 'checking {!r}: {!r}'.format(self.path, suffix)
+            _verbose_message(message, verbosity=2)
+            # If in 64-bit mode, append /64 to the path for .so files.
+            if suffix.endswith('.so') and sys.maxsize != 2 ** 31 - 1:
+                full_path = _path_join(self.path, '64', tail_module + suffix)
+                _verbose_message('trying {}'.format(full_path), verbosity=2)
+                if _path_isfile(full_path):
+                    return self._get_spec(loader_class, fullname, full_path, None, target)
             full_path = _path_join(self.path, tail_module + suffix)
             _verbose_message('trying {}'.format(full_path), verbosity=2)
             if cache_module + suffix in cache:
--- Python-3.4.0/Lib/sysconfig.py.~1~    2014-03-16 19:31:30.000000000 -0700
+++ Python-3.4.0/Lib/sysconfig.py    2014-03-17 13:18:10.099539252 -0700
@@ -392,7 +392,11 @@
@@ -54,8 +156,8 @@
 
     with open(destfile, 'w', encoding='utf8') as f:
         f.write('# system configuration generated and used by'
--- Python-3.4.0/Modules/getpath.c.~1~    2014-03-16 19:31:31.000000000 -0700
+++ Python-3.4.0/Modules/getpath.c    2014-04-25 15:02:02.837613851 -0700
--- Python-3.4.0/Modules/getpath.c.~1~ 2014-03-16 19:31:31.000000000 -0700
+++ Python-3.4.0/Modules/getpath.c     2014-04-25 15:02:02.837613851 -0700
@@ -697,6 +697,10 @@
         wcsncpy(exec_prefix, _exec_prefix, MAXPATHLEN);
         joinpath(exec_prefix, L"lib/lib-dynload");
@@ -67,144 +169,3 @@
     /* If we found EXEC_PREFIX do *not* reduce it!  (Yet.) */
 
     if ((!pfound || !efound) && !Py_FrozenFlag)
@@ -710,8 +714,30 @@
     if (_rtpypath && _rtpypath[0] != '\0') {
         size_t rtpypath_len;
         rtpypath = _Py_char2wchar(_rtpypath, &rtpypath_len);
-        if (rtpypath != NULL)
-            bufsz += rtpypath_len + 1;
+        if (rtpypath != NULL) {
+            wchar_t *orig_rtpypath = rtpypath;
+
+            /*
+             * Split the path; for each component, add that component + "/64"
+             * (if in 64-bit mode) and the component unadorned (regardless).
+             */
+            while (1) {
+                wchar_t *delim = wcschr(rtpypath, DELIM);
+                if (delim) {
+                    /* once for usual, another for usual + "/64" */
+                    bufsz += delim - rtpypath + 1;
+                    if (sizeof(void *) == 8)
+                        bufsz += delim - rtpypath + 1 + 3;
+                } else {
+                    bufsz += wcslen(rtpypath) + 1;
+                    if (sizeof(void *) == 8)
+                        bufsz += wcslen(rtpypath) + 1 + 3;
+                    break;
+                }
+                rtpypath = delim + 1;
+            }
+            rtpypath = orig_rtpypath;
+        }
     }
     defpath = _pythonpath;
@@ -723,9 +749,19 @@
             /* Paths are relative to prefix */
             bufsz += prefixsz;
-        if (delim)
+        if (delim) {
+            if (sizeof(void *) == 8) {
+                bufsz += delim - defpath + 1 + 3;
+                if (defpath[0] != SEP)
+                    bufsz += prefixsz;
+            }
             bufsz += delim - defpath + 1;
-        else {
+        } else {
+            if (sizeof(void *) == 8) {
+                bufsz += wcslen(defpath) + 1 + 3;
+                if (defpath[0] != SEP)
+                    bufsz += prefixsz;
+            }
             bufsz += wcslen(defpath) + 1;
             break;
         }
@@ -741,13 +777,38 @@
             "Not enough memory for dynamic PYTHONPATH");
     }
+    buf[0] = '\0';
     /* Run-time value of $PYTHONPATH goes first */
     if (rtpypath) {
-        wcscpy(buf, rtpypath);
-        wcscat(buf, delimiter);
+        wchar_t *orig_rtpypath = rtpypath;
+
+        while (1) {
+            wchar_t *delim = wcschr(rtpypath, DELIM);
+
+            if (delim) {
+                *delim = '\0';
+                if (sizeof(void *) == 8) {
+                    wcscat(buf, rtpypath);
+                    wcscat(buf, L"/64");
+                    wcscat(buf, delimiter);
+                }
+                wcscat(buf, rtpypath);
+                wcscat(buf, delimiter);
+                *delim = DELIM;
+            } else {
+                if (sizeof(void *) == 8) {
+                    wcscat(buf, rtpypath);
+                    wcscat(buf, L"/64");
+                    wcscat(buf, delimiter);
+                }
+                wcscat(buf, rtpypath);
+                wcscat(buf, delimiter);
+                break;
+            }
+            rtpypath = delim + 1;
+        }
+        rtpypath = orig_rtpypath;
     }
-    else
-        buf[0] = '\0';
     /* Next is the default zip path */
     wcscat(buf, zip_path);
@@ -766,18 +827,35 @@
         }
         if (delim) {
-            size_t len = delim - defpath + 1;
-            size_t end = wcslen(buf) + len;
-            wcsncat(buf, defpath, len);
-            *(buf + end) = '\0';
-        }
-        else {
+            *delim = '\0';
+            if (sizeof(void *) == 8) {
+                wcscat(buf, defpath);
+                wcscat(buf, L"/64");
+                wcscat(buf, delimiter);
+                if (defpath[0] != SEP) {
+                    wcscat(buf, prefix);
+                    wcscat(buf, separator);
+                }
+            }
             wcscat(buf, defpath);
+            wcscat(buf, delimiter);
+            *delim = DELIM;
+        } else {
+            if (sizeof(void *) == 8) {
+                wcscat(buf, defpath);
+                wcscat(buf, L"/64");
+                wcscat(buf, delimiter);
+                if (defpath[0] != SEP) {
+                    wcscat(buf, prefix);
+                    wcscat(buf, separator);
+                }
+            }
+            wcscat(buf, defpath);
+            wcscat(buf, delimiter);
             break;
         }
         defpath = delim + 1;
     }
-    wcscat(buf, delimiter);
     /* Finally, on goes the directory for dynamic-load modules */
     wcscat(buf, exec_prefix);
components/python/python34/patches/07-ucred.patch
@@ -410,9 +410,9 @@
+
+    return m;
+}
--- Python-3.4.0/setup.py.~3~    2014-03-19 10:44:16.508585670 -0700
+++ Python-3.4.0/setup.py    2014-03-19 10:44:16.596735089 -0700
@@ -1467,6 +1467,13 @@
--- Python-3.4.2/setup.py.~3~    2014-09-22 14:12:32.357526710 -0700
+++ Python-3.4.2/setup.py    2014-09-22 14:12:32.421969305 -0700
@@ -1485,6 +1485,13 @@
         # Stefan Krah's _decimal module
         exts.append(self._decimal_ext())
 
components/python/python34/patches/12-py_db.patch
@@ -1,9 +1,9 @@
This patch adds Python debugger support.  It may be contributed upstream at
some point, but the suitability (or lack thereof) has not yet been determined.
--- Python-3.4.0/Makefile.pre.in.~3~    2014-03-19 10:48:24.881429192 -0700
+++ Python-3.4.0/Makefile.pre.in    2014-03-19 10:48:25.069002130 -0700
@@ -466,7 +466,7 @@
--- Python-3.4.2/Makefile.pre.in.~3~    2014-09-22 14:16:07.846210795 -0700
+++ Python-3.4.2/Makefile.pre.in    2014-09-22 14:16:07.961725537 -0700
@@ -471,7 +471,7 @@
 
 # Default target
 all:        build_all
@@ -12,27 +12,23 @@
 
 # Compile a binary with gcc profile guided optimization.
 profile-opt:
@@ -658,6 +658,19 @@
@@ -673,6 +673,15 @@
     @mv config.c Modules
     @echo "The Makefile was updated, you may need to re-run make."
 
+SHLIB_FLAGS = -shared -fpic
+
+libpython3.4_db.so.1.0:        $(srcdir)/py_db/libpython34_db.c
+libpython$(LDVERSION)_db.so.1.0:        $(srcdir)/py_db/libpython34_db.c
+    $(CC) -o $@ $(CFLAGS) $(PY_CPPFLAGS) $(CPPFLAGS) $(SHLIB_FLAGS) $<
+
+check_offset:  $(srcdir)/py_db/check_offsets.c
+    $(CC) -o $@ $(CFLAGS) $(PY_CPPFLAGS) $(CPPFLAGS) $<
+build-py_db:   libpython$(LDVERSION)_db.so.1.0
+
+build-py_db:   libpython3.4_db.so.1.0 check_offset
+
+install-py_db: libpython3.4_db.so.1.0 check_offset
+    $(INSTALL_SHARED) libpython3.4_db.so.1.0 $(DESTDIR)$(LIBDIR)
+    $(INSTALL_PROGRAM) check_offset $(DESTDIR)$(BINDIR)
+install-py_db: libpython$(LDVERSION)_db.so.1.0
+    $(INSTALL_SHARED) libpython$(LDVERSION)_db.so.1.0 $(DESTDIR)$(LIBDIR)
 
 Modules/Setup: $(srcdir)/Modules/Setup.dist
     @if test -f Modules/Setup; then \
@@ -1027,7 +1040,7 @@
@@ -1042,7 +1051,7 @@
         $(TESTRUNNER) $(QUICKTESTOPTS)
 
 
@@ -41,96 +37,6 @@
     if test "x$(ENSUREPIP)" != "xno"  ; then \
         case $(ENSUREPIP) in \
             upgrade) ensurepip="--upgrade" ;; \
--- /dev/null
+++ Python-3.4.0/py_db/check_offsets.c
@@ -0,0 +1,87 @@
+/*
+ * CDDL HEADER START
+ *
+ * The contents of this file are subject to the terms of the
+ * Common Development and Distribution License (the "License").
+ * You may not use this file except in compliance with the License.
+ *
+ * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+ * or http://www.opensolaris.org/os/licensing.
+ * See the License for the specific language governing permissions
+ * and limitations under the License.
+ *
+ * When distributing Covered Code, include this CDDL HEADER in each
+ * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+ * If applicable, add the following below this CDDL HEADER, with the
+ * fields enclosed by brackets "[]" replaced with your own identifying
+ * information: Portions Copyright [yyyy] [name of copyright owner]
+ *
+ * CDDL HEADER END
+ */
+/*
+ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ */
+
+#include <stdio.h>
+
+#include <Python.h>
+#include <frameobject.h>
+
+#include "libpython34_db_32.h"
+
+#if 0
+#define    offsetof(s, m)    ((size_t)(&(((s *)0)->m)))
+#endif
+
+int
+main(void)
+{
+/*
+ * PyCodeObject co_name
+ * PyCodeObject co_filename
+ * PyCodeObject co_lnotab
+ * PyFrameObject f_back
+ * PyFrameObject f_code
+ * PyFrameObject f_lasti
+ * PyInterpreterState next
+ * PyInterpreterState tstate_head
+ * PyBytesObject ob_sval
+ * PyBytesObject ob_size
+ * PyThreadState frame
+ * PyThreadState next
+ */
+
+    printf("struct member: native 32\n");
+    printf("PyCodeObject co_name: %d %d\n", offsetof(PyCodeObject, co_name),
+        offsetof(PyCodeObject32, co_name));
+    printf("PyCodeObject co_filename: %d %d\n", offsetof(PyCodeObject,
+        co_filename), offsetof(PyCodeObject32, co_filename));
+    printf("PyCodeObject co_lnotab: %d %d\n", offsetof(PyCodeObject,
+        co_lnotab), offsetof(PyCodeObject32, co_lnotab));
+    printf("PyFrameObject f_back: %d %d\n", offsetof(PyFrameObject, f_back),
+        offsetof(PyFrameObject32, f_back));
+    printf("PyFrameObject f_code: %d %d\n", offsetof(PyFrameObject, f_code),
+        offsetof(PyFrameObject32, f_code));
+    printf("PyFrameObject f_lasti: %d %d\n", offsetof(PyFrameObject,
+        f_lasti), offsetof(PyFrameObject32, f_lasti));
+    printf("PyInterpreterState next: %d %d\n", offsetof(PyInterpreterState,
+        next), offsetof(PyInterpreterState32, next));
+    printf("PyInterpreterState tstate_head: %d %d\n",
+        offsetof(PyInterpreterState, tstate_head),
+        offsetof(PyInterpreterState32, tstate_head));
+    printf("PyBytesObject ob_sval: %d %d\n", offsetof(PyBytesObject,
+        ob_sval), offsetof(PyBytesObject32, ob_sval));
+    printf("PyBytesObject ob_size: %d %d\n", offsetof(PyBytesObject,
+        ob_base.ob_size), offsetof(PyBytesObject32, ob_size));
+    printf("PyThreadState frame: %d %d\n", offsetof(PyThreadState, frame),
+        offsetof(PyThreadState32, frame));
+    printf("PyThreadState next: %d %d\n", offsetof(PyThreadState, next),
+        offsetof(PyThreadState32, next));
+
+    printf("\nObject sizes\n");
+    printf("PyObject: %d %d\n", sizeof (PyObject), sizeof (PyObject32));
+    printf("PyVarObject: %d %d\n", sizeof (PyVarObject),
+        sizeof (PyVarObject32));
+
+    return (0);
+}
--- /dev/null
+++ Python-3.4.0/py_db/libpython34_db.c
@@ -0,0 +1,654 @@
components/python/python34/patches/14-ossaudiodev.patch
@@ -2,9 +2,9 @@
Some OSS ioctls are not supported on Solaris, so they are ifdef'd out.  As
the patch is Solaris-specific, it is not suitable for upstream.
--- Python-3.4.0/setup.py.~6~    2014-03-19 10:50:15.496976758 -0700
+++ Python-3.4.0/setup.py    2014-03-19 10:50:15.609798728 -0700
@@ -1551,7 +1551,7 @@
--- Python-3.4.2/setup.py.~6~    2014-09-22 14:17:20.562920233 -0700
+++ Python-3.4.2/setup.py    2014-09-22 14:17:20.631967980 -0700
@@ -1569,7 +1569,7 @@
         # End multiprocessing
 
         # Platform-specific libraries
components/python/python34/patches/15-include.patch
@@ -1,14 +1,14 @@
On Solaris pyconfig.h is delivered in the normal python header directory.
As this is Solaris-specific, it is not suitable for upstream.
--- Python-3.4.0/Lib/distutils/sysconfig.py.~1~    2014-03-16 19:31:29.000000000 -0700
+++ Python-3.4.0/Lib/distutils/sysconfig.py    2014-03-17 13:50:16.261084406 -0700
@@ -242,7 +242,7 @@
--- Python-3.4.2/Lib/distutils/sysconfig.py.~1~    2014-09-22 05:56:59.000000000 -0700
+++ Python-3.4.2/Lib/distutils/sysconfig.py    2014-09-22 14:20:16.045987560 -0700
@@ -240,7 +240,7 @@
         else:
             inc_dir = _sys_home or project_base
     else:
-        inc_dir = get_python_inc(plat_specific=1)
+        inc_dir = get_python_inc(plat_specific=0)
     if get_python_version() < '2.2':
         config_h = 'config.h'
     else:
     return os.path.join(inc_dir, 'pyconfig.h')
components/python/python34/patches/16-pic-compile.patch
@@ -1,8 +1,8 @@
This patch is a Solaris-specific hack; it will not be submitted upstream.
--- Python-3.4.0/Lib/distutils/sysconfig.py.~2~    2014-04-30 09:23:26.632873134 -0700
+++ Python-3.4.0/Lib/distutils/sysconfig.py    2014-04-30 10:49:42.395635789 -0700
@@ -221,6 +221,22 @@
--- Python-3.4.2/Lib/distutils/sysconfig.py.~2~    2014-09-22 14:20:53.466326587 -0700
+++ Python-3.4.2/Lib/distutils/sysconfig.py    2014-09-22 14:20:53.494063421 -0700
@@ -219,6 +219,22 @@
         else:
             archiver = ar + ' ' + ar_flags
 
components/python/python34/patches/17-frozen-path.patch
New file
@@ -0,0 +1,14 @@
This patch has been submitted upstream, but has not yet been accepted.
http://bugs.python.org/issue22148
--- Python-3.4.1/Python/frozen.c.~1~    2014-03-16 19:31:31.000000000 -0700
+++ Python-3.4.1/Python/frozen.c    2014-08-04 15:06:16.419797757 -0700
@@ -2,7 +2,7 @@
 /* Dummy frozen modules initializer */
 #include "Python.h"
-#include "importlib.h"
+#include <importlib.h>
 /* In order to test the support for frozen modules, by default we
    define a single frozen module, __hello__.  Loading it will print
components/python/python34/patches/19-SOABI.patch
New file
@@ -0,0 +1,14 @@
This patch was developed in-house.  We have not yet decided whether to offer
it upstream or not.
--- Python-3.4.2/configure.ac.~3~    2014-09-22 14:35:47.865240136 -0700
+++ Python-3.4.2/configure.ac    2014-09-22 14:35:48.074504467 -0700
@@ -4143,7 +4143,7 @@
 AC_SUBST(EXT_SUFFIX)
 case $ac_sys_system in
-    Linux*|GNU*)
+    Linux*|GNU*|SunOS)
     EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};;
     *)
     EXT_SUFFIX=${SHLIB_SUFFIX};;
components/python/python34/patches/test_readline.patch
New file
@@ -0,0 +1,36 @@
# HG changeset patch
# User Antoine Pitrou <solipsis@pitrou.net>
# Date 1415109181 -3600
# Node ID be374b8c40c896507ec36664789b12ff4eb3518b
# Parent  205810ca5069879b35c8efa14ceb8d6802a2ba01# Parent  c4b5a5d44254f619e469e6e873d74554ba77e703
Issue #22773: fix failing test with old readline versions due to issue #19884.
diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py
--- a/Lib/test/test_readline.py
+++ b/Lib/test/test_readline.py
@@ -44,6 +44,10 @@ class TestHistoryManipulation (unittest.
 class TestReadline(unittest.TestCase):
+
+    @unittest.skipIf(readline._READLINE_VERSION < 0x0600
+                     and "libedit" not in readline.__doc__,
+                     "not supported in this library version")
     def test_init(self):
         # Issue #19884: Ensure that the ANSI sequence "\033[1034h" is not
         # written into stdout when the readline module is imported and stdout
diff --git a/Modules/readline.c b/Modules/readline.c
--- a/Modules/readline.c
+++ b/Modules/readline.c
@@ -1285,5 +1285,9 @@ PyInit_readline(void)
     mod_state = (readlinestate *) PyModule_GetState(m);
     PyOS_ReadlineFunctionPointer = call_readline;
     setup_readline(mod_state);
+
+    PyModule_AddIntConstant(m, "_READLINE_VERSION", RL_READLINE_VERSION);
+    PyModule_AddIntConstant(m, "_READLINE_RUNTIME_VERSION", rl_readline_version);
+
     return m;
 }
components/python/python34/python-34.p5m
@@ -61,10 +61,14 @@
link path=usr/bin/$(MACH64)/python3-config target=python3.4-config \
    mediator=python mediator-version=3.4
file usr/bin/$(MACH64)/python3.4 path=usr/bin/$(MACH64)/isapython3.4
hardlink path=usr/bin/python3.4m target=$(MACH32)/isapython3.4
hardlink path=usr/bin/$(MACH32)/python3.4m target=isapython3.4
hardlink path=usr/bin/$(MACH64)/python3.4m target=isapython3.4
file usr/bin/python3.4 path=usr/bin/$(MACH32)/isapython3.4
link path=usr/bin/$(MACH32)/python3.4 target=isapython3.4
link path=usr/bin/$(MACH64)/python3.4 target=isapython3.4
file path=usr/bin/$(MACH64)/python3.4-config
link path=usr/bin/$(MACH64)/python3.4-config target=python3.4m-config
file path=usr/bin/$(MACH64)/python3.4m-config
link path=usr/bin/python3.4 target=$(MACH32)/isapython3.4
link path=usr/bin/$(MACH64)/pyvenv target=pyvenv-3.4 mediator=python \
    mediator-version=3.4
@@ -75,117 +79,118 @@
link path=usr/bin/pydoc3 target=pydoc3.4 mediator=python mediator-version=3.4
link path=usr/bin/python3-config target=python3.4-config mediator=python \
    mediator-version=3.4
file path=usr/bin/python3.4-config
link path=usr/bin/python3.4-config target=python3.4m-config
file path=usr/bin/python3.4m-config
link path=usr/bin/pyvenv target=pyvenv-3.4 mediator=python mediator-version=3.4
file path=usr/include/python3.4/Python-ast.h
file path=usr/include/python3.4/Python.h
file path=usr/include/python3.4/abstract.h
file path=usr/include/python3.4/accu.h
file path=usr/include/python3.4/asdl.h
file path=usr/include/python3.4/ast.h
file path=usr/include/python3.4/bitset.h
file path=usr/include/python3.4/bltinmodule.h
file path=usr/include/python3.4/boolobject.h
file path=usr/include/python3.4/bytearrayobject.h
file path=usr/include/python3.4/bytes_methods.h
file path=usr/include/python3.4/bytesobject.h
file path=usr/include/python3.4/cellobject.h
file path=usr/include/python3.4/ceval.h
file path=usr/include/python3.4/classobject.h
file path=usr/include/python3.4/code.h
file path=usr/include/python3.4/codecs.h
file path=usr/include/python3.4/compile.h
file path=usr/include/python3.4/complexobject.h
file path=usr/include/python3.4/datetime.h
file path=usr/include/python3.4/descrobject.h
file path=usr/include/python3.4/dictobject.h
file path=usr/include/python3.4/dtoa.h
file path=usr/include/python3.4/dynamic_annotations.h
file path=usr/include/python3.4/enumobject.h
file path=usr/include/python3.4/errcode.h
file path=usr/include/python3.4/eval.h
file path=usr/include/python3.4/fileobject.h
file path=usr/include/python3.4/fileutils.h
file path=usr/include/python3.4/floatobject.h
file path=usr/include/python3.4/frameobject.h
file path=usr/include/python3.4/funcobject.h
file path=usr/include/python3.4/genobject.h
file path=usr/include/python3.4/graminit.h
file path=usr/include/python3.4/grammar.h
file path=usr/include/python3.4/import.h
file path=usr/include/python3.4/intrcheck.h
file path=usr/include/python3.4/iterobject.h
file path=usr/include/python3.4/listobject.h
file path=usr/include/python3.4/longintrepr.h
file path=usr/include/python3.4/longobject.h
file path=usr/include/python3.4/marshal.h
file path=usr/include/python3.4/memoryobject.h
file path=usr/include/python3.4/metagrammar.h
file path=usr/include/python3.4/methodobject.h
file path=usr/include/python3.4/modsupport.h
file path=usr/include/python3.4/moduleobject.h
file path=usr/include/python3.4/namespaceobject.h
file path=usr/include/python3.4/node.h
file path=usr/include/python3.4/object.h
file path=usr/include/python3.4/objimpl.h
file path=usr/include/python3.4/opcode.h
file path=usr/include/python3.4/osdefs.h
file path=usr/include/python3.4/parsetok.h
file path=usr/include/python3.4/patchlevel.h
file path=usr/include/python3.4/pgen.h
file path=usr/include/python3.4/pgenheaders.h
file path=usr/include/python3.4/py_curses.h
file path=usr/include/python3.4/pyarena.h
file path=usr/include/python3.4/pyatomic.h
file path=usr/include/python3.4/pycapsule.h
file path=usr/include/python3.4/pyconfig.h
file path=usr/include/python3.4/pyctype.h
file path=usr/include/python3.4/pydebug.h
file path=usr/include/python3.4/pyerrors.h
file path=usr/include/python3.4/pyexpat.h
file path=usr/include/python3.4/pyfpe.h
file path=usr/include/python3.4/pygetopt.h
file path=usr/include/python3.4/pyhash.h
file path=usr/include/python3.4/pymacconfig.h
file path=usr/include/python3.4/pymacro.h
file path=usr/include/python3.4/pymath.h
file path=usr/include/python3.4/pymem.h
file path=usr/include/python3.4/pyport.h
file path=usr/include/python3.4/pystate.h
file path=usr/include/python3.4/pystrcmp.h
file path=usr/include/python3.4/pystrtod.h
file path=usr/include/python3.4/pythonrun.h
file path=usr/include/python3.4/pythread.h
file path=usr/include/python3.4/pytime.h
file path=usr/include/python3.4/rangeobject.h
file path=usr/include/python3.4/setobject.h
file path=usr/include/python3.4/sliceobject.h
file path=usr/include/python3.4/structmember.h
file path=usr/include/python3.4/structseq.h
file path=usr/include/python3.4/symtable.h
file path=usr/include/python3.4/sysmodule.h
file path=usr/include/python3.4/token.h
file path=usr/include/python3.4/traceback.h
file path=usr/include/python3.4/tupleobject.h
file path=usr/include/python3.4/typeslots.h
file path=usr/include/python3.4/ucnhash.h
file path=usr/include/python3.4/unicodeobject.h
file path=usr/include/python3.4/warnings.h
file path=usr/include/python3.4/weakrefobject.h
link path=usr/lib/$(MACH64)/libpython3.4.so target=libpython3.4.so.1.0
file path=usr/lib/$(MACH64)/libpython3.4.so.1.0
link path=usr/lib/$(MACH64)/libpython3.4_db.so target=libpython3.4_db.so.1.0
file path=usr/lib/$(MACH64)/libpython3.4_db.so.1.0
file path=usr/include/python3.4m/Python-ast.h
file path=usr/include/python3.4m/Python.h
file path=usr/include/python3.4m/abstract.h
file path=usr/include/python3.4m/accu.h
file path=usr/include/python3.4m/asdl.h
file path=usr/include/python3.4m/ast.h
file path=usr/include/python3.4m/bitset.h
file path=usr/include/python3.4m/bltinmodule.h
file path=usr/include/python3.4m/boolobject.h
file path=usr/include/python3.4m/bytearrayobject.h
file path=usr/include/python3.4m/bytes_methods.h
file path=usr/include/python3.4m/bytesobject.h
file path=usr/include/python3.4m/cellobject.h
file path=usr/include/python3.4m/ceval.h
file path=usr/include/python3.4m/classobject.h
file path=usr/include/python3.4m/code.h
file path=usr/include/python3.4m/codecs.h
file path=usr/include/python3.4m/compile.h
file path=usr/include/python3.4m/complexobject.h
file path=usr/include/python3.4m/datetime.h
file path=usr/include/python3.4m/descrobject.h
file path=usr/include/python3.4m/dictobject.h
file path=usr/include/python3.4m/dtoa.h
file path=usr/include/python3.4m/dynamic_annotations.h
file path=usr/include/python3.4m/enumobject.h
file path=usr/include/python3.4m/errcode.h
file path=usr/include/python3.4m/eval.h
file path=usr/include/python3.4m/fileobject.h
file path=usr/include/python3.4m/fileutils.h
file path=usr/include/python3.4m/floatobject.h
file path=usr/include/python3.4m/frameobject.h
file path=usr/include/python3.4m/funcobject.h
file path=usr/include/python3.4m/genobject.h
file path=usr/include/python3.4m/graminit.h
file path=usr/include/python3.4m/grammar.h
file path=usr/include/python3.4m/import.h
file path=usr/include/python3.4m/intrcheck.h
file path=usr/include/python3.4m/iterobject.h
file path=usr/include/python3.4m/listobject.h
file path=usr/include/python3.4m/longintrepr.h
file path=usr/include/python3.4m/longobject.h
file path=usr/include/python3.4m/marshal.h
file path=usr/include/python3.4m/memoryobject.h
file path=usr/include/python3.4m/metagrammar.h
file path=usr/include/python3.4m/methodobject.h
file path=usr/include/python3.4m/modsupport.h
file path=usr/include/python3.4m/moduleobject.h
file path=usr/include/python3.4m/namespaceobject.h
file path=usr/include/python3.4m/node.h
file path=usr/include/python3.4m/object.h
file path=usr/include/python3.4m/objimpl.h
file path=usr/include/python3.4m/opcode.h
file path=usr/include/python3.4m/osdefs.h
file path=usr/include/python3.4m/parsetok.h
file path=usr/include/python3.4m/patchlevel.h
file path=usr/include/python3.4m/pgen.h
file path=usr/include/python3.4m/pgenheaders.h
file path=usr/include/python3.4m/py_curses.h
file path=usr/include/python3.4m/pyarena.h
file path=usr/include/python3.4m/pyatomic.h
file path=usr/include/python3.4m/pycapsule.h
file path=usr/include/python3.4m/pyconfig.h
file path=usr/include/python3.4m/pyctype.h
file path=usr/include/python3.4m/pydebug.h
file path=usr/include/python3.4m/pyerrors.h
file path=usr/include/python3.4m/pyexpat.h
file path=usr/include/python3.4m/pyfpe.h
file path=usr/include/python3.4m/pygetopt.h
file path=usr/include/python3.4m/pyhash.h
file path=usr/include/python3.4m/pymacconfig.h
file path=usr/include/python3.4m/pymacro.h
file path=usr/include/python3.4m/pymath.h
file path=usr/include/python3.4m/pymem.h
file path=usr/include/python3.4m/pyport.h
file path=usr/include/python3.4m/pystate.h
file path=usr/include/python3.4m/pystrcmp.h
file path=usr/include/python3.4m/pystrtod.h
file path=usr/include/python3.4m/pythonrun.h
file path=usr/include/python3.4m/pythread.h
file path=usr/include/python3.4m/pytime.h
file path=usr/include/python3.4m/rangeobject.h
file path=usr/include/python3.4m/setobject.h
file path=usr/include/python3.4m/sliceobject.h
file path=usr/include/python3.4m/structmember.h
file path=usr/include/python3.4m/structseq.h
file path=usr/include/python3.4m/symtable.h
file path=usr/include/python3.4m/sysmodule.h
file path=usr/include/python3.4m/token.h
file path=usr/include/python3.4m/traceback.h
file path=usr/include/python3.4m/tupleobject.h
file path=usr/include/python3.4m/typeslots.h
file path=usr/include/python3.4m/ucnhash.h
file path=usr/include/python3.4m/unicodeobject.h
file path=usr/include/python3.4m/warnings.h
file path=usr/include/python3.4m/weakrefobject.h
link path=usr/lib/$(MACH64)/libpython3.4m.so target=libpython3.4m.so.1.0
file path=usr/lib/$(MACH64)/libpython3.4m.so.1.0
link path=usr/lib/$(MACH64)/libpython3.4m_db.so target=libpython3.4m_db.so.1.0
file path=usr/lib/$(MACH64)/libpython3.4m_db.so.1.0
file path=usr/lib/$(MACH64)/libpython3.so
file path=usr/lib/$(MACH64)/pkgconfig/python-3.4.pc
link path=usr/lib/$(MACH64)/pkgconfig/python3.pc target=python-3.4.pc \
    mediator=python mediator-version=3.4
link path=usr/lib/pkgconfig/python3.pc target=python-3.4.pc mediator=python \
    mediator-version=3.4
link path=usr/lib/libpython3.4.so target=libpython3.4.so.1.0
file path=usr/lib/libpython3.4.so.1.0
link path=usr/lib/libpython3.4_db.so target=libpython3.4_db.so.1.0
file path=usr/lib/libpython3.4_db.so.1.0
link path=usr/lib/libpython3.4m.so target=libpython3.4m.so.1.0
file path=usr/lib/libpython3.4m.so.1.0
link path=usr/lib/libpython3.4m_db.so target=libpython3.4m_db.so.1.0
file path=usr/lib/libpython3.4m_db.so.1.0
file path=usr/lib/libpython3.so
file path=usr/lib/pkgconfig/python-3.4.pc
link path=usr/lib/pkgconfig/python3.pc target=python-3.4.pc \
@@ -216,6 +221,7 @@
file path=usr/lib/python3.4/asyncio/base_events.py
file path=usr/lib/python3.4/asyncio/base_subprocess.py
file path=usr/lib/python3.4/asyncio/constants.py
file path=usr/lib/python3.4/asyncio/coroutines.py
file path=usr/lib/python3.4/asyncio/events.py
file path=usr/lib/python3.4/asyncio/futures.py
file path=usr/lib/python3.4/asyncio/locks.py
@@ -257,16 +263,17 @@
file path=usr/lib/python3.4/concurrent/futures/_base.py
file path=usr/lib/python3.4/concurrent/futures/process.py
file path=usr/lib/python3.4/concurrent/futures/thread.py
file path=usr/lib/python3.4/config-3.4/python.o
file path=usr/lib/python3.4/config-3.4/Makefile
file path=usr/lib/python3.4/config-3.4/Setup
file path=usr/lib/python3.4/config-3.4/Setup.config
file path=usr/lib/python3.4/config-3.4/Setup.local
file path=usr/lib/python3.4/config-3.4/config.c
file path=usr/lib/python3.4/config-3.4/config.c.in
file path=usr/lib/python3.4/config-3.4/install-sh
file path=usr/lib/python3.4/config-3.4/libpython3.4.a
file path=usr/lib/python3.4/config-3.4/makesetup
file path=usr/lib/python3.4/config-3.4m/python.o
file build/$(MACH64)/Modules/python.o path=usr/lib/python3.4/config-3.4m/64/python.o
file path=usr/lib/python3.4/config-3.4m/Makefile
file path=usr/lib/python3.4/config-3.4m/Setup
file path=usr/lib/python3.4/config-3.4m/Setup.config
file path=usr/lib/python3.4/config-3.4m/Setup.local
file path=usr/lib/python3.4/config-3.4m/config.c
file path=usr/lib/python3.4/config-3.4m/config.c.in
file path=usr/lib/python3.4/config-3.4m/install-sh
file path=usr/lib/python3.4/config-3.4m/libpython3.4m.a
file path=usr/lib/python3.4/config-3.4m/makesetup
file path=usr/lib/python3.4/configparser.py
file path=usr/lib/python3.4/contextlib.py
file path=usr/lib/python3.4/copy.py
@@ -284,7 +291,7 @@
file path=usr/lib/python3.4/ctypes/macholib/framework.py
#
file path=usr/lib/python3.4/ctypes/test/__init__.py
file path=usr/lib/python3.4/ctypes/test/runtests.py
file path=usr/lib/python3.4/ctypes/test/__main__.py
file path=usr/lib/python3.4/ctypes/test/test_anon.py
file path=usr/lib/python3.4/ctypes/test/test_array_in_pointer.py
file path=usr/lib/python3.4/ctypes/test/test_arrays.py
@@ -298,7 +305,6 @@
file path=usr/lib/python3.4/ctypes/test/test_cfuncs.py
file path=usr/lib/python3.4/ctypes/test/test_checkretval.py
file path=usr/lib/python3.4/ctypes/test/test_delattr.py
file path=usr/lib/python3.4/ctypes/test/test_errcheck.py
file path=usr/lib/python3.4/ctypes/test/test_errno.py
file path=usr/lib/python3.4/ctypes/test/test_find.py
file path=usr/lib/python3.4/ctypes/test/test_frombuffer.py
@@ -306,7 +312,6 @@
file path=usr/lib/python3.4/ctypes/test/test_functions.py
file path=usr/lib/python3.4/ctypes/test/test_incomplete.py
file path=usr/lib/python3.4/ctypes/test/test_init.py
file path=usr/lib/python3.4/ctypes/test/test_integers.py
file path=usr/lib/python3.4/ctypes/test/test_internals.py
file path=usr/lib/python3.4/ctypes/test/test_keeprefs.py
file path=usr/lib/python3.4/ctypes/test/test_libc.py
@@ -720,17 +725,25 @@
file path=usr/lib/python3.4/idlelib/idle_test/__init__.py
file path=usr/lib/python3.4/idlelib/idle_test/mock_idle.py
file path=usr/lib/python3.4/idlelib/idle_test/mock_tk.py
file path=usr/lib/python3.4/idlelib/idle_test/test_autocomplete.py
file path=usr/lib/python3.4/idlelib/idle_test/test_autoexpand.py
file path=usr/lib/python3.4/idlelib/idle_test/test_calltips.py
file path=usr/lib/python3.4/idlelib/idle_test/test_config_name.py
file path=usr/lib/python3.4/idlelib/idle_test/test_configdialog.py
file path=usr/lib/python3.4/idlelib/idle_test/test_delegator.py
file path=usr/lib/python3.4/idlelib/idle_test/test_formatparagraph.py
file path=usr/lib/python3.4/idlelib/idle_test/test_grep.py
file path=usr/lib/python3.4/idlelib/idle_test/test_hyperparser.py
file path=usr/lib/python3.4/idlelib/idle_test/test_idlehistory.py
file path=usr/lib/python3.4/idlelib/idle_test/test_parenmatch.py
file path=usr/lib/python3.4/idlelib/idle_test/test_pathbrowser.py
file path=usr/lib/python3.4/idlelib/idle_test/test_rstrip.py
file path=usr/lib/python3.4/idlelib/idle_test/test_searchdialogbase.py
file path=usr/lib/python3.4/idlelib/idle_test/test_searchengine.py
file path=usr/lib/python3.4/idlelib/idle_test/test_text.py
file path=usr/lib/python3.4/idlelib/idle_test/test_textview.py
file path=usr/lib/python3.4/idlelib/idle_test/test_warning.py
file path=usr/lib/python3.4/idlelib/idle_test/test_widgetredir.py
file path=usr/lib/python3.4/idlelib/idlever.py
file path=usr/lib/python3.4/idlelib/keybindingDialog.py
file path=usr/lib/python3.4/idlelib/macosxSupport.py
@@ -756,142 +769,142 @@
file path=usr/lib/python3.4/json/scanner.py
file path=usr/lib/python3.4/json/tool.py
file path=usr/lib/python3.4/keyword.py
file path=usr/lib/python3.4/lib-dynload/64/_bisect.so
file path=usr/lib/python3.4/lib-dynload/64/_bz2.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_cn.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_hk.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_iso2022.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_jp.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_kr.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_tw.so
file path=usr/lib/python3.4/lib-dynload/64/_crypt.so
file path=usr/lib/python3.4/lib-dynload/64/_csv.so
file path=usr/lib/python3.4/lib-dynload/64/_ctypes.so
file path=usr/lib/python3.4/lib-dynload/64/_ctypes_test.so
file path=usr/lib/python3.4/lib-dynload/64/_curses.so
file path=usr/lib/python3.4/lib-dynload/64/_curses_panel.so
file path=usr/lib/python3.4/lib-dynload/64/_datetime.so
file path=usr/lib/python3.4/lib-dynload/64/_dbm.so
file path=usr/lib/python3.4/lib-dynload/64/_decimal.so
file path=usr/lib/python3.4/lib-dynload/64/_elementtree.so
file path=usr/lib/python3.4/lib-dynload/64/_gdbm.so
file path=usr/lib/python3.4/lib-dynload/64/_hashlib.so
file path=usr/lib/python3.4/lib-dynload/64/_heapq.so
file path=usr/lib/python3.4/lib-dynload/64/_json.so
file path=usr/lib/python3.4/lib-dynload/64/_lsprof.so
file path=usr/lib/python3.4/lib-dynload/64/_lzma.so
file path=usr/lib/python3.4/lib-dynload/64/_md5.so
file path=usr/lib/python3.4/lib-dynload/64/_multibytecodec.so
file path=usr/lib/python3.4/lib-dynload/64/_multiprocessing.so
file path=usr/lib/python3.4/lib-dynload/64/_opcode.so
file path=usr/lib/python3.4/lib-dynload/64/_pickle.so
file path=usr/lib/python3.4/lib-dynload/64/_posixsubprocess.so
file path=usr/lib/python3.4/lib-dynload/64/_random.so
file path=usr/lib/python3.4/lib-dynload/64/_sha1.so
file path=usr/lib/python3.4/lib-dynload/64/_sha256.so
file path=usr/lib/python3.4/lib-dynload/64/_sha512.so
file path=usr/lib/python3.4/lib-dynload/64/_socket.so
file path=usr/lib/python3.4/lib-dynload/64/_sqlite3.so
file path=usr/lib/python3.4/lib-dynload/64/_ssl.so
file path=usr/lib/python3.4/lib-dynload/64/_struct.so
file path=usr/lib/python3.4/lib-dynload/64/_bisect.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_bz2.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_cn.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_hk.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_iso2022.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_jp.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_kr.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_codecs_tw.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_crypt.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_csv.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_ctypes.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_ctypes_test.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_curses.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_curses_panel.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_datetime.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_dbm.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_decimal.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_elementtree.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_gdbm.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_hashlib.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_heapq.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_json.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_lsprof.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_lzma.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_md5.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_multibytecodec.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_multiprocessing.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_opcode.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_pickle.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_posixsubprocess.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_random.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_sha1.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_sha256.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_sha512.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_socket.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_sqlite3.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_ssl.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_struct.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_sysconfigdata.py
file path=usr/lib/python3.4/lib-dynload/64/_testbuffer.so
file path=usr/lib/python3.4/lib-dynload/64/_testcapi.so
file path=usr/lib/python3.4/lib-dynload/64/_testimportmultiple.so
file path=usr/lib/python3.4/lib-dynload/64/array.so
file path=usr/lib/python3.4/lib-dynload/64/audioop.so
file path=usr/lib/python3.4/lib-dynload/64/binascii.so
file path=usr/lib/python3.4/lib-dynload/64/cmath.so
file path=usr/lib/python3.4/lib-dynload/64/dlpi.so
file path=usr/lib/python3.4/lib-dynload/64/fcntl.so
file path=usr/lib/python3.4/lib-dynload/64/grp.so
file path=usr/lib/python3.4/lib-dynload/64/math.so
file path=usr/lib/python3.4/lib-dynload/64/mmap.so
file path=usr/lib/python3.4/lib-dynload/64/nis.so
file path=usr/lib/python3.4/lib-dynload/64/ossaudiodev.so
file path=usr/lib/python3.4/lib-dynload/64/parser.so
file path=usr/lib/python3.4/lib-dynload/64/privileges.so
file path=usr/lib/python3.4/lib-dynload/64/pyexpat.so
file path=usr/lib/python3.4/lib-dynload/64/rbac.so
file path=usr/lib/python3.4/lib-dynload/64/readline.so
file path=usr/lib/python3.4/lib-dynload/64/resource.so
file path=usr/lib/python3.4/lib-dynload/64/select.so
file path=usr/lib/python3.4/lib-dynload/64/spwd.so
file path=usr/lib/python3.4/lib-dynload/64/syslog.so
file path=usr/lib/python3.4/lib-dynload/64/termios.so
file path=usr/lib/python3.4/lib-dynload/64/time.so
file path=usr/lib/python3.4/lib-dynload/64/ucred.so
file path=usr/lib/python3.4/lib-dynload/64/unicodedata.so
file path=usr/lib/python3.4/lib-dynload/64/xxlimited.so
file path=usr/lib/python3.4/lib-dynload/64/zlib.so
file path=usr/lib/python3.4/lib-dynload/_bisect.so
file path=usr/lib/python3.4/lib-dynload/_bz2.so
file path=usr/lib/python3.4/lib-dynload/_codecs_cn.so
file path=usr/lib/python3.4/lib-dynload/_codecs_hk.so
file path=usr/lib/python3.4/lib-dynload/_codecs_iso2022.so
file path=usr/lib/python3.4/lib-dynload/_codecs_jp.so
file path=usr/lib/python3.4/lib-dynload/_codecs_kr.so
file path=usr/lib/python3.4/lib-dynload/_codecs_tw.so
file path=usr/lib/python3.4/lib-dynload/_crypt.so
file path=usr/lib/python3.4/lib-dynload/_csv.so
file path=usr/lib/python3.4/lib-dynload/_ctypes.so
file path=usr/lib/python3.4/lib-dynload/_ctypes_test.so
file path=usr/lib/python3.4/lib-dynload/_curses.so
file path=usr/lib/python3.4/lib-dynload/_curses_panel.so
file path=usr/lib/python3.4/lib-dynload/_datetime.so
file path=usr/lib/python3.4/lib-dynload/_dbm.so
file path=usr/lib/python3.4/lib-dynload/_decimal.so
file path=usr/lib/python3.4/lib-dynload/_elementtree.so
file path=usr/lib/python3.4/lib-dynload/_gdbm.so
file path=usr/lib/python3.4/lib-dynload/_hashlib.so
file path=usr/lib/python3.4/lib-dynload/_heapq.so
file path=usr/lib/python3.4/lib-dynload/_json.so
file path=usr/lib/python3.4/lib-dynload/_lsprof.so
file path=usr/lib/python3.4/lib-dynload/_lzma.so
file path=usr/lib/python3.4/lib-dynload/_md5.so
file path=usr/lib/python3.4/lib-dynload/_multibytecodec.so
file path=usr/lib/python3.4/lib-dynload/_multiprocessing.so
file path=usr/lib/python3.4/lib-dynload/_opcode.so
file path=usr/lib/python3.4/lib-dynload/_pickle.so
file path=usr/lib/python3.4/lib-dynload/_posixsubprocess.so
file path=usr/lib/python3.4/lib-dynload/_random.so
file path=usr/lib/python3.4/lib-dynload/_sha1.so
file path=usr/lib/python3.4/lib-dynload/_sha256.so
file path=usr/lib/python3.4/lib-dynload/_sha512.so
file path=usr/lib/python3.4/lib-dynload/_socket.so
file path=usr/lib/python3.4/lib-dynload/_sqlite3.so
file path=usr/lib/python3.4/lib-dynload/_ssl.so
file path=usr/lib/python3.4/lib-dynload/_struct.so
file path=usr/lib/python3.4/lib-dynload/64/_testbuffer.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_testcapi.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/_testimportmultiple.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/array.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/audioop.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/binascii.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/cmath.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/dlpi.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/fcntl.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/grp.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/math.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/mmap.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/nis.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/ossaudiodev.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/parser.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/privileges.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/pyexpat.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/rbac.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/readline.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/resource.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/select.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/spwd.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/syslog.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/termios.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/time.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/ucred.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/unicodedata.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/xxlimited.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/64/zlib.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_bisect.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_bz2.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_codecs_cn.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_codecs_hk.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_codecs_iso2022.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_codecs_jp.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_codecs_kr.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_codecs_tw.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_crypt.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_csv.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_ctypes.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_ctypes_test.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_curses.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_curses_panel.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_datetime.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_dbm.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_decimal.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_elementtree.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_gdbm.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_hashlib.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_heapq.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_json.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_lsprof.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_lzma.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_md5.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_multibytecodec.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_multiprocessing.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_opcode.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_pickle.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_posixsubprocess.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_random.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_sha1.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_sha256.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_sha512.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_socket.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_sqlite3.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_ssl.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_struct.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_sysconfigdata.py
file path=usr/lib/python3.4/lib-dynload/_testbuffer.so
file path=usr/lib/python3.4/lib-dynload/_testcapi.so
file path=usr/lib/python3.4/lib-dynload/_testimportmultiple.so
file path=usr/lib/python3.4/lib-dynload/array.so
file path=usr/lib/python3.4/lib-dynload/audioop.so
file path=usr/lib/python3.4/lib-dynload/binascii.so
file path=usr/lib/python3.4/lib-dynload/cmath.so
file path=usr/lib/python3.4/lib-dynload/dlpi.so
file path=usr/lib/python3.4/lib-dynload/fcntl.so
file path=usr/lib/python3.4/lib-dynload/grp.so
file path=usr/lib/python3.4/lib-dynload/math.so
file path=usr/lib/python3.4/lib-dynload/mmap.so
file path=usr/lib/python3.4/lib-dynload/nis.so
file path=usr/lib/python3.4/lib-dynload/ossaudiodev.so
file path=usr/lib/python3.4/lib-dynload/parser.so
file path=usr/lib/python3.4/lib-dynload/privileges.so
file path=usr/lib/python3.4/lib-dynload/pyexpat.so
file path=usr/lib/python3.4/lib-dynload/rbac.so
file path=usr/lib/python3.4/lib-dynload/readline.so
file path=usr/lib/python3.4/lib-dynload/resource.so
file path=usr/lib/python3.4/lib-dynload/select.so
file path=usr/lib/python3.4/lib-dynload/spwd.so
file path=usr/lib/python3.4/lib-dynload/syslog.so
file path=usr/lib/python3.4/lib-dynload/termios.so
file path=usr/lib/python3.4/lib-dynload/time.so
file path=usr/lib/python3.4/lib-dynload/ucred.so
file path=usr/lib/python3.4/lib-dynload/unicodedata.so
file path=usr/lib/python3.4/lib-dynload/xxlimited.so
file path=usr/lib/python3.4/lib-dynload/zlib.so
file path=usr/lib/python3.4/lib-dynload/_testbuffer.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_testcapi.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_testimportmultiple.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/array.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/audioop.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/binascii.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/cmath.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/dlpi.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/fcntl.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/grp.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/math.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/mmap.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/nis.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/ossaudiodev.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/parser.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/privileges.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/pyexpat.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/rbac.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/readline.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/resource.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/select.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/spwd.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/syslog.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/termios.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/time.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/ucred.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/unicodedata.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/xxlimited.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/zlib.cpython-34m.so
file path=usr/lib/python3.4/lib2to3/Grammar$(COMPONENT_VERSION).final.0.pickle
file path=usr/lib/python3.4/lib2to3/Grammar.txt
file path=usr/lib/python3.4/lib2to3/PatternGrammar$(COMPONENT_VERSION).final.0.pickle
@@ -1227,6 +1240,7 @@
file path=usr/lib/python3.4/test/cjkencodings/shift_jisx0213-utf8.txt
file path=usr/lib/python3.4/test/cjkencodings/shift_jisx0213.txt
file path=usr/lib/python3.4/test/cmath_testcases.txt
file path=usr/lib/python3.4/test/coding20731.py
file path=usr/lib/python3.4/test/curses_tests.py
file path=usr/lib/python3.4/test/data/README
file path=usr/lib/python3.4/test/datetimetester.py
@@ -1423,20 +1437,20 @@
file path=usr/lib/python3.4/test/mock_socket.py
file path=usr/lib/python3.4/test/mp_fork_bomb.py
file path=usr/lib/python3.4/test/multibytecodec_support.py
file path=usr/lib/python3.4/test/namespace_pkgs/both_portions/foo/one.py
file path=usr/lib/python3.4/test/namespace_pkgs/both_portions/foo/two.py
file path=usr/lib/python3.4/test/namespace_pkgs/missing_directory.zip
file path=usr/lib/python3.4/test/namespace_pkgs/module_and_namespace_package/a_test.py
file path=usr/lib/python3.4/test/namespace_pkgs/module_and_namespace_package/a_test/empty
file path=usr/lib/python3.4/test/namespace_pkgs/nested_portion1.zip
file path=usr/lib/python3.4/test/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py
file path=usr/lib/python3.4/test/namespace_pkgs/not_a_namespace_pkg/foo/one.py
file path=usr/lib/python3.4/test/namespace_pkgs/portion1/foo/one.py
file path=usr/lib/python3.4/test/namespace_pkgs/portion2/foo/two.py
file path=usr/lib/python3.4/test/namespace_pkgs/project1/parent/child/one.py
file path=usr/lib/python3.4/test/namespace_pkgs/project2/parent/child/two.py
file path=usr/lib/python3.4/test/namespace_pkgs/project3/parent/child/three.py
file path=usr/lib/python3.4/test/namespace_pkgs/top_level_portion1.zip
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/one.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/two.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/missing_directory.zip
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/nested_portion1.zip
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo/one.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo/two.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child/one.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child/two.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child/three.py
file path=usr/lib/python3.4/test/test_importlib/namespace_pkgs/top_level_portion1.zip
file path=usr/lib/python3.4/test/nokia.pem
file path=usr/lib/python3.4/test/nullbytecert.pem
file path=usr/lib/python3.4/test/nullcert.pem
@@ -1526,7 +1540,6 @@
file path=usr/lib/python3.4/test/test_asyncio/test_unix_events.py
file path=usr/lib/python3.4/test/test_asyncio/test_windows_events.py
file path=usr/lib/python3.4/test/test_asyncio/test_windows_utils.py
file path=usr/lib/python3.4/test/test_asyncio/tests.txt
file path=usr/lib/python3.4/test/test_asyncore.py
file path=usr/lib/python3.4/test/test_atexit.py
file path=usr/lib/python3.4/test/test_audioop.py
@@ -1749,19 +1762,23 @@
file path=usr/lib/python3.4/test/test_importlib/__main__.py
file path=usr/lib/python3.4/test/test_importlib/abc.py
file path=usr/lib/python3.4/test/test_importlib/builtin/__init__.py
file path=usr/lib/python3.4/test/test_importlib/builtin/__main__.py
file path=usr/lib/python3.4/test/test_importlib/builtin/test_finder.py
file path=usr/lib/python3.4/test/test_importlib/builtin/test_loader.py
file path=usr/lib/python3.4/test/test_importlib/builtin/util.py
file path=usr/lib/python3.4/test/test_importlib/extension/__init__.py
file path=usr/lib/python3.4/test/test_importlib/extension/__main__.py
file path=usr/lib/python3.4/test/test_importlib/extension/test_case_sensitivity.py
file path=usr/lib/python3.4/test/test_importlib/extension/test_finder.py
file path=usr/lib/python3.4/test/test_importlib/extension/test_loader.py
file path=usr/lib/python3.4/test/test_importlib/extension/test_path_hook.py
file path=usr/lib/python3.4/test/test_importlib/extension/util.py
file path=usr/lib/python3.4/test/test_importlib/frozen/__init__.py
file path=usr/lib/python3.4/test/test_importlib/frozen/__main__.py
file path=usr/lib/python3.4/test/test_importlib/frozen/test_finder.py
file path=usr/lib/python3.4/test/test_importlib/frozen/test_loader.py
file path=usr/lib/python3.4/test/test_importlib/import_/__init__.py
file path=usr/lib/python3.4/test/test_importlib/import_/__main__.py
file path=usr/lib/python3.4/test/test_importlib/import_/test___loader__.py
file path=usr/lib/python3.4/test/test_importlib/import_/test___package__.py
file path=usr/lib/python3.4/test/test_importlib/import_/test_api.py
@@ -1774,6 +1791,7 @@
file path=usr/lib/python3.4/test/test_importlib/import_/util.py
file path=usr/lib/python3.4/test/test_importlib/regrtest.py
file path=usr/lib/python3.4/test/test_importlib/source/__init__.py
file path=usr/lib/python3.4/test/test_importlib/source/__main__.py
file path=usr/lib/python3.4/test/test_importlib/source/test_case_sensitivity.py
file path=usr/lib/python3.4/test/test_importlib/source/test_file_loader.py
file path=usr/lib/python3.4/test/test_importlib/source/test_finder.py
@@ -1783,6 +1801,7 @@
file path=usr/lib/python3.4/test/test_importlib/test_abc.py
file path=usr/lib/python3.4/test/test_importlib/test_api.py
file path=usr/lib/python3.4/test/test_importlib/test_locks.py
file path=usr/lib/python3.4/test/test_importlib/test_namespace_pkgs.py
file path=usr/lib/python3.4/test/test_importlib/test_spec.py
file path=usr/lib/python3.4/test/test_importlib/test_util.py
file path=usr/lib/python3.4/test/test_importlib/test_windows.py
@@ -1851,7 +1870,6 @@
file path=usr/lib/python3.4/test/test_multiprocessing_forkserver.py
file path=usr/lib/python3.4/test/test_multiprocessing_main_handling.py
file path=usr/lib/python3.4/test/test_multiprocessing_spawn.py
file path=usr/lib/python3.4/test/test_namespace_pkgs.py
file path=usr/lib/python3.4/test/test_netrc.py
file path=usr/lib/python3.4/test/test_nis.py
file path=usr/lib/python3.4/test/test_nntplib.py
@@ -1938,6 +1956,7 @@
file path=usr/lib/python3.4/test/test_socketserver.py
file path=usr/lib/python3.4/test/test_sort.py
file path=usr/lib/python3.4/test/test_source_encoding.py
file path=usr/lib/python3.4/test/test_spwd.py
file path=usr/lib/python3.4/test/test_sqlite.py
file path=usr/lib/python3.4/test/test_ssl.py
file path=usr/lib/python3.4/test/test_startfile.py
@@ -1980,7 +1999,6 @@
file path=usr/lib/python3.4/test/test_timeout.py
file path=usr/lib/python3.4/test/test_tk.py
file path=usr/lib/python3.4/test/test_tokenize.py
file path=usr/lib/python3.4/test/test_tools.py
file path=usr/lib/python3.4/test/test_trace.py
file path=usr/lib/python3.4/test/test_traceback.py
file path=usr/lib/python3.4/test/test_tracemalloc.py
@@ -2059,23 +2077,6 @@
file path=usr/lib/python3.4/this.py
file path=usr/lib/python3.4/threading.py
file path=usr/lib/python3.4/timeit.py
file path=usr/lib/python3.4/tkinter/test/README
file path=usr/lib/python3.4/tkinter/test/__init__.py
file path=usr/lib/python3.4/tkinter/test/runtktests.py
file path=usr/lib/python3.4/tkinter/test/support.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/__init__.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_font.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_misc.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_text.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_variables.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_widgets.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/__init__.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_extensions.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_functions.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_style.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_widgets.py
file path=usr/lib/python3.4/tkinter/test/widget_tests.py
file path=usr/lib/python3.4/token.py
file path=usr/lib/python3.4/tokenize.py
file path=usr/lib/python3.4/trace.py pkg.depend.bypass-generate=.*
@@ -2085,13 +2086,10 @@
file path=usr/lib/python3.4/turtle.py
file path=usr/lib/python3.4/turtledemo/__init__.py
file path=usr/lib/python3.4/turtledemo/__main__.py
file path=usr/lib/python3.4/turtledemo/about_turtle.txt
file path=usr/lib/python3.4/turtledemo/about_turtledemo.txt
file path=usr/lib/python3.4/turtledemo/bytedesign.py
file path=usr/lib/python3.4/turtledemo/chaos.py
file path=usr/lib/python3.4/turtledemo/clock.py
file path=usr/lib/python3.4/turtledemo/colormixer.py
file path=usr/lib/python3.4/turtledemo/demohelp.txt
file path=usr/lib/python3.4/turtledemo/forest.py
file path=usr/lib/python3.4/turtledemo/fractalcurves.py
file path=usr/lib/python3.4/turtledemo/lindenmayer.py
components/python/python34/python34.license
@@ -1,51 +1,57 @@
Terms and conditions for accessing or otherwise using Python
============================================================
From the LICENSE file:
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
===============================================================
.. centered:: PSF LICENSE AGREEMENT FOR PYTHON |release|
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
--------------------------------------------
#. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and
   the Individual or Organization ("Licensee") accessing and otherwise using Python
   |release| software in source or binary form and its associated documentation.
1. This LICENSE AGREEMENT is between the Python Software Foundation
("PSF"), and the Individual or Organization ("Licensee") accessing and
otherwise using this software ("Python") in source or binary form and
its associated documentation.
#. Subject to the terms and conditions of this License Agreement, PSF hereby
   grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
   analyze, test, perform and/or display publicly, prepare derivative works,
   distribute, and otherwise use Python |release| alone or in any derivative
   version, provided, however, that PSF's License Agreement and PSF's notice of
   copyright, i.e., "Copyright Â© 2001-2010 Python Software Foundation; All Rights
   Reserved" are retained in Python |release| alone or in any derivative version
   prepared by Licensee.
2. Subject to the terms and conditions of this License Agreement, PSF hereby
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
analyze, test, perform and/or display publicly, prepare derivative works,
distribute, and otherwise use Python alone or in any derivative version,
provided, however, that PSF's License Agreement and PSF's notice of copyright,
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are
retained in Python alone or in any derivative version prepared by Licensee.
#. In the event Licensee prepares a derivative work that is based on or
   incorporates Python |release| or any part thereof, and wants to make the
   derivative work available to others as provided herein, then Licensee hereby
   agrees to include in any such work a brief summary of the changes made to Python
   |release|.
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python or any part thereof, and wants to make
the derivative work available to others as provided herein, then
Licensee hereby agrees to include in any such work a brief summary of
the changes made to Python.
#. PSF is making Python |release| available to Licensee on an "AS IS" basis.
   PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.  BY WAY OF
   EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
   WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
   USE OF PYTHON |release| WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
4. PSF is making Python available to Licensee on an "AS IS"
basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
INFRINGE ANY THIRD PARTY RIGHTS.
#. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON |release|
   FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
   MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON |release|, OR ANY DERIVATIVE
   THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
#. This License Agreement will automatically terminate upon a material breach of
   its terms and conditions.
6. This License Agreement will automatically terminate upon a material
breach of its terms and conditions.
#. Nothing in this License Agreement shall be deemed to create any relationship
   of agency, partnership, or joint venture between PSF and Licensee.  This License
   Agreement does not grant permission to use PSF trademarks or trade name in a
   trademark sense to endorse or promote products or services of Licensee, or any
   third party.
7. Nothing in this License Agreement shall be deemed to create any
relationship of agency, partnership, or joint venture between PSF and
Licensee.  This License Agreement does not grant permission to use PSF
trademarks or trade name in a trademark sense to endorse or promote
products or services of Licensee, or any third party.
#. By copying, installing or otherwise using Python |release|, Licensee agrees
   to be bound by the terms and conditions of this License Agreement.
8. By copying, installing or otherwise using Python, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
From the Doc/license.rst file:
Licenses and Acknowledgements for Incorporated Software
=======================================================
@@ -58,7 +64,7 @@
----------------
The :mod:`_random` module includes code based on a download from
http://www.math.keio.ac.jp/ matumoto/MT2002/emt19937ar.html. The following are
http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html. The following are
the verbatim comments from the original code::
   A C-program for MT19937, with initialization improved 2002/1/26.
@@ -99,8 +105,8 @@
   Any feedback is very welcome.
   http://www.math.keio.ac.jp/matumoto/emt.html
   email: matumoto@math.keio.ac.jp
   http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
   email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
Sockets
@@ -180,56 +186,6 @@
     ---------------------------------------------------------------------
MD5 message digest algorithm
----------------------------
The source code for the :mod:`md5` module contains the following notice::
     Copyright (C) 1999, 2002 Aladdin Enterprises.  All rights reserved.
     This software is provided 'as-is', without any express or implied
     warranty.  In no event will the authors be held liable for any damages
     arising from the use of this software.
     Permission is granted to anyone to use this software for any purpose,
     including commercial applications, and to alter it and redistribute it
     freely, subject to the following restrictions:
     1. The origin of this software must not be misrepresented; you must not
        claim that you wrote the original software. If you use this software
        in a product, an acknowledgment in the product documentation would be
        appreciated but is not required.
     2. Altered source versions must be plainly marked as such, and must not be
        misrepresented as being the original software.
     3. This notice may not be removed or altered from any source distribution.
     L. Peter Deutsch
     ghost@aladdin.com
     Independent implementation of MD5 (RFC 1321).
     This code implements the MD5 Algorithm defined in RFC 1321, whose
     text is available at
           http://www.ietf.org/rfc/rfc1321.txt
     The code is derived from the text of the RFC, including the test suite
     (section A.5) but excluding the rest of Appendix A.  It does not include
     any code or documentation that is identified in the RFC as being
     copyrighted.
     The original and principal author of md5.h is L. Peter Deutsch
     <ghost@aladdin.com>.  Other authors are noted in the change history
     that follows (in reverse chronological order):
     2002-04-13 lpd Removed support for non-ANSI compilers; removed
           references to Ghostscript; clarified derivation from RFC 1321;
           now handles byte order either statically or dynamically.
     1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
     1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
           added conditionalization for C++ compilation from Martin
           Purschke <purschke@bnl.gov>.
     1999-05-03 lpd Original version.
Asynchronous socket services
----------------------------
@@ -260,7 +216,7 @@
Cookie management
-----------------
The :mod:`Cookie` module contains the following notice::
The :mod:`http.cookies` module contains the following notice::
   Copyright 2000 by Timothy O'Malley <timo@alum.mit.edu>
@@ -351,7 +307,7 @@
XML Remote Procedure Calls
--------------------------
The :mod:`xmlrpclib` module contains the following notice::
The :mod:`xmlrpc.client` module contains the following notice::
       The XML-RPC client interface is
@@ -435,3 +391,937 @@
  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  SUCH DAMAGE.
SipHash24
---------
The file :file:`Python/pyhash.c` contains Marek Majkowski' implementation of
Dan Bernstein's SipHash24 algorithm. The contains the following note::
  <MIT License>
  Copyright (c) 2013  Marek Majkowski <marek@popcount.org>
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
  </MIT License>
  Original location:
     https://github.com/majek/csiphash/
  Solution inspired by code from:
     Samuel Neves (supercop/crypto_auth/siphash24/little)
     djb (supercop/crypto_auth/siphash24/little2)
     Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c)
strtod and dtoa
---------------
The file :file:`Python/dtoa.c`, which supplies C functions dtoa and
strtod for conversion of C doubles to and from strings, is derived
from the file of the same name by David M. Gay, currently available
from http://www.netlib.org/fp/.  The original file, as retrieved on
March 16, 2009, contains the following copyright and licensing
notice::
   /****************************************************************
    *
    * The author of this software is David M. Gay.
    *
    * Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
    *
    * Permission to use, copy, modify, and distribute this software for any
    * purpose without fee is hereby granted, provided that this entire notice
    * is included in all copies of any software which is or includes a copy
    * or modification of this software and in all copies of the supporting
    * documentation for such software.
    *
    * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
    * WARRANTY.  IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
    * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
    * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
    *
    ***************************************************************/
expat
-----
The :mod:`pyexpat` extension is built using an included copy of the expat
sources unless the build is configured ``--with-system-expat``::
  Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
                                 and Clark Cooper
  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:
  The above copyright notice and this permission notice shall be included
  in all copies or substantial portions of the Software.
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
libffi
------
The :mod:`_ctypes` extension is built using an included copy of the libffi
sources unless the build is configured ``--with-system-libffi``::
   Copyright (c) 1996-2008  Red Hat, Inc and others.
   Permission is hereby granted, free of charge, to any person obtaining
   a copy of this software and associated documentation files (the
   ``Software''), to deal in the Software without restriction, including
   without limitation the rights to use, copy, modify, merge, publish,
   distribute, sublicense, and/or sell copies of the Software, and to
   permit persons to whom the Software is furnished to do so, subject to
   the following conditions:
   The above copyright notice and this permission notice shall be included
   in all copies or substantial portions of the Software.
   THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   DEALINGS IN THE SOFTWARE.
zlib
----
The :mod:`zlib` extension is built using an included copy of the zlib
sources if the zlib version found on the system is too old to be
used for the build::
  Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler
  This software is provided 'as-is', without any express or implied
  warranty.  In no event will the authors be held liable for any damages
  arising from the use of this software.
  Permission is granted to anyone to use this software for any purpose,
  including commercial applications, and to alter it and redistribute it
  freely, subject to the following restrictions:
  1. The origin of this software must not be misrepresented; you must not
     claim that you wrote the original software. If you use this software
     in a product, an acknowledgment in the product documentation would be
     appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be
     misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.
  Jean-loup Gailly        Mark Adler
  jloup@gzip.org          madler@alumni.caltech.edu
cfuhash
-------
The implementation of the hash table used by the :mod:`tracemalloc` is based
on the cfuhash project::
   Copyright (c) 2005 Don Owens
   All rights reserved.
   This code is released under the BSD license:
   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:
     * Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above
       copyright notice, this list of conditions and the following
       disclaimer in the documentation and/or other materials provided
       with the distribution.
     * Neither the name of the author nor the names of its
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   OF THE POSSIBILITY OF SUCH DAMAGE.
libmpdec
--------
The :mod:`_decimal` Module is built using an included copy of the libmpdec
library unless the build is configured ``--with-system-libmpdec``::
   Copyright (c) 2008-2016 Stefan Krah. All rights reserved.
   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:
   1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
   THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   SUCH DAMAGE.
---------------------------------------------------------------------------
Additional attribution text found in the source:
::::::::::::::
Lib/bsddb/__init__.py
::::::::::::::
#  Copyright (c) 1999-2001, Digital Creations, Fredericksburg, VA, USA
#  and Andrew Kuchling. All rights reserved.
#
#  Redistribution and use in source and binary forms, with or without
#  modification, are permitted provided that the following conditions are
#  met:
#
#    o Redistributions of source code must retain the above copyright
#      notice, this list of conditions, and the disclaimer that follows.
#
#    o Redistributions in binary form must reproduce the above copyright
#      notice, this list of conditions, and the following disclaimer in
#      the documentation and/or other materials provided with the
#      distribution.
#
#    o Neither the name of Digital Creations nor the names of its
#      contributors may be used to endorse or promote products derived
#      from this software without specific prior written permission.
#
#  THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
#  IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
#  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
#  PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DIGITAL
#  CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
#  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
#  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
#  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
#  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
#  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
#  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
#  DAMAGE.
::::::::::::::
Lib/compiler/transformer.py
::::::::::::::
# Original version written by Greg Stein (gstein@lyra.org)
#                         and Bill Tutt (rassilon@lima.mudlib.org)
# February 1997.
#
# Modifications and improvements for Python 2.0 by Jeremy Hylton and
# Mark Hammond
#
# Some fixes to try to have correct line number on almost all nodes
# (except Module, Discard and Stmt) added by Sylvain Thenault
#
# Portions of this file are:
# Copyright (C) 1997-1998 Greg Stein. All Rights Reserved.
#
# This module is provided under a BSD-ish license. See
#   http://www.opensource.org/licenses/bsd-license.html
# and replace OWNER, ORGANIZATION, and YEAR as appropriate.
::::::::::::::
Lib/lib-tk/turtle.py
::::::::::::::
# Copyright (C) 2006 - 2010  Gregor Lingl
# email: glingl@aon.at
#
# This software is provided 'as-is', without any express or implied
# warranty.  In no event will the authors be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
#
# 1. The origin of this software must not be misrepresented; you must not
#    claim that you wrote the original software. If you use this software
#    in a product, an acknowledgment in the product documentation would be
#    appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
#    misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
::::::::::::::
Lib/logging/__init__.py
::::::::::::::
# Copyright 2001-2009 by Vinay Sajip. All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appear in all copies and that
# both that copyright notice and this permission notice appear in
# supporting documentation, and that the name of Vinay Sajip
# not be used in advertising or publicity pertaining to distribution
# of the software without specific, written prior permission.
# VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
# ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
# VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
::::::::::::::
Lib/multiprocessing/__init__.py
::::::::::::::
# Copyright (c) 2006-2008, R Oudkerk
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. Neither the name of author nor the names of any contributors may be
#    used to endorse or promote products derived from this software
#    without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
::::::::::::::
Lib/optparse.py
::::::::::::::
Copyright (c) 2001-2006 Gregory P. Ward.  All rights reserved.
Copyright (c) 2002-2006 Python Software Foundation.  All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
  * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
  * Neither the name of the author nor the names of its
    contributors may be used to endorse or promote products derived from
    this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
::::::::::::::
Lib/platform.py
::::::::::::::
    Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
    Copyright (c) 2000-2010, eGenix.com Software GmbH; mailto:info@egenix.com
    Permission to use, copy, modify, and distribute this software and its
    documentation for any purpose and without fee or royalty is hereby granted,
    provided that the above copyright notice appear in all copies and that
    both that copyright notice and this permission notice appear in
    supporting documentation or portions thereof, including modifications,
    that you make.
    EGENIX.COM SOFTWARE GMBH DISCLAIMS ALL WARRANTIES WITH REGARD TO
    THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
    FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,
    INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
    FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
    NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
    WITH THE USE OR PERFORMANCE OF THIS SOFTWARE !
::::::::::::::
Lib/profile.py
::::::::::::::
# Copyright Disney Enterprises, Inc.  All Rights Reserved.
# Licensed to PSF under a Contributor Agreement
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied.  See the License for the specific language
# governing permissions and limitations under the License.
::::::::::::::
Lib/sqlite3/__init__.py
::::::::::::::
# Copyright (C) 2005 Gerhard H?ring <gh@ghaering.de>
#
# This file is part of pysqlite.
#
# This software is provided 'as-is', without any express or implied
# warranty.  In no event will the authors be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
#
# 1. The origin of this software must not be misrepresented; you must not
#    claim that you wrote the original software. If you use this software
#    in a product, an acknowledgment in the product documentation would be
#    appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
#    misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
::::::::::::::
Lib/tarfile.py
::::::::::::::
# Copyright (C) 2002 Lars Gust?bel <lars@gustaebel.de>
# All rights reserved.
#
# Permission  is  hereby granted,  free  of charge,  to  any person
# obtaining a  copy of  this software  and associated documentation
# files  (the  "Software"),  to   deal  in  the  Software   without
# restriction,  including  without limitation  the  rights to  use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies  of  the  Software,  and to  permit  persons  to  whom the
# Software  is  furnished  to  do  so,  subject  to  the  following
# conditions:
#
# The above copyright  notice and this  permission notice shall  be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS  IS", WITHOUT WARRANTY OF ANY  KIND,
# EXPRESS OR IMPLIED, INCLUDING  BUT NOT LIMITED TO  THE WARRANTIES
# OF  MERCHANTABILITY,  FITNESS   FOR  A  PARTICULAR   PURPOSE  AND
# NONINFRINGEMENT.  IN  NO  EVENT SHALL  THE  AUTHORS  OR COPYRIGHT
# HOLDERS  BE LIABLE  FOR ANY  CLAIM, DAMAGES  OR OTHER  LIABILITY,
# WHETHER  IN AN  ACTION OF  CONTRACT, TORT  OR OTHERWISE,  ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
::::::::::::::
Lib/unittest.py
::::::::::::::
Copyright (c) 1999-2003 Steve Purcell
This module is free software, and you may redistribute it and/or modify
it under the same terms as Python itself, so long as this copyright message
and disclaimer are retained in their original form.
IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
::::::::::::::
Modules/_localemodule.c
::::::::::::::
Copyright (C) 1997, 2002, 2003 Martin von Loewis
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies.
This software comes with no warranty. Use at your own risk.
::::::::::::::
Modules/parsermodule.c
::::::::::::::
 *  Copyright 1995-1996 by Fred L. Drake, Jr. and Virginia Polytechnic
 *  Institute and State University, Blacksburg, Virginia, USA.
 *  Portions copyright 1991-1995 by Stichting Mathematisch Centrum,
 *  Amsterdam, The Netherlands.  Copying is permitted under the terms
 *  associated with the main Python distribution, with the additional
 *  restriction that this additional notice be included and maintained
 *  on all distributed copies.
::::::::::::::
Modules/timing.h
::::::::::::::
/*
 * Copyright (c) 1993 George V. Neville-Neil
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name, George Neville-Neil may not be used to endorse or promote
 *    products derived from this software without specific prior
 *    written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */
::::::::::::::
Parser/spark.py
::::::::::::::
#  Copyright (c) 1998-2002 John Aycock
#
#  Permission is hereby granted, free of charge, to any person obtaining
#  a copy of this software and associated documentation files (the
#  "Software"), to deal in the Software without restriction, including
#  without limitation the rights to use, copy, modify, merge, publish,
#  distribute, sublicense, and/or sell copies of the Software, and to
#  permit persons to whom the Software is furnished to do so, subject to
#  the following conditions:
#
#  The above copyright notice and this permission notice shall be
#  included in all copies or substantial portions of the Software.
#
#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
#  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
#  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
#  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
#  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
#  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
::::::::::::::
Python/getopt.c
::::::::::::::
 * Copyright 1992-1994, David Gottner
 *
 *                    All Rights Reserved
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose and without fee is hereby granted,
 * provided that the above copyright notice, this permission notice and
 * the following disclaimer notice appear unmodified in all copies.
 *
 * I DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL I
 * BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
 * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER
 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 * Nevertheless, I would like to know about bugs in this library or
 * suggestions for improvment.  Send bug reports and feedback to
 * davegottner@delphi.com.
::::::::::::::
Tools/pybench/LICENSE
::::::::::::::
pybench License
---------------
This copyright notice and license applies to all files in the pybench
directory of the pybench distribution.
Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com)
Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com)
                   All Rights Reserved.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee or royalty is hereby
granted, provided that the above copyright notice appear in all copies
and that both that copyright notice and this permission notice appear
in supporting documentation or portions thereof, including
modifications, that you make.
THE AUTHOR MARC-ANDRE LEMBURG DISCLAIMS ALL WARRANTIES WITH REGARD TO
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,
INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE !
::::::::::::::
Tools/pynche/X/xlicense.txt
::::::::::::::
X Window System License - X11R6.4
Copyright (c) 1998 The Open Group
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from The Open Group.
X Window System is a trademark of The Open Group
::::::::::::::
install-sh
::::::::::::::
#!/bin/sh
#
# install - install a program, script, or datafile
#
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name of the X Consortium shall not
# be used in advertising or otherwise to promote the sale, use or other deal-
# ings in this Software without prior written authorization from the X Consor-
# tium.
::::::::::::::
Include/dynamic_annotations.h
Python/dynamic_annotations.c
::::::::::::::
/* Copyright (c) 2008-2009, Google Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * ---
 * Author: Kostya Serebryany
 */
::::::::::::::
Lib/statistics.py
::::::::::::::
##  Module statistics.py
##
##  Copyright (c) 2013 Steven D'Aprano <steve+python@pearwood.info>.
##
##  Licensed under the Apache License, Version 2.0 (the "License");
##  you may not use this file except in compliance with the License.
##  You may obtain a copy of the License at
##
##  http://www.apache.org/licenses/LICENSE-2.0
##
##  Unless required by applicable law or agreed to in writing, software
##  distributed under the License is distributed on an "AS IS" BASIS,
##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
##  See the License for the specific language governing permissions and
##  limitations under the License.
The following applies to all products licensed under the Apache 2.0 License:
You may not use the identified files except in compliance with the Apache License, Version 2.0 (the "License.")
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.  A copy of the license is also reproduced below.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
                         Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/
   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
   1. Definitions.
      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.
      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.
      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.
      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.
      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.
      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.
      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).
      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.
      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."
      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.
   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.
   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.
   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:
      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and
      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and
      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and
      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.
      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.
   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.
   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.
   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.
   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.
   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.
   END OF TERMS AND CONDITIONS
   APPENDIX: How to apply the Apache License to your work.
      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.
   Copyright [yyyy] [name of copyright owner]
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
       http://www.apache.org/licenses/LICENSE-2.0
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
components/python/python34/tkinter-34.p5m
@@ -29,6 +29,7 @@
    default pkg.depend.bypass-generate .* >
<transform file path=usr/bin.*$ -> \
    default pkg.depend.bypass-generate .* >
#
set name=pkg.fmri \
    value=pkg:/library/python/tkinter-34@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
@@ -43,8 +44,8 @@
    value=PSARC/2009/529 value=PSARC/2013/235 value=PSARC/2014/151
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
#
file path=usr/lib/python3.4/lib-dynload/64/_tkinter.so
file path=usr/lib/python3.4/lib-dynload/_tkinter.so
file path=usr/lib/python3.4/lib-dynload/64/_tkinter.cpython-34m.so
file path=usr/lib/python3.4/lib-dynload/_tkinter.cpython-34m.so
file path=usr/lib/python3.4/tkinter/__init__.py
file path=usr/lib/python3.4/tkinter/__main__.py
file path=usr/lib/python3.4/tkinter/_fix.py
@@ -58,6 +59,25 @@
file path=usr/lib/python3.4/tkinter/messagebox.py
file path=usr/lib/python3.4/tkinter/scrolledtext.py
file path=usr/lib/python3.4/tkinter/simpledialog.py
file path=usr/lib/python3.4/tkinter/test/README
file path=usr/lib/python3.4/tkinter/test/__init__.py
file path=usr/lib/python3.4/tkinter/test/runtktests.py
file path=usr/lib/python3.4/tkinter/test/support.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/__init__.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_font.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_geometry_managers.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_images.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_misc.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_text.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_variables.py
file path=usr/lib/python3.4/tkinter/test/test_tkinter/test_widgets.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/__init__.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_extensions.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_functions.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_style.py
file path=usr/lib/python3.4/tkinter/test/test_ttk/test_widgets.py
file path=usr/lib/python3.4/tkinter/test/widget_tests.py
file path=usr/lib/python3.4/tkinter/tix.py
file path=usr/lib/python3.4/tkinter/ttk.py
#
transforms/python-3-soabi
New file
@@ -0,0 +1,8 @@
# Python 2's ABI for .so files is to simply append ".so".  But for Python
# 3, it appends ".cpython-3#[d][m][u].so", where # is the minor version,
# "d" is added if built --with-pydebug (we don't), "m" is added if built
# --with-pymalloc (we do) and "u" is added if built --with-wide-unicode
# (we don't).  See http://legacy.python.org/dev/peps/pep-3149/ for details.
<transform file -> edit path \
    (usr/lib/python3.)([0-9])(/vendor-packages/.*)\.so \
    \\1\\2\\3.cpython-3\\2m.so >