[Midnightbsd-cvs] mports [18379] trunk/lang: move to version dir
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Fri Mar 27 12:49:46 EDT 2015
Revision: 18379
http://svnweb.midnightbsd.org/mports/?rev=18379
Author: laffer1
Date: 2015-03-27 12:49:45 -0400 (Fri, 27 Mar 2015)
Log Message:
-----------
move to version dir
Modified Paths:
--------------
trunk/lang/Makefile
trunk/lang/python34/Makefile
trunk/lang/python34/distinfo
trunk/lang/python34/files/patch-Makefile.pre.in
trunk/lang/python34/files/patch-Modules-_ctypes-libffi-configure
trunk/lang/python34/files/patch-issue20210
trunk/lang/python34/pkg-plist
Added Paths:
-----------
trunk/lang/spidermonkey170/
Removed Paths:
-------------
trunk/lang/python34/files/patch-issue21166
trunk/lang/python34/files/patch-issue21704
trunk/lang/spidermonkey/
Modified: trunk/lang/Makefile
===================================================================
--- trunk/lang/Makefile 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/Makefile 2015-03-27 16:49:45 UTC (rev 18379)
@@ -63,7 +63,7 @@
SUBDIR += python34
SUBDIR += python27
SUBDIR += ruby19
-SUBDIR += spidermonkey
+SUBDIR += spidermonkey170
SUBDIR += spidermonkey185
SUBDIR += steptalk
SUBDIR += tcl-modules
Modified: trunk/lang/python34/Makefile
===================================================================
--- trunk/lang/python34/Makefile 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/Makefile 2015-03-27 16:49:45 UTC (rev 18379)
@@ -3,8 +3,7 @@
# $FreeBSD: head/lang/python34/Makefile 367307 2014-09-04 19:26:24Z antoine $
PORTNAME= python34
-PORTVERSION= 3.4.1
-PORTREVISION= 5
+PORTVERSION= 3.4.3
CATEGORIES= lang python ipv6
MASTER_SITES= PYTHON
MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION}
@@ -16,7 +15,7 @@
LICENSE= python
-USES= cpe ncurses pkgconfig readline tar:xz
+USES= cpe ncurses pkgconfig readline tar:xz iconv
USE_OPENSSL= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
@@ -36,12 +35,13 @@
PLIST_SUB= ABI=${ABIFLAGS} \
OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554
-OPTIONS_DEFINE= DEBUG IPV6 NLS PYMALLOC THREADS TSC
-OPTIONS_DEFAULT= IPV6 NLS PYMALLOC THREADS
+OPTIONS_DEFINE= DEBUG IPV6 LIBFFI NLS PYMALLOC THREADS TSC
+OPTIONS_DEFAULT= IPV6 LIBFFI NLS PYMALLOC THREADS
OPTIONS_RADIO= HASH
OPTIONS_RADIO_HASH= FNV SIPHASH
OPTIONS_SUB= yes
+LIBFFI_DESC= Use libffi from ports instead of bundled version
NLS_DESC= Enable gettext support for the locale module
PYMALLOC_DESC= Enable specialized mallocs
TSC_DESC= Enable processor timestamp counter profiling
@@ -52,26 +52,45 @@
FNV_CONFIGURE_ON= --with-hash-algorithm=fnv
SIPHASH_CONFIGURE_ON= --with-hash-algorithm=siphash24
+
DEBUG_CONFIGURE_WITH= pydebug
IPV6_CONFIGURE_ENABLE= ipv6
+LIBFFI_CONFIGURE_ON= --with-system-ffi
+LIBFFI_LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi
+
# Use CPPFLAGS over CFLAGS due to -I ordering, causing elementtree and pyexpat
# to break in Python 2.7, or preprocessor complaints in Python >= 3.3
# Upstream Issue: http://bugs.python.org/issue6299
-NLS_USES= gettext
-NLS_LIBS= -L${LOCALBASE}/lib -lintl
-NLS_CPPFLAGS= -I${LOCALBASE}/include
-NLS_CONFIGURE_ENV_OFF= ac_cv_lib_intl_textdomain=no ac_cv_header_libintl_h=no
PYMALLOC_CONFIGURE_WITH= pymalloc
-THREADS_CONFIGURE_WITH= threads
-THREADS_CFLAGS= ${PTHREAD_CFLAGS}
-THREADS_LDFLAGS= ${PTHREAD_LIBS}
TSC_CONFIGURE_WITH= tsc
.include <bsd.mport.options.mk>
+.if ${PORT_OPTIONS:MTHREADS}
+PLIST_SUB+= THREADS=""
+CONFIGURE_ARGS+= --with-threads
+CFLAGS+= ${PTHREAD_CFLAGS}
+LDFLAGS+= -lpthread
+# ${PTHREAD_LIBS}
+.else
+PLIST_SUB+= THREADS="@comment "
+CONFIGURE_ARGS+= --without-threads
+.endif
+
+.if ${PORT_OPTIONS:MNLS}
+USES+= gettext
+LDFLAGS+= -L${LOCALBASE}/lib
+# We use CPPFLAGS over CFLAGS here due to -I ordering causing things like
+# elementtree and pyexpat to break with python27, or to silence preprocessor
+# complaints with python33
+CPPFLAGS+= -I${LOCALBASE}/include
+.else
+CONFIGURE_ENV+= ac_cv_lib_intl_textdomain=no ac_cv_header_libintl_h=no
+.endif
+
.if ${PORT_OPTIONS:MPYMALLOC}
ABIFLAGS:= m${ABIFLAGS}
.endif
@@ -86,12 +105,18 @@
PLIST_FILES+= libdata/pkgconfig/python-3.4%%ABI%%.pc
.endif
+# http://bugs.python.org/issue22521
+# http://bugs.python.org/issue23042
+.if ${ARCH} == i386 && !${PORT_OPTIONS:MLIBFFI}
+BROKEN= You must use libffi from ports on i386. Enable the LIBFFI option
+.endif
+
.if ${ARCH} == sparc64
CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
-# See http://bugs.freebsd.org/115940
-.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS) # the world with NO_NIS
+# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650
+.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS)
PLIST_SUB+= NO_NIS="@comment "
DISABLED_EXTENSIONS+= nis
.else
@@ -100,9 +125,9 @@
post-install:
.if ! ${PORT_OPTIONS:MDEBUG}
- ${RM} -f ${STAGEDIR}${PREFIX}/lib/libpython3.so # Upstream Issue: http://bugs.python.org/issue17975
+ ${RM} -f ${PREFIX}/lib/libpython3.so # Upstream Issue: http://bugs.python.org/issue17975
.endif
- for i in ${STAGEDIR}${PREFIX}/lib/python3.4/lib-dynload/*.so; do \
+ for i in ${PREFIX}/lib/python3.4/lib-dynload/*.so; do \
${STRIP_CMD} $$i; done # Strip shared extensions
regression-test: build
Modified: trunk/lang/python34/distinfo
===================================================================
--- trunk/lang/python34/distinfo 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/distinfo 2015-03-27 16:49:45 UTC (rev 18379)
@@ -1,2 +1,2 @@
-SHA256 (python/Python-3.4.1.tar.xz) = c595a163104399041fcbe1c5c04db4c1da94f917b82ce89e8944c8edff7aedc4
-SIZE (python/Python-3.4.1.tar.xz) = 14125788
+SHA256 (python/Python-3.4.3.tar.xz) = b5b3963533768d5fc325a4d7a6bd6f666726002d696f1d399ec06b043ea996b8
+SIZE (python/Python-3.4.3.tar.xz) = 14421964
Modified: trunk/lang/python34/files/patch-Makefile.pre.in
===================================================================
--- trunk/lang/python34/files/patch-Makefile.pre.in 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/files/patch-Makefile.pre.in 2015-03-27 16:49:45 UTC (rev 18379)
@@ -6,13 +6,17 @@
# Submitted by: antoine@ (r358029)
# TODO: Upstream
---- ./Makefile.pre.in.orig 2014-05-19 05:19:39.000000000 +0000
-+++ ./Makefile.pre.in 2014-06-15 12:12:17.000000000 +0000
-@@ -70,18 +70,15 @@
+--- Makefile.pre.in.orig 2014-10-08 12:18:14.000000000 +0400
++++ Makefile.pre.in 2014-10-19 12:37:14.000000000 +0400
+@@ -70,23 +70,20 @@
OPT= @OPT@
BASECFLAGS= @BASECFLAGS@
BASECPPFLAGS= @BASECPPFLAGS@
-CONFIGURE_CFLAGS= @CFLAGS@
+ # CFLAGS_NODIST is used for building the interpreter and stdlib C extensions.
+ # Use it when a compiler flag should _not_ be part of the distutils CFLAGS
+ # once Python is installed (Issue #21121).
+ CONFIGURE_CFLAGS_NODIST=@CFLAGS_NODIST@
-CONFIGURE_CPPFLAGS= @CPPFLAGS@
-CONFIGURE_LDFLAGS= @LDFLAGS@
# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
@@ -20,6 +24,7 @@
# values.
-PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS)
+PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CFLAGS) $(EXTRA_CFLAGS)
+ PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST)
# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
# be able to build extension modules using the directories specified in the
# environment variables
@@ -30,7 +35,7 @@
NO_AS_NEEDED= @NO_AS_NEEDED@
LDLAST= @LDLAST@
SGI_ABI= @SGI_ABI@
-@@ -1065,12 +1062,6 @@
+@@ -1080,12 +1077,6 @@
else true; \
fi
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
@@ -43,7 +48,7 @@
-rm -f $(DESTDIR)$(BINDIR)/python3-config
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
-rm -f $(DESTDIR)$(LIBPC)/python3.pc
-@@ -1333,6 +1324,12 @@
+@@ -1348,6 +1339,12 @@
$(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
$(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
$(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
Modified: trunk/lang/python34/files/patch-Modules-_ctypes-libffi-configure
===================================================================
--- trunk/lang/python34/files/patch-Modules-_ctypes-libffi-configure 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/files/patch-Modules-_ctypes-libffi-configure 2015-03-27 16:49:45 UTC (rev 18379)
@@ -1,11 +1,11 @@
---- ./Modules/_ctypes/libffi/configure.orig 2013-05-15 20:32:57.000000000 +0400
-+++ ./Modules/_ctypes/libffi/configure 2013-05-18 10:56:03.000000000 +0400
-@@ -6889,7 +6889,7 @@
+--- Modules/_ctypes/libffi/configure.orig 2014-10-08 12:18:14.000000000 +0400
++++ Modules/_ctypes/libffi/configure 2014-10-19 12:39:11.000000000 +0400
+@@ -7526,7 +7526,7 @@
rm -rf conftest*
;;
--x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
-+amd64-*-freebsd*|x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
+-x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
++amd64-*-freebsd*|amd64-*-midnightbsd*|x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
- # Find out which ABI we are using.
- echo 'int i;' > conftest.$ac_ext
+ # Find out what ABI is being produced by ac_compile, and set linker
+ # options accordingly. Note that the listed cases only cover the
Modified: trunk/lang/python34/files/patch-issue20210
===================================================================
--- trunk/lang/python34/files/patch-issue20210 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/files/patch-issue20210 2015-03-27 16:49:45 UTC (rev 18379)
@@ -42,16 +42,16 @@
# Check for use of the system expat library
AC_MSG_CHECKING(for --with-system-expat)
AC_ARG_WITH(system_expat,
---- ./configure.orig 2014-05-19 05:19:40.000000000 +0000
-+++ ./configure 2014-06-15 12:27:03.000000000 +0000
+--- configure.orig 2015-03-01 13:57:08.000000000 +0300
++++ configure 2015-03-01 13:57:30.000000000 +0300
@@ -650,6 +650,7 @@
TCLTK_LIBS
TCLTK_INCLUDES
LIBFFI_INCLUDEDIR
+DISABLED_EXTENSIONS
+ PKG_CONFIG_LIBDIR
+ PKG_CONFIG_PATH
PKG_CONFIG
- SHLIBS
- CFLAGSFORSHARED
--- ./setup.py.orig 2014-03-24 22:48:48.495472513 +1100
+++ ./setup.py 2014-03-24 22:49:20.076122201 +1100
@@ -33,7 +33,10 @@
Deleted: trunk/lang/python34/files/patch-issue21166
===================================================================
--- trunk/lang/python34/files/patch-issue21166 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/files/patch-issue21166 2015-03-27 16:49:45 UTC (rev 18379)
@@ -1,74 +0,0 @@
-# HG changeset patch
-# User Ned Deily <nad at acm.org>
-# Date 1408739569 25200
-# Node ID e52d85f2e2846453dd0503613d28cf6967f113d7
-# Parent d99014320220951707f79d114ae33f8c5a372a87
-Issue #21166: Prevent possible segfaults and other random failures of
-python --generate-posix-vars in pybuilddir.txt build target by ensuring
-that pybuilddir.txt is always regenerated when configure is run and
-that the newly built skeleton python does not inadvertently import
-modules from previously installed instances.
-
-diff --git a/Makefile.pre.in b/Makefile.pre.in
---- Makefile.pre.in
-+++ Makefile.pre.in
-@@ -546,8 +546,18 @@ platform: $(BUILDPYTHON) pybuilddir.txt
- # Create build directory and generate the sysconfig build-time data there.
- # pybuilddir.txt contains the name of the build dir and is used for
- # sys.path fixup -- see Modules/getpath.c.
-+# Since this step runs before shared modules are built, try to avoid bootstrap
-+# problems by creating a dummy pybuildstr.txt just to allow interpreter
-+# initialization to succeed. It will be overwritten by generate-posix-vars
-+# or removed in case of failure.
- pybuilddir.txt: $(BUILDPYTHON)
-- $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars
-+ @echo "none" > ./pybuilddir.txt
-+ $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars ;\
-+ if test $$? -ne 0 ; then \
-+ echo "generate-posix-vars failed" ; \
-+ rm -f ./pybuilddir.txt ; \
-+ exit 1 ; \
-+ fi
-
- # Build the shared modules
- # Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
-diff --git a/Misc/NEWS b/Misc/NEWS
---- Misc/NEWS
-+++ Misc/NEWS
-@@ -242,6 +242,9 @@ Build
-
- - Issue #21811: Anticipated fixes to support OS X versions > 10.9.
-
-+- Issue #21166: Prevent possible segfaults and other random failures of
-+ python --generate-posix-vars in pybuilddir.txt build target.
-+
- IDLE
- ----
-
-diff --git a/configure b/configure
---- configure
-+++ configure
-@@ -2950,6 +2950,9 @@ case $host_os in *\ *) host_os=`echo "$h
-
-
-
-+# pybuilddir.txt will be created by --generate-posix-vars in the Makefile
-+rm -f pybuilddir.txt
-+
- if test "$cross_compiling" = yes; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for python interpreter for cross build" >&5
- $as_echo_n "checking for python interpreter for cross build... " >&6; }
-diff --git a/configure.ac b/configure.ac
---- configure.ac
-+++ configure.ac
-@@ -53,6 +53,9 @@ AC_CANONICAL_HOST
- AC_SUBST(build)
- AC_SUBST(host)
-
-+# pybuilddir.txt will be created by --generate-posix-vars in the Makefile
-+rm -f pybuilddir.txt
-+
- if test "$cross_compiling" = yes; then
- AC_MSG_CHECKING([for python interpreter for cross build])
- if test -z "$PYTHON_FOR_BUILD"; then
-
Deleted: trunk/lang/python34/files/patch-issue21704
===================================================================
--- trunk/lang/python34/files/patch-issue21704 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/files/patch-issue21704 2015-03-27 16:49:45 UTC (rev 18379)
@@ -1,22 +0,0 @@
-# HG changeset patch
-# User Richard Oudkerk <shibturn at gmail.com>
-# Date 1406584862 -3600
-# Node ID f618f673920043e31d8dee20b35c3e6f3e271178
-# Parent a1e01081e731a1214793cd4b5b4fc89fe6202357
-Issue #21704: Fix build error for _multiprocessing when semaphores
-are not available. Patch by Arfrever Frehtes Taifersar Arahesis.
-
-diff --git a/Modules/_multiprocessing/multiprocessing.c b/Modules/_multiprocessing/multiprocessing.c
---- Modules/_multiprocessing/multiprocessing.c
-+++ Modules/_multiprocessing/multiprocessing.c
-@@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = {
- {"recv", multiprocessing_recv, METH_VARARGS, ""},
- {"send", multiprocessing_send, METH_VARARGS, ""},
- #endif
-+#ifndef POSIX_SEMAPHORES_NOT_ENABLED
- {"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""},
-+#endif
- {NULL}
- };
-
-
Modified: trunk/lang/python34/pkg-plist
===================================================================
--- trunk/lang/python34/pkg-plist 2015-03-27 16:49:08 UTC (rev 18378)
+++ trunk/lang/python34/pkg-plist 2015-03-27 16:49:45 UTC (rev 18379)
@@ -107,8 +107,8 @@
lib/python3.4/__phello__.foo.py
lib/python3.4/__pycache__/__future__.cpython-34.pyc
lib/python3.4/__pycache__/__future__.cpython-34.pyo
-lib/python3.4/__pycache__/__phello__.cpython-34.pyc
-lib/python3.4/__pycache__/__phello__.cpython-34.pyo
+lib/python3.4/__pycache__/__phello__.foo.cpython-34.pyc
+lib/python3.4/__pycache__/__phello__.foo.cpython-34.pyo
lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc
lib/python3.4/__pycache__/_bootlocale.cpython-34.pyo
lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc
@@ -460,6 +460,8 @@
lib/python3.4/asyncio/__pycache__/base_subprocess.cpython-34.pyo
lib/python3.4/asyncio/__pycache__/constants.cpython-34.pyc
lib/python3.4/asyncio/__pycache__/constants.cpython-34.pyo
+lib/python3.4/asyncio/__pycache__/coroutines.cpython-34.pyc
+lib/python3.4/asyncio/__pycache__/coroutines.cpython-34.pyo
lib/python3.4/asyncio/__pycache__/events.cpython-34.pyc
lib/python3.4/asyncio/__pycache__/events.cpython-34.pyo
lib/python3.4/asyncio/__pycache__/futures.cpython-34.pyc
@@ -476,6 +478,8 @@
lib/python3.4/asyncio/__pycache__/queues.cpython-34.pyo
lib/python3.4/asyncio/__pycache__/selector_events.cpython-34.pyc
lib/python3.4/asyncio/__pycache__/selector_events.cpython-34.pyo
+lib/python3.4/asyncio/__pycache__/sslproto.cpython-34.pyc
+lib/python3.4/asyncio/__pycache__/sslproto.cpython-34.pyo
lib/python3.4/asyncio/__pycache__/streams.cpython-34.pyc
lib/python3.4/asyncio/__pycache__/streams.cpython-34.pyo
lib/python3.4/asyncio/__pycache__/subprocess.cpython-34.pyc
@@ -495,6 +499,7 @@
lib/python3.4/asyncio/base_events.py
lib/python3.4/asyncio/base_subprocess.py
lib/python3.4/asyncio/constants.py
+lib/python3.4/asyncio/coroutines.py
lib/python3.4/asyncio/events.py
lib/python3.4/asyncio/futures.py
lib/python3.4/asyncio/locks.py
@@ -503,6 +508,7 @@
lib/python3.4/asyncio/protocols.py
lib/python3.4/asyncio/queues.py
lib/python3.4/asyncio/selector_events.py
+lib/python3.4/asyncio/sslproto.py
lib/python3.4/asyncio/streams.py
lib/python3.4/asyncio/subprocess.py
lib/python3.4/asyncio/tasks.py
@@ -595,10 +601,11 @@
lib/python3.4/ctypes/macholib/fetch_macholib.bat
lib/python3.4/ctypes/macholib/framework.py
lib/python3.4/ctypes/test/__init__.py
+lib/python3.4/ctypes/test/__main__.py
lib/python3.4/ctypes/test/__pycache__/__init__.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/runtests.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/runtests.cpython-34.pyo
+lib/python3.4/ctypes/test/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/ctypes/test/__pycache__/__main__.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_anon.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/test_anon.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_array_in_pointer.cpython-34.pyc
@@ -625,8 +632,6 @@
lib/python3.4/ctypes/test/__pycache__/test_checkretval.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_delattr.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/test_delattr.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_errcheck.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_errcheck.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_errno.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/test_errno.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_find.cpython-34.pyc
@@ -641,8 +646,6 @@
lib/python3.4/ctypes/test/__pycache__/test_incomplete.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_init.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/test_init.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_integers.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_integers.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_internals.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/test_internals.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_keeprefs.cpython-34.pyc
@@ -705,7 +708,6 @@
lib/python3.4/ctypes/test/__pycache__/test_win32.cpython-34.pyo
lib/python3.4/ctypes/test/__pycache__/test_wintypes.cpython-34.pyc
lib/python3.4/ctypes/test/__pycache__/test_wintypes.cpython-34.pyo
-lib/python3.4/ctypes/test/runtests.py
lib/python3.4/ctypes/test/test_anon.py
lib/python3.4/ctypes/test/test_array_in_pointer.py
lib/python3.4/ctypes/test/test_arrays.py
@@ -719,7 +721,6 @@
lib/python3.4/ctypes/test/test_cfuncs.py
lib/python3.4/ctypes/test/test_checkretval.py
lib/python3.4/ctypes/test/test_delattr.py
-lib/python3.4/ctypes/test/test_errcheck.py
lib/python3.4/ctypes/test/test_errno.py
lib/python3.4/ctypes/test/test_find.py
lib/python3.4/ctypes/test/test_frombuffer.py
@@ -727,7 +728,6 @@
lib/python3.4/ctypes/test/test_functions.py
lib/python3.4/ctypes/test/test_incomplete.py
lib/python3.4/ctypes/test/test_init.py
-lib/python3.4/ctypes/test/test_integers.py
lib/python3.4/ctypes/test/test_internals.py
lib/python3.4/ctypes/test/test_keeprefs.py
lib/python3.4/ctypes/test/test_libc.py
@@ -1546,8 +1546,8 @@
lib/python3.4/ensurepip/__pycache__/__main__.cpython-34.pyo
lib/python3.4/ensurepip/__pycache__/_uninstall.cpython-34.pyc
lib/python3.4/ensurepip/__pycache__/_uninstall.cpython-34.pyo
-lib/python3.4/ensurepip/_bundled/pip-1.5.6-py2.py3-none-any.whl
-lib/python3.4/ensurepip/_bundled/setuptools-2.1-py2.py3-none-any.whl
+lib/python3.4/ensurepip/_bundled/pip-6.0.8-py2.py3-none-any.whl
+lib/python3.4/ensurepip/_bundled/setuptools-12.0.5-py2.py3-none-any.whl
lib/python3.4/ensurepip/_uninstall.py
lib/python3.4/enum.py
lib/python3.4/filecmp.py
@@ -1771,8 +1771,6 @@
lib/python3.4/idlelib/__pycache__/run.cpython-34.pyo
lib/python3.4/idlelib/__pycache__/tabbedpages.cpython-34.pyc
lib/python3.4/idlelib/__pycache__/tabbedpages.cpython-34.pyo
-lib/python3.4/idlelib/__pycache__/testcode.cpython-34.pyc
-lib/python3.4/idlelib/__pycache__/testcode.cpython-34.pyo
lib/python3.4/idlelib/__pycache__/textView.cpython-34.pyc
lib/python3.4/idlelib/__pycache__/textView.cpython-34.pyo
lib/python3.4/idlelib/aboutDialog.py
@@ -1800,6 +1798,22 @@
lib/python3.4/idlelib/idle_test/__pycache__/mock_idle.cpython-34.pyo
lib/python3.4/idlelib/idle_test/__pycache__/mock_tk.cpython-34.pyc
lib/python3.4/idlelib/idle_test/__pycache__/mock_tk.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_autocomplete.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_autocomplete.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_autoexpand.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_autoexpand.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_configdialog.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_configdialog.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_hyperparser.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_hyperparser.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_parenmatch.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_parenmatch.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_searchdialogbase.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_textview.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_textview.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_widgetredir.cpython-34.pyc
+lib/python3.4/idlelib/idle_test/__pycache__/test_widgetredir.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/__pycache__/test_searchdialogbase.cpython-34.pyo
lib/python3.4/idlelib/idle_test/__pycache__/test_calltips.cpython-34.pyc
lib/python3.4/idlelib/idle_test/__pycache__/test_calltips.cpython-34.pyo
lib/python3.4/idlelib/idle_test/__pycache__/test_config_name.cpython-34.pyc
@@ -1822,6 +1836,14 @@
lib/python3.4/idlelib/idle_test/__pycache__/test_text.cpython-34.pyo
lib/python3.4/idlelib/idle_test/__pycache__/test_warning.cpython-34.pyc
lib/python3.4/idlelib/idle_test/__pycache__/test_warning.cpython-34.pyo
+lib/python3.4/idlelib/idle_test/test_autocomplete.py
+lib/python3.4/idlelib/idle_test/test_autoexpand.py
+lib/python3.4/idlelib/idle_test/test_configdialog.py
+lib/python3.4/idlelib/idle_test/test_hyperparser.py
+lib/python3.4/idlelib/idle_test/test_parenmatch.py
+lib/python3.4/idlelib/idle_test/test_searchdialogbase.py
+lib/python3.4/idlelib/idle_test/test_textview.py
+lib/python3.4/idlelib/idle_test/test_widgetredir.py
lib/python3.4/idlelib/idle_test/htest.py
lib/python3.4/idlelib/idle_test/mock_idle.py
lib/python3.4/idlelib/idle_test/mock_tk.py
@@ -1842,7 +1864,6 @@
lib/python3.4/idlelib/rpc.py
lib/python3.4/idlelib/run.py
lib/python3.4/idlelib/tabbedpages.py
-lib/python3.4/idlelib/testcode.py
lib/python3.4/idlelib/textView.py
lib/python3.4/imaplib.py
lib/python3.4/imghdr.py
@@ -1942,9 +1963,9 @@
%%NO_DEBUG%%lib/python3.4/lib-dynload/xxlimited.so
lib/python3.4/lib-dynload/zlib.so
lib/python3.4/lib2to3/Grammar.txt
-lib/python3.4/lib2to3/Grammar3.4.1.final.0.pickle
+lib/python3.4/lib2to3/Grammar3.4.3.final.0.pickle
lib/python3.4/lib2to3/PatternGrammar.txt
-lib/python3.4/lib2to3/PatternGrammar3.4.1.final.0.pickle
+lib/python3.4/lib2to3/PatternGrammar3.4.3.final.0.pickle
lib/python3.4/lib2to3/__init__.py
lib/python3.4/lib2to3/__main__.py
lib/python3.4/lib2to3/__pycache__/__init__.cpython-34.pyc
@@ -2168,8 +2189,11 @@
lib/python3.4/lib2to3/pytree.py
lib/python3.4/lib2to3/refactor.py
lib/python3.4/lib2to3/tests/__init__.py
+lib/python3.4/lib2to3/tests/__main__.py
lib/python3.4/lib2to3/tests/__pycache__/__init__.cpython-34.pyc
lib/python3.4/lib2to3/tests/__pycache__/__init__.cpython-34.pyo
+lib/python3.4/lib2to3/tests/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/lib2to3/tests/__pycache__/__main__.cpython-34.pyo
lib/python3.4/lib2to3/tests/__pycache__/pytree_idempotency.cpython-34.pyc
lib/python3.4/lib2to3/tests/__pycache__/pytree_idempotency.cpython-34.pyo
lib/python3.4/lib2to3/tests/__pycache__/support.cpython-34.pyc
@@ -2504,6 +2528,8 @@
lib/python3.4/test/__pycache__/seq_tests.cpython-34.pyo
lib/python3.4/test/__pycache__/sortperf.cpython-34.pyc
lib/python3.4/test/__pycache__/sortperf.cpython-34.pyo
+lib/python3.4/test/__pycache__/test_spwd.cpython-34.pyc
+lib/python3.4/test/__pycache__/test_spwd.cpython-34.pyo
lib/python3.4/test/__pycache__/ssl_servers.cpython-34.pyc
lib/python3.4/test/__pycache__/ssl_servers.cpython-34.pyo
lib/python3.4/test/__pycache__/ssltests.cpython-34.pyc
@@ -3052,6 +3078,8 @@
lib/python3.4/test/__pycache__/test_sched.cpython-34.pyo
lib/python3.4/test/__pycache__/test_scope.cpython-34.pyc
lib/python3.4/test/__pycache__/test_scope.cpython-34.pyo
+lib/python3.4/test/__pycache__/test_script_helper.cpython-34.pyc
+lib/python3.4/test/__pycache__/test_script_helper.cpython-34.pyo
lib/python3.4/test/__pycache__/test_select.cpython-34.pyc
lib/python3.4/test/__pycache__/test_select.cpython-34.pyo
lib/python3.4/test/__pycache__/test_selectors.cpython-34.pyc
@@ -3172,8 +3200,6 @@
lib/python3.4/test/__pycache__/test_tk.cpython-34.pyo
lib/python3.4/test/__pycache__/test_tokenize.cpython-34.pyc
lib/python3.4/test/__pycache__/test_tokenize.cpython-34.pyo
-lib/python3.4/test/__pycache__/test_tools.cpython-34.pyc
-lib/python3.4/test/__pycache__/test_tools.cpython-34.pyo
lib/python3.4/test/__pycache__/test_trace.cpython-34.pyc
lib/python3.4/test/__pycache__/test_trace.cpython-34.pyo
lib/python3.4/test/__pycache__/test_traceback.cpython-34.pyc
@@ -3592,6 +3618,7 @@
lib/python3.4/test/sample_doctest_no_docstrings.py
lib/python3.4/test/sample_doctest_no_doctests.py
lib/python3.4/test/script_helper.py
+lib/python3.4/test/selfsigned_pythontestdotnet.pem
lib/python3.4/test/seq_tests.py
lib/python3.4/test/sgml_input.html
lib/python3.4/test/sha256.pem
@@ -3667,6 +3694,8 @@
lib/python3.4/test/test_asyncio/__pycache__/test_queues.cpython-34.pyo
lib/python3.4/test/test_asyncio/__pycache__/test_selector_events.cpython-34.pyc
lib/python3.4/test/test_asyncio/__pycache__/test_selector_events.cpython-34.pyo
+lib/python3.4/test/test_asyncio/__pycache__/test_sslproto.cpython-34.pyc
+lib/python3.4/test/test_asyncio/__pycache__/test_sslproto.cpython-34.pyo
lib/python3.4/test/test_asyncio/__pycache__/test_streams.cpython-34.pyc
lib/python3.4/test/test_asyncio/__pycache__/test_streams.cpython-34.pyo
lib/python3.4/test/test_asyncio/__pycache__/test_subprocess.cpython-34.pyc
@@ -3695,6 +3724,7 @@
lib/python3.4/test/test_asyncio/test_proactor_events.py
lib/python3.4/test/test_asyncio/test_queues.py
lib/python3.4/test/test_asyncio/test_selector_events.py
+lib/python3.4/test/test_asyncio/test_sslproto.py
lib/python3.4/test/test_asyncio/test_streams.py
lib/python3.4/test/test_asyncio/test_subprocess.py
lib/python3.4/test/test_asyncio/test_tasks.py
@@ -3982,8 +4012,11 @@
lib/python3.4/test/test_importlib/__pycache__/util.cpython-34.pyo
lib/python3.4/test/test_importlib/abc.py
lib/python3.4/test/test_importlib/builtin/__init__.py
+lib/python3.4/test/test_importlib/builtin/__main__.py
lib/python3.4/test/test_importlib/builtin/__pycache__/__init__.cpython-34.pyc
lib/python3.4/test/test_importlib/builtin/__pycache__/__init__.cpython-34.pyo
+lib/python3.4/test/test_importlib/builtin/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/test/test_importlib/builtin/__pycache__/__main__.cpython-34.pyo
lib/python3.4/test/test_importlib/builtin/__pycache__/test_finder.cpython-34.pyc
lib/python3.4/test/test_importlib/builtin/__pycache__/test_finder.cpython-34.pyo
lib/python3.4/test/test_importlib/builtin/__pycache__/test_loader.cpython-34.pyc
@@ -3994,8 +4027,11 @@
lib/python3.4/test/test_importlib/builtin/test_loader.py
lib/python3.4/test/test_importlib/builtin/util.py
lib/python3.4/test/test_importlib/extension/__init__.py
+lib/python3.4/test/test_importlib/extension/__main__.py
lib/python3.4/test/test_importlib/extension/__pycache__/__init__.cpython-34.pyc
lib/python3.4/test/test_importlib/extension/__pycache__/__init__.cpython-34.pyo
+lib/python3.4/test/test_importlib/extension/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/test/test_importlib/extension/__pycache__/__main__.cpython-34.pyo
lib/python3.4/test/test_importlib/extension/__pycache__/test_case_sensitivity.cpython-34.pyc
lib/python3.4/test/test_importlib/extension/__pycache__/test_case_sensitivity.cpython-34.pyo
lib/python3.4/test/test_importlib/extension/__pycache__/test_finder.cpython-34.pyc
@@ -4012,8 +4048,11 @@
lib/python3.4/test/test_importlib/extension/test_path_hook.py
lib/python3.4/test/test_importlib/extension/util.py
lib/python3.4/test/test_importlib/frozen/__init__.py
+lib/python3.4/test/test_importlib/frozen/__main__.py
lib/python3.4/test/test_importlib/frozen/__pycache__/__init__.cpython-34.pyc
lib/python3.4/test/test_importlib/frozen/__pycache__/__init__.cpython-34.pyo
+lib/python3.4/test/test_importlib/frozen/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/test/test_importlib/frozen/__pycache__/__main__.cpython-34.pyo
lib/python3.4/test/test_importlib/frozen/__pycache__/test_finder.cpython-34.pyc
lib/python3.4/test/test_importlib/frozen/__pycache__/test_finder.cpython-34.pyo
lib/python3.4/test/test_importlib/frozen/__pycache__/test_loader.cpython-34.pyc
@@ -4021,8 +4060,11 @@
lib/python3.4/test/test_importlib/frozen/test_finder.py
lib/python3.4/test/test_importlib/frozen/test_loader.py
lib/python3.4/test/test_importlib/import_/__init__.py
+lib/python3.4/test/test_importlib/import_/__main__.py
lib/python3.4/test/test_importlib/import_/__pycache__/__init__.cpython-34.pyc
lib/python3.4/test/test_importlib/import_/__pycache__/__init__.cpython-34.pyo
+lib/python3.4/test/test_importlib/import_/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/test/test_importlib/import_/__pycache__/__main__.cpython-34.pyo
lib/python3.4/test/test_importlib/import_/__pycache__/test___loader__.cpython-34.pyc
lib/python3.4/test/test_importlib/import_/__pycache__/test___loader__.cpython-34.pyo
lib/python3.4/test/test_importlib/import_/__pycache__/test___package__.cpython-34.pyc
@@ -4089,8 +4131,11 @@
lib/python3.4/test/test_importlib/namespace_pkgs/top_level_portion1.zip
lib/python3.4/test/test_importlib/regrtest.py
lib/python3.4/test/test_importlib/source/__init__.py
+lib/python3.4/test/test_importlib/source/__main__.py
lib/python3.4/test/test_importlib/source/__pycache__/__init__.cpython-34.pyc
lib/python3.4/test/test_importlib/source/__pycache__/__init__.cpython-34.pyo
+lib/python3.4/test/test_importlib/source/__pycache__/__main__.cpython-34.pyc
+lib/python3.4/test/test_importlib/source/__pycache__/__main__.cpython-34.pyo
lib/python3.4/test/test_importlib/source/__pycache__/test_case_sensitivity.cpython-34.pyc
lib/python3.4/test/test_importlib/source/__pycache__/test_case_sensitivity.cpython-34.pyo
lib/python3.4/test/test_importlib/source/__pycache__/test_file_loader.cpython-34.pyc
@@ -4286,6 +4331,7 @@
lib/python3.4/test/test_sax.py
lib/python3.4/test/test_sched.py
lib/python3.4/test/test_scope.py
+lib/python3.4/test/test_script_helper.py
lib/python3.4/test/test_select.py
lib/python3.4/test/test_selectors.py
lib/python3.4/test/test_set.py
@@ -4304,6 +4350,7 @@
lib/python3.4/test/test_socketserver.py
lib/python3.4/test/test_sort.py
lib/python3.4/test/test_source_encoding.py
+lib/python3.4/test/test_spwd.py
lib/python3.4/test/test_sqlite.py
lib/python3.4/test/test_ssl.py
lib/python3.4/test/test_startfile.py
@@ -4346,7 +4393,6 @@
lib/python3.4/test/test_timeout.py
lib/python3.4/test/test_tk.py
lib/python3.4/test/test_tokenize.py
-lib/python3.4/test/test_tools.py
lib/python3.4/test/test_trace.py
lib/python3.4/test/test_traceback.py
lib/python3.4/test/test_tracemalloc.py
@@ -4490,6 +4536,8 @@
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_font.cpython-34.pyo
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_geometry_managers.cpython-34.pyc
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_geometry_managers.cpython-34.pyo
+lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_images.cpython-34.pyc
+lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_images.cpython-34.pyo
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_loadtk.cpython-34.pyc
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_loadtk.cpython-34.pyo
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_misc.cpython-34.pyc
@@ -4502,6 +4550,7 @@
lib/python3.4/tkinter/test/test_tkinter/__pycache__/test_widgets.cpython-34.pyo
lib/python3.4/tkinter/test/test_tkinter/test_font.py
lib/python3.4/tkinter/test/test_tkinter/test_geometry_managers.py
+lib/python3.4/tkinter/test/test_tkinter/test_images.py
lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py
lib/python3.4/tkinter/test/test_tkinter/test_misc.py
lib/python3.4/tkinter/test/test_tkinter/test_text.py
@@ -4574,13 +4623,10 @@
lib/python3.4/turtledemo/__pycache__/wikipedia.cpython-34.pyo
lib/python3.4/turtledemo/__pycache__/yinyang.cpython-34.pyc
lib/python3.4/turtledemo/__pycache__/yinyang.cpython-34.pyo
-lib/python3.4/turtledemo/about_turtle.txt
-lib/python3.4/turtledemo/about_turtledemo.txt
lib/python3.4/turtledemo/bytedesign.py
lib/python3.4/turtledemo/chaos.py
lib/python3.4/turtledemo/clock.py
lib/python3.4/turtledemo/colormixer.py
-lib/python3.4/turtledemo/demohelp.txt
lib/python3.4/turtledemo/forest.py
lib/python3.4/turtledemo/fractalcurves.py
lib/python3.4/turtledemo/lindenmayer.py
@@ -4840,181 +4886,3 @@
lib/python3.4/xmlrpc/server.py
lib/python3.4/zipfile.py
man/man1/python3.4.1.gz
- at dirrmtry lib/python3.4/xmlrpc/__pycache__
- at dirrmtry lib/python3.4/xmlrpc
- at dirrmtry lib/python3.4/xml/sax/__pycache__
- at dirrmtry lib/python3.4/xml/sax
- at dirrmtry lib/python3.4/xml/parsers/__pycache__
- at dirrmtry lib/python3.4/xml/parsers
- at dirrmtry lib/python3.4/xml/etree/__pycache__
- at dirrmtry lib/python3.4/xml/etree
- at dirrmtry lib/python3.4/xml/dom/__pycache__
- at dirrmtry lib/python3.4/xml/dom
- at dirrmtry lib/python3.4/xml/__pycache__
- at dirrmtry lib/python3.4/xml
- at dirrmtry lib/python3.4/wsgiref/__pycache__
- at dirrmtry lib/python3.4/wsgiref
- at dirrmtry lib/python3.4/venv/scripts/posix
- at dirrmtry lib/python3.4/venv/scripts
- at dirrmtry lib/python3.4/venv/__pycache__
- at dirrmtry lib/python3.4/venv
- at dirrmtry lib/python3.4/urllib/__pycache__
- at dirrmtry lib/python3.4/urllib
- at dirrmtry lib/python3.4/unittest/test/testmock/__pycache__
- at dirrmtry lib/python3.4/unittest/test/testmock
- at dirrmtry lib/python3.4/unittest/test/__pycache__
- at dirrmtry lib/python3.4/unittest/test
- at dirrmtry lib/python3.4/unittest/__pycache__
- at dirrmtry lib/python3.4/unittest
- at dirrmtry lib/python3.4/turtledemo/__pycache__
- at dirrmtry lib/python3.4/turtledemo
- at dirrmtry lib/python3.4/tkinter/test/test_ttk/__pycache__
- at dirrmtry lib/python3.4/tkinter/test/test_ttk
- at dirrmtry lib/python3.4/tkinter/test/test_tkinter/__pycache__
- at dirrmtry lib/python3.4/tkinter/test/test_tkinter
- at dirrmtry lib/python3.4/tkinter/test/__pycache__
- at dirrmtry lib/python3.4/tkinter/test
- at dirrmtry lib/python3.4/tkinter/__pycache__
- at dirrmtry lib/python3.4/tkinter
- at dirrmtry lib/python3.4/test/xmltestdata
- at dirrmtry lib/python3.4/test/tracedmodules/__pycache__
- at dirrmtry lib/python3.4/test/tracedmodules
- at dirrmtry lib/python3.4/test/test_json/__pycache__
- at dirrmtry lib/python3.4/test/test_json
- at dirrmtry lib/python3.4/test/test_importlib/source/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/source
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project3
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project2
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/project1
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/portion2
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/portion1
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs/both_portions
- at dirrmtry lib/python3.4/test/test_importlib/namespace_pkgs
- at dirrmtry lib/python3.4/test/test_importlib/import_/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/import_
- at dirrmtry lib/python3.4/test/test_importlib/frozen/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/frozen
- at dirrmtry lib/python3.4/test/test_importlib/extension/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/extension
- at dirrmtry lib/python3.4/test/test_importlib/builtin/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib/builtin
- at dirrmtry lib/python3.4/test/test_importlib/__pycache__
- at dirrmtry lib/python3.4/test/test_importlib
- at dirrmtry lib/python3.4/test/test_email/data
- at dirrmtry lib/python3.4/test/test_email/__pycache__
- at dirrmtry lib/python3.4/test/test_email
- at dirrmtry lib/python3.4/test/test_asyncio/__pycache__
- at dirrmtry lib/python3.4/test/test_asyncio
- at dirrmtry lib/python3.4/test/support/__pycache__
- at dirrmtry lib/python3.4/test/support
- at dirrmtry lib/python3.4/test/subprocessdata/__pycache__
- at dirrmtry lib/python3.4/test/subprocessdata
- at dirrmtry lib/python3.4/test/sndhdrdata
- at dirrmtry lib/python3.4/test/imghdrdata
- at dirrmtry lib/python3.4/test/encoded_modules/__pycache__
- at dirrmtry lib/python3.4/test/encoded_modules
- at dirrmtry lib/python3.4/test/decimaltestdata
- at dirrmtry lib/python3.4/test/data
- at dirrmtry lib/python3.4/test/cjkencodings
- at dirrmtry lib/python3.4/test/capath
- at dirrmtry lib/python3.4/test/audiodata
- at dirrmtry lib/python3.4/test/__pycache__
- at dirrmtry lib/python3.4/test
- at dirrmtry lib/python3.4/sqlite3/test/__pycache__
- at dirrmtry lib/python3.4/sqlite3/test
- at dirrmtry lib/python3.4/sqlite3/__pycache__
- at dirrmtry lib/python3.4/sqlite3
- at dirrmtry lib/python3.4/site-packages
- at dirrmtry lib/python3.4/pydoc_data/__pycache__
- at dirrmtry lib/python3.4/pydoc_data
- at dirrmtry lib/python3.4/plat-freebsd%%OSMAJOR%%/__pycache__
- at dirrmtry lib/python3.4/plat-freebsd%%OSMAJOR%%
- at dirrmtry lib/python3.4/multiprocessing/dummy/__pycache__
- at dirrmtry lib/python3.4/multiprocessing/dummy
- at dirrmtry lib/python3.4/multiprocessing/__pycache__
- at dirrmtry lib/python3.4/multiprocessing
- at dirrmtry lib/python3.4/logging/__pycache__
- at dirrmtry lib/python3.4/logging
- at dirrmtry lib/python3.4/lib2to3/tests/data/fixers/myfixes
- at dirrmtry lib/python3.4/lib2to3/tests/data/fixers
- at dirrmtry lib/python3.4/lib2to3/tests/data
- at dirrmtry lib/python3.4/lib2to3/tests/__pycache__
- at dirrmtry lib/python3.4/lib2to3/tests
- at dirrmtry lib/python3.4/lib2to3/pgen2/__pycache__
- at dirrmtry lib/python3.4/lib2to3/pgen2
- at dirrmtry lib/python3.4/lib2to3/fixes/__pycache__
- at dirrmtry lib/python3.4/lib2to3/fixes
- at dirrmtry lib/python3.4/lib2to3/__pycache__
- at dirrmtry lib/python3.4/lib2to3
- at dirrmtry lib/python3.4/lib-dynload
- at dirrmtry lib/python3.4/json/__pycache__
- at dirrmtry lib/python3.4/json
- at dirrmtry lib/python3.4/importlib/__pycache__
- at dirrmtry lib/python3.4/importlib
- at dirrmtry lib/python3.4/idlelib/idle_test/__pycache__
- at dirrmtry lib/python3.4/idlelib/idle_test
- at dirrmtry lib/python3.4/idlelib/__pycache__
- at dirrmtry lib/python3.4/idlelib/Icons
- at dirrmtry lib/python3.4/idlelib
- at dirrmtry lib/python3.4/http/__pycache__
- at dirrmtry lib/python3.4/http
- at dirrmtry lib/python3.4/html/__pycache__
- at dirrmtry lib/python3.4/html
- at dirrmtry lib/python3.4/ensurepip/_bundled
- at dirrmtry lib/python3.4/ensurepip/__pycache__
- at dirrmtry lib/python3.4/ensurepip
- at dirrmtry lib/python3.4/encodings/__pycache__
- at dirrmtry lib/python3.4/encodings
- at dirrmtry lib/python3.4/email/mime/__pycache__
- at dirrmtry lib/python3.4/email/mime
- at dirrmtry lib/python3.4/email/__pycache__
- at dirrmtry lib/python3.4/email
- at dirrmtry lib/python3.4/distutils/tests/__pycache__
- at dirrmtry lib/python3.4/distutils/tests
- at dirrmtry lib/python3.4/distutils/command/__pycache__
- at dirrmtry lib/python3.4/distutils/command
- at dirrmtry lib/python3.4/distutils/__pycache__
- at dirrmtry lib/python3.4/distutils
- at dirrmtry lib/python3.4/dbm/__pycache__
- at dirrmtry lib/python3.4/dbm
- at dirrmtry lib/python3.4/curses/__pycache__
- at dirrmtry lib/python3.4/curses
- at dirrmtry lib/python3.4/ctypes/test/__pycache__
- at dirrmtry lib/python3.4/ctypes/test
- at dirrmtry lib/python3.4/ctypes/macholib/__pycache__
- at dirrmtry lib/python3.4/ctypes/macholib
- at dirrmtry lib/python3.4/ctypes/__pycache__
- at dirrmtry lib/python3.4/ctypes
- at dirrmtry lib/python3.4/config-3.4%%ABI%%
- at dirrmtry lib/python3.4/concurrent/futures/__pycache__
- at dirrmtry lib/python3.4/concurrent/futures
- at dirrmtry lib/python3.4/concurrent/__pycache__
- at dirrmtry lib/python3.4/concurrent
- at dirrmtry lib/python3.4/collections/__pycache__
- at dirrmtry lib/python3.4/collections
- at dirrmtry lib/python3.4/asyncio/__pycache__
- at dirrmtry lib/python3.4/asyncio
- at dirrmtry lib/python3.4/__pycache__
- at dirrmtry lib/python3.4
- at dirrmtry include/python3.4%%ABI%%
More information about the Midnightbsd-cvs
mailing list