Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Feb 2018 15:41:07 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r461594 - in branches/2018Q1/lang/python34: . files
Message-ID:  <201802121541.w1CFf71k009000@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Feb 12 15:41:07 2018
New Revision: 461594
URL: https://svnweb.freebsd.org/changeset/ports/461594

Log:
  MFH: r461513
  
  Update to 3.4.8
  
  - Set PORTNAME to python and add PKGNAMESUFFIX
  - Update Makefile and PLIST to be similar with python36
  - Sort USES
  - Remove CPE_*: all of them are default values
  - Update PLIST_FILES: do not use %%
  - Fix shebang:
    - Update SHEBANG_FILES
    - Remove over-patched shebang fix of Lib/cgi.py
  - Update http:// links in Makefile comments and patch files
  
  Changes:	https://docs.python.org/3.4/whatsnew/changelog.html
  Security:	0fe70bcd-2ce3-46c9-a64b-4a7da097db07
  
  Approved by:	ports-secteam (riggs)

Modified:
  branches/2018Q1/lang/python34/Makefile
  branches/2018Q1/lang/python34/Makefile.version
  branches/2018Q1/lang/python34/distinfo
  branches/2018Q1/lang/python34/files/patch-Lib__distutils__unixccompiler.py
  branches/2018Q1/lang/python34/files/patch-Makefile.pre.in
  branches/2018Q1/lang/python34/files/patch-issue20210
  branches/2018Q1/lang/python34/files/patch-issue24557
  branches/2018Q1/lang/python34/pkg-plist
Directory Properties:
  branches/2018Q1/   (props changed)

Modified: branches/2018Q1/lang/python34/Makefile
==============================================================================
--- branches/2018Q1/lang/python34/Makefile	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/Makefile	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,10 +1,11 @@
 # Created by: Kubilay Kocak <koobs@FreeBSD.org>
 # $FreeBSD$
 
-PORTNAME=	python34
+PORTNAME=	python
 PORTVERSION=	${PYTHON_PORTVERSION}
 CATEGORIES=	lang python ipv6
 MASTER_SITES=	PYTHON/ftp/python/${PORTVERSION}
+PKGNAMESUFFIX=	${PYTHON_SUFFIX}
 DISTNAME=	Python-${PORTVERSION}
 DIST_SUBDIR=	python
 
@@ -13,15 +14,17 @@ COMMENT=	Interpreted object-oriented programming langu
 
 LICENSE=	PSFL
 
-USES=		cpe ncurses pathfix pkgconfig readline:port ssl tar:xz shebangfix
+USES=		cpe ncurses pathfix pkgconfig readline:port shebangfix ssl tar:xz
 PATHFIX_MAKEFILEIN=	Makefile.pre.in
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
-python_CMD=	${PREFIX}/bin/python${PYTHON_PORTVERSION:R}
-SHEBANG_FILES=	Lib/lib2to3/tests/data/*.py Lib/encodings/*.py
+python_CMD=	${PREFIX}/bin/python${PORTVERSION:R}
+SHEBANG_FILES=	Lib/*.py Lib/*/*.py Lib/*/*/*.py Lib/*/*/*/*.py
 
-CPE_VENDOR=	python
-CPE_PRODUCT=	${CPE_VENDOR}
+# Duplicate python.mk variables. TODO: Let lang/python?? ports use python.mk bits.
+PYTHON_VER=		${PYTHON_PORTVERSION:R}
+PYTHON_VERSION=		python${PYTHON_VER}
+PYTHON_SUFFIX=		${PYTHON_VER:S/.//g}
 
 DISABLED_EXTENSIONS=	_sqlite3 _tkinter _gdbm
 CONFIGURE_ARGS+=	--enable-shared --without-ensurepip
@@ -36,11 +39,13 @@ MAKE_ARGS+=		INSTALL_SHARED="${INSTALL_LIB}"				# Stri
 MAKE_JOBS_UNSAFE=	yes							# Parser/pgen build bug. See Issue: 200622, 201974
 
 SUB_FILES=		pkg-message
-SUB_LIST=		PYTHON_SUFFIX=${PORTVERSION:R:S/.//g}
+SUB_LIST=		PYTHON_SUFFIX=${PYTHON_SUFFIX}
 
 PLIST_SUB=		ABI=${ABIFLAGS} \
-			XYZDOT=${PYTHON_PORTVERSION} \
-			OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/}		# For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554
+			XY=${PYTHON_SUFFIX} \
+			XYDOT=${PYTHON_VER} \
+			XYZDOT=${PORTVERSION} \
+			OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/}		# For plat-freebsd* in pkg-plist. https://bugs.python.org/issue19554
 
 OPTIONS_DEFINE=		DEBUG IPV6 LIBFFI NLS PYMALLOC THREADS TSC
 OPTIONS_DEFAULT=	LIBFFI PYMALLOC THREADS
@@ -68,7 +73,7 @@ LIBFFI_LIB_DEPENDS=	libffi.so: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
+# Upstream Issue: https://bugs.python.org/issue6299
 NLS_USES=		gettext
 NLS_CPPFLAGS=		-I${LOCALBASE}/include
 NLS_LIBS=		-L${LOCALBASE}/lib -lintl
@@ -93,13 +98,13 @@ ABIFLAGS:=	d${ABIFLAGS}
 .endif
 
 .if !empty(ABIFLAGS)
-PLIST_FILES+=	bin/python3.4%%ABI%%
-PLIST_FILES+=	bin/python3.4%%ABI%%-config
-PLIST_FILES+=	libdata/pkgconfig/python-3.4%%ABI%%.pc
+PLIST_FILES+=	bin/python${PYTHON_VER}${ABIFLAGS} \
+		bin/python${PYTHON_VER}${ABIFLAGS}-config \
+		libdata/pkgconfig/python-${PYTHON_VER}${ABIFLAGS}.pc
 .endif
 
-# http://bugs.python.org/issue22521
-# http://bugs.python.org/issue23042
+# https://bugs.python.org/issue22521
+# https://bugs.python.org/issue23042
 .if ${ARCH} == i386 && !${PORT_OPTIONS:MLIBFFI}
 BROKEN=		You must use libffi from ports on i386. Enable the LIBFFI option
 .endif
@@ -108,7 +113,7 @@ BROKEN=		You must use libffi from ports on i386. Enabl
 CFLAGS+=	-DPYTHON_DEFAULT_RECURSION_LIMIT=900
 .endif
 
-# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650
+# See https://bugs.freebsd.org/115940 and https://bugs.freebsd.org/193650
 .if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS)
 PLIST_SUB+=	NO_NIS="@comment "
 DISABLED_EXTENSIONS+=	nis
@@ -124,15 +129,11 @@ post-patch:
 		"s|lib_dirs,\ \'readline\'|[\'${LOCALBASE}/lib\',\ \'.\'],\ \'readline\'|" \
 		${WRKSRC}/setup.py
 .endif
-	${REINPLACE_CMD} -e 's|/usr/local/bin/python|${python_CMD}|' \
-		${WRKSRC}/Lib/cgi.py
 
 post-install:
 .if ! ${PORT_OPTIONS:MDEBUG}
-	${RM} ${STAGEDIR}${PREFIX}/lib/libpython3.so						# Upstream Issue: http://bugs.python.org/issue17975
+	${RM} ${STAGEDIR}${PREFIX}/lib/libpython3.so						# Upstream Issue: https://bugs.python.org/issue17975
 .endif
-	for i in ${STAGEDIR}${PREFIX}/lib/python3.4/lib-dynload/*.so; do \
-		${STRIP_CMD} $$i; done								# Strip shared extensions
 # This code block exists for the qemu-user enabled cross build environment.
 # When using this environment in poudriere, CC is not set to the default
 # of /usr/bin/cc and a cross-compile toolchain is used.  We need to hand
@@ -140,11 +141,13 @@ post-install:
 # FreeBSD base system provides.  sbruno 02Aug2017
 .if ${CC} == /nxb-bin/usr/bin/cc
 	@${REINPLACE_CMD} -e 's=/nxb-bin==' \
-		${STAGEDIR}${PREFIX}/lib/python3.4/_sysconfigdata.py
+		${STAGEDIR}${PREFIX}/lib/python${PYTHON_VER}/_sysconfigdata.py
 	@${REINPLACE_CMD} -e 's=/nxb-bin==' \
-		${STAGEDIR}${PREFIX}/lib/python3.4/config-3.4m/Makefile
+		${STAGEDIR}${PREFIX}/lib/python${PYTHON_VER}/config-${PYTHON_VER}m/Makefile
 .endif
+	for i in ${STAGEDIR}${PREFIX}/lib/python${PYTHON_VER}/lib-dynload/*.so; do \
+		${STRIP_CMD} $$i; done								# Strip shared extensions
 	${INSTALL_DATA} ${WRKSRC}/Tools/gdb/libpython.py \
-		${STAGEDIR}${PREFIX}/lib/libpython3.4${ABIFLAGS}.so.1-gdb.py
+		${STAGEDIR}${PREFIX}/lib/libpython${PYTHON_VER}${ABIFLAGS}.so.1-gdb.py
 
 .include <bsd.port.mk>

Modified: branches/2018Q1/lang/python34/Makefile.version
==============================================================================
--- branches/2018Q1/lang/python34/Makefile.version	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/Makefile.version	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,4 +1,4 @@
 # Mk/Uses/python.mk includes this file, don't remove it!
 # $FreeBSD$
 
-PYTHON_PORTVERSION=	3.4.7
+PYTHON_PORTVERSION=	3.4.8

Modified: branches/2018Q1/lang/python34/distinfo
==============================================================================
--- branches/2018Q1/lang/python34/distinfo	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/distinfo	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1502303602
-SHA256 (python/Python-3.4.7.tar.xz) = 8714cf2b56dd36922dec8fa184d4936e1001c22fb439798cb73dda069e129d1b
-SIZE (python/Python-3.4.7.tar.xz) = 14511368
+TIMESTAMP = 1518277532
+SHA256 (python/Python-3.4.8.tar.xz) = 29a472fa902c7b2add152f5e1e82e0885a8d360645689c1db5d1949a7e8ac3ea
+SIZE (python/Python-3.4.8.tar.xz) = 14576444

Modified: branches/2018Q1/lang/python34/files/patch-Lib__distutils__unixccompiler.py
==============================================================================
--- branches/2018Q1/lang/python34/files/patch-Lib__distutils__unixccompiler.py	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/files/patch-Lib__distutils__unixccompiler.py	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,5 +1,5 @@
 # Description: Some python extensions can't be compiled with clang 3.4
-# Issue ID: http://bugs.python.org/issue20767
+# Issue ID: https://bugs.python.org/issue20767
 # Submitted by: antoine
 
 --- ./Lib/distutils/unixccompiler.py.orig	2014-03-09 15:25:15.921204441 +1100

Modified: branches/2018Q1/lang/python34/files/patch-Makefile.pre.in
==============================================================================
--- branches/2018Q1/lang/python34/files/patch-Makefile.pre.in	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/files/patch-Makefile.pre.in	Mon Feb 12 15:41:07 2018	(r461594)
@@ -35,6 +35,17 @@
  NO_AS_NEEDED=	@NO_AS_NEEDED@
  LDLAST=		@LDLAST@
  SGI_ABI=	@SGI_ABI@
+@@ -822,8 +825,8 @@ Objects/unicodeobject.o: $(srcdir)/Objec
+ Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h
+ Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
+ 
+-$(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES)
+-	$(OPCODETARGETGEN) $(OPCODETARGETS_H)
++#$(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES)
++#	$(OPCODETARGETGEN) $(OPCODETARGETS_H)
+ 
+ Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h
+ 
 @@ -1080,12 +1077,6 @@
  	else true; \
  	fi

Modified: branches/2018Q1/lang/python34/files/patch-issue20210
==============================================================================
--- branches/2018Q1/lang/python34/files/patch-issue20210	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/files/patch-issue20210	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,5 +1,5 @@
 # Backport patch 0001 from Issue #20210
-# Issue: http://bugs.python.org/issue20210
+# Issue: https://bugs.python.org/issue20210
 # By: Thomas Petazzoni
 
 --- ./Makefile.pre.in.orig	2014-03-24 22:45:17.908886504 +1100

Modified: branches/2018Q1/lang/python34/files/patch-issue24557
==============================================================================
--- branches/2018Q1/lang/python34/files/patch-issue24557	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/files/patch-issue24557	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,4 +1,4 @@
-http://bugs.python.org/issue24557
+https://bugs.python.org/issue24557
 assume egd unless OPENSSL_NO_EGD is defined-remove configure check
 
 --- Modules/_ssl.c.orig	2016-06-25 21:52:32 UTC

Modified: branches/2018Q1/lang/python34/pkg-plist
==============================================================================
--- branches/2018Q1/lang/python34/pkg-plist	Mon Feb 12 15:34:58 2018	(r461593)
+++ branches/2018Q1/lang/python34/pkg-plist	Mon Feb 12 15:41:07 2018	(r461594)
@@ -1,4906 +1,4906 @@
-bin/2to3-3.4
-bin/idle3.4
-bin/pydoc3.4
-bin/python3.4
-bin/python3.4-config
-bin/pyvenv-3.4
-include/python3.4%%ABI%%/Python-ast.h
-include/python3.4%%ABI%%/Python.h
-include/python3.4%%ABI%%/abstract.h
-include/python3.4%%ABI%%/accu.h
-include/python3.4%%ABI%%/asdl.h
-include/python3.4%%ABI%%/ast.h
-include/python3.4%%ABI%%/bitset.h
-include/python3.4%%ABI%%/bltinmodule.h
-include/python3.4%%ABI%%/boolobject.h
-include/python3.4%%ABI%%/bytearrayobject.h
-include/python3.4%%ABI%%/bytes_methods.h
-include/python3.4%%ABI%%/bytesobject.h
-include/python3.4%%ABI%%/cellobject.h
-include/python3.4%%ABI%%/ceval.h
-include/python3.4%%ABI%%/classobject.h
-include/python3.4%%ABI%%/code.h
-include/python3.4%%ABI%%/codecs.h
-include/python3.4%%ABI%%/compile.h
-include/python3.4%%ABI%%/complexobject.h
-include/python3.4%%ABI%%/datetime.h
-include/python3.4%%ABI%%/descrobject.h
-include/python3.4%%ABI%%/dictobject.h
-include/python3.4%%ABI%%/dtoa.h
-include/python3.4%%ABI%%/dynamic_annotations.h
-include/python3.4%%ABI%%/enumobject.h
-include/python3.4%%ABI%%/errcode.h
-include/python3.4%%ABI%%/eval.h
-include/python3.4%%ABI%%/fileobject.h
-include/python3.4%%ABI%%/fileutils.h
-include/python3.4%%ABI%%/floatobject.h
-include/python3.4%%ABI%%/frameobject.h
-include/python3.4%%ABI%%/funcobject.h
-include/python3.4%%ABI%%/genobject.h
-include/python3.4%%ABI%%/graminit.h
-include/python3.4%%ABI%%/grammar.h
-include/python3.4%%ABI%%/import.h
-include/python3.4%%ABI%%/intrcheck.h
-include/python3.4%%ABI%%/iterobject.h
-include/python3.4%%ABI%%/listobject.h
-include/python3.4%%ABI%%/longintrepr.h
-include/python3.4%%ABI%%/longobject.h
-include/python3.4%%ABI%%/marshal.h
-include/python3.4%%ABI%%/memoryobject.h
-include/python3.4%%ABI%%/metagrammar.h
-include/python3.4%%ABI%%/methodobject.h
-include/python3.4%%ABI%%/modsupport.h
-include/python3.4%%ABI%%/moduleobject.h
-include/python3.4%%ABI%%/namespaceobject.h
-include/python3.4%%ABI%%/node.h
-include/python3.4%%ABI%%/object.h
-include/python3.4%%ABI%%/objimpl.h
-include/python3.4%%ABI%%/opcode.h
-include/python3.4%%ABI%%/osdefs.h
-include/python3.4%%ABI%%/parsetok.h
-include/python3.4%%ABI%%/patchlevel.h
-include/python3.4%%ABI%%/pgen.h
-include/python3.4%%ABI%%/pgenheaders.h
-include/python3.4%%ABI%%/py_curses.h
-include/python3.4%%ABI%%/pyarena.h
-include/python3.4%%ABI%%/pyatomic.h
-include/python3.4%%ABI%%/pycapsule.h
-include/python3.4%%ABI%%/pyconfig.h
-include/python3.4%%ABI%%/pyctype.h
-include/python3.4%%ABI%%/pydebug.h
-include/python3.4%%ABI%%/pyerrors.h
-include/python3.4%%ABI%%/pyexpat.h
-include/python3.4%%ABI%%/pyfpe.h
-include/python3.4%%ABI%%/pygetopt.h
-include/python3.4%%ABI%%/pyhash.h
-include/python3.4%%ABI%%/pymacconfig.h
-include/python3.4%%ABI%%/pymacro.h
-include/python3.4%%ABI%%/pymath.h
-include/python3.4%%ABI%%/pymem.h
-include/python3.4%%ABI%%/pyport.h
-include/python3.4%%ABI%%/pystate.h
-include/python3.4%%ABI%%/pystrcmp.h
-include/python3.4%%ABI%%/pystrtod.h
-include/python3.4%%ABI%%/pythonrun.h
-include/python3.4%%ABI%%/pythread.h
-include/python3.4%%ABI%%/pytime.h
-include/python3.4%%ABI%%/rangeobject.h
-include/python3.4%%ABI%%/setobject.h
-include/python3.4%%ABI%%/sliceobject.h
-include/python3.4%%ABI%%/structmember.h
-include/python3.4%%ABI%%/structseq.h
-include/python3.4%%ABI%%/symtable.h
-include/python3.4%%ABI%%/sysmodule.h
-include/python3.4%%ABI%%/token.h
-include/python3.4%%ABI%%/traceback.h
-include/python3.4%%ABI%%/tupleobject.h
-include/python3.4%%ABI%%/typeslots.h
-include/python3.4%%ABI%%/ucnhash.h
-include/python3.4%%ABI%%/unicodeobject.h
-include/python3.4%%ABI%%/warnings.h
-include/python3.4%%ABI%%/weakrefobject.h
-lib/libpython3.4%%ABI%%.so
-lib/libpython3.4%%ABI%%.so.1
-lib/libpython3.4%%ABI%%.so.1-gdb.py
-lib/python3.4/LICENSE.txt
-lib/python3.4/__future__.py
-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__.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
-lib/python3.4/__pycache__/_collections_abc.cpython-34.pyo
-lib/python3.4/__pycache__/_compat_pickle.cpython-34.pyc
-lib/python3.4/__pycache__/_compat_pickle.cpython-34.pyo
-lib/python3.4/__pycache__/_dummy_thread.cpython-34.pyc
-lib/python3.4/__pycache__/_dummy_thread.cpython-34.pyo
-lib/python3.4/__pycache__/_markupbase.cpython-34.pyc
-lib/python3.4/__pycache__/_markupbase.cpython-34.pyo
-lib/python3.4/__pycache__/_osx_support.cpython-34.pyc
-lib/python3.4/__pycache__/_osx_support.cpython-34.pyo
-lib/python3.4/__pycache__/_pyio.cpython-34.pyc
-lib/python3.4/__pycache__/_pyio.cpython-34.pyo
-lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc
-lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyo
-lib/python3.4/__pycache__/_strptime.cpython-34.pyc
-lib/python3.4/__pycache__/_strptime.cpython-34.pyo
-lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc
-lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyo
-lib/python3.4/__pycache__/_threading_local.cpython-34.pyc
-lib/python3.4/__pycache__/_threading_local.cpython-34.pyo
-lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc
-lib/python3.4/__pycache__/_weakrefset.cpython-34.pyo
-lib/python3.4/__pycache__/abc.cpython-34.pyc
-lib/python3.4/__pycache__/abc.cpython-34.pyo
-lib/python3.4/__pycache__/aifc.cpython-34.pyc
-lib/python3.4/__pycache__/aifc.cpython-34.pyo
-lib/python3.4/__pycache__/antigravity.cpython-34.pyc
-lib/python3.4/__pycache__/antigravity.cpython-34.pyo
-lib/python3.4/__pycache__/argparse.cpython-34.pyc
-lib/python3.4/__pycache__/argparse.cpython-34.pyo
-lib/python3.4/__pycache__/ast.cpython-34.pyc
-lib/python3.4/__pycache__/ast.cpython-34.pyo
-lib/python3.4/__pycache__/asynchat.cpython-34.pyc
-lib/python3.4/__pycache__/asynchat.cpython-34.pyo
-lib/python3.4/__pycache__/asyncore.cpython-34.pyc
-lib/python3.4/__pycache__/asyncore.cpython-34.pyo
-lib/python3.4/__pycache__/base64.cpython-34.pyc
-lib/python3.4/__pycache__/base64.cpython-34.pyo
-lib/python3.4/__pycache__/bdb.cpython-34.pyc
-lib/python3.4/__pycache__/bdb.cpython-34.pyo
-lib/python3.4/__pycache__/binhex.cpython-34.pyc
-lib/python3.4/__pycache__/binhex.cpython-34.pyo
-lib/python3.4/__pycache__/bisect.cpython-34.pyc
-lib/python3.4/__pycache__/bisect.cpython-34.pyo
-lib/python3.4/__pycache__/bz2.cpython-34.pyc
-lib/python3.4/__pycache__/bz2.cpython-34.pyo
-lib/python3.4/__pycache__/cProfile.cpython-34.pyc
-lib/python3.4/__pycache__/cProfile.cpython-34.pyo
-lib/python3.4/__pycache__/calendar.cpython-34.pyc
-lib/python3.4/__pycache__/calendar.cpython-34.pyo
-lib/python3.4/__pycache__/cgi.cpython-34.pyc
-lib/python3.4/__pycache__/cgi.cpython-34.pyo
-lib/python3.4/__pycache__/cgitb.cpython-34.pyc
-lib/python3.4/__pycache__/cgitb.cpython-34.pyo
-lib/python3.4/__pycache__/chunk.cpython-34.pyc
-lib/python3.4/__pycache__/chunk.cpython-34.pyo
-lib/python3.4/__pycache__/cmd.cpython-34.pyc
-lib/python3.4/__pycache__/cmd.cpython-34.pyo
-lib/python3.4/__pycache__/code.cpython-34.pyc
-lib/python3.4/__pycache__/code.cpython-34.pyo
-lib/python3.4/__pycache__/codecs.cpython-34.pyc
-lib/python3.4/__pycache__/codecs.cpython-34.pyo
-lib/python3.4/__pycache__/codeop.cpython-34.pyc
-lib/python3.4/__pycache__/codeop.cpython-34.pyo
-lib/python3.4/__pycache__/colorsys.cpython-34.pyc
-lib/python3.4/__pycache__/colorsys.cpython-34.pyo
-lib/python3.4/__pycache__/compileall.cpython-34.pyc
-lib/python3.4/__pycache__/compileall.cpython-34.pyo
-lib/python3.4/__pycache__/configparser.cpython-34.pyc
-lib/python3.4/__pycache__/configparser.cpython-34.pyo
-lib/python3.4/__pycache__/contextlib.cpython-34.pyc
-lib/python3.4/__pycache__/contextlib.cpython-34.pyo
-lib/python3.4/__pycache__/copy.cpython-34.pyc
-lib/python3.4/__pycache__/copy.cpython-34.pyo
-lib/python3.4/__pycache__/copyreg.cpython-34.pyc
-lib/python3.4/__pycache__/copyreg.cpython-34.pyo
-lib/python3.4/__pycache__/crypt.cpython-34.pyc
-lib/python3.4/__pycache__/crypt.cpython-34.pyo
-lib/python3.4/__pycache__/csv.cpython-34.pyc
-lib/python3.4/__pycache__/csv.cpython-34.pyo
-lib/python3.4/__pycache__/datetime.cpython-34.pyc
-lib/python3.4/__pycache__/datetime.cpython-34.pyo
-lib/python3.4/__pycache__/decimal.cpython-34.pyc
-lib/python3.4/__pycache__/decimal.cpython-34.pyo
-lib/python3.4/__pycache__/difflib.cpython-34.pyc
-lib/python3.4/__pycache__/difflib.cpython-34.pyo
-lib/python3.4/__pycache__/dis.cpython-34.pyc
-lib/python3.4/__pycache__/dis.cpython-34.pyo
-lib/python3.4/__pycache__/doctest.cpython-34.pyc
-lib/python3.4/__pycache__/doctest.cpython-34.pyo
-lib/python3.4/__pycache__/dummy_threading.cpython-34.pyc
-lib/python3.4/__pycache__/dummy_threading.cpython-34.pyo
-lib/python3.4/__pycache__/enum.cpython-34.pyc
-lib/python3.4/__pycache__/enum.cpython-34.pyo
-lib/python3.4/__pycache__/filecmp.cpython-34.pyc
-lib/python3.4/__pycache__/filecmp.cpython-34.pyo
-lib/python3.4/__pycache__/fileinput.cpython-34.pyc
-lib/python3.4/__pycache__/fileinput.cpython-34.pyo
-lib/python3.4/__pycache__/fnmatch.cpython-34.pyc
-lib/python3.4/__pycache__/fnmatch.cpython-34.pyo
-lib/python3.4/__pycache__/formatter.cpython-34.pyc
-lib/python3.4/__pycache__/formatter.cpython-34.pyo
-lib/python3.4/__pycache__/fractions.cpython-34.pyc
-lib/python3.4/__pycache__/fractions.cpython-34.pyo
-lib/python3.4/__pycache__/ftplib.cpython-34.pyc
-lib/python3.4/__pycache__/ftplib.cpython-34.pyo
-lib/python3.4/__pycache__/functools.cpython-34.pyc
-lib/python3.4/__pycache__/functools.cpython-34.pyo
-lib/python3.4/__pycache__/genericpath.cpython-34.pyc
-lib/python3.4/__pycache__/genericpath.cpython-34.pyo
-lib/python3.4/__pycache__/getopt.cpython-34.pyc
-lib/python3.4/__pycache__/getopt.cpython-34.pyo
-lib/python3.4/__pycache__/getpass.cpython-34.pyc
-lib/python3.4/__pycache__/getpass.cpython-34.pyo
-lib/python3.4/__pycache__/gettext.cpython-34.pyc
-lib/python3.4/__pycache__/gettext.cpython-34.pyo
-lib/python3.4/__pycache__/glob.cpython-34.pyc
-lib/python3.4/__pycache__/glob.cpython-34.pyo
-lib/python3.4/__pycache__/gzip.cpython-34.pyc
-lib/python3.4/__pycache__/gzip.cpython-34.pyo
-lib/python3.4/__pycache__/hashlib.cpython-34.pyc
-lib/python3.4/__pycache__/hashlib.cpython-34.pyo
-lib/python3.4/__pycache__/heapq.cpython-34.pyc
-lib/python3.4/__pycache__/heapq.cpython-34.pyo
-lib/python3.4/__pycache__/hmac.cpython-34.pyc
-lib/python3.4/__pycache__/hmac.cpython-34.pyo
-lib/python3.4/__pycache__/imaplib.cpython-34.pyc
-lib/python3.4/__pycache__/imaplib.cpython-34.pyo
-lib/python3.4/__pycache__/imghdr.cpython-34.pyc
-lib/python3.4/__pycache__/imghdr.cpython-34.pyo
-lib/python3.4/__pycache__/imp.cpython-34.pyc
-lib/python3.4/__pycache__/imp.cpython-34.pyo
-lib/python3.4/__pycache__/inspect.cpython-34.pyc
-lib/python3.4/__pycache__/inspect.cpython-34.pyo
-lib/python3.4/__pycache__/io.cpython-34.pyc
-lib/python3.4/__pycache__/io.cpython-34.pyo
-lib/python3.4/__pycache__/ipaddress.cpython-34.pyc
-lib/python3.4/__pycache__/ipaddress.cpython-34.pyo
-lib/python3.4/__pycache__/keyword.cpython-34.pyc
-lib/python3.4/__pycache__/keyword.cpython-34.pyo
-lib/python3.4/__pycache__/linecache.cpython-34.pyc
-lib/python3.4/__pycache__/linecache.cpython-34.pyo
-lib/python3.4/__pycache__/locale.cpython-34.pyc
-lib/python3.4/__pycache__/locale.cpython-34.pyo
-lib/python3.4/__pycache__/lzma.cpython-34.pyc
-lib/python3.4/__pycache__/lzma.cpython-34.pyo
-lib/python3.4/__pycache__/macpath.cpython-34.pyc
-lib/python3.4/__pycache__/macpath.cpython-34.pyo
-lib/python3.4/__pycache__/macurl2path.cpython-34.pyc
-lib/python3.4/__pycache__/macurl2path.cpython-34.pyo
-lib/python3.4/__pycache__/mailbox.cpython-34.pyc
-lib/python3.4/__pycache__/mailbox.cpython-34.pyo
-lib/python3.4/__pycache__/mailcap.cpython-34.pyc
-lib/python3.4/__pycache__/mailcap.cpython-34.pyo
-lib/python3.4/__pycache__/mimetypes.cpython-34.pyc
-lib/python3.4/__pycache__/mimetypes.cpython-34.pyo
-lib/python3.4/__pycache__/modulefinder.cpython-34.pyc
-lib/python3.4/__pycache__/modulefinder.cpython-34.pyo
-lib/python3.4/__pycache__/netrc.cpython-34.pyc
-lib/python3.4/__pycache__/netrc.cpython-34.pyo
-lib/python3.4/__pycache__/nntplib.cpython-34.pyc
-lib/python3.4/__pycache__/nntplib.cpython-34.pyo
-lib/python3.4/__pycache__/ntpath.cpython-34.pyc
-lib/python3.4/__pycache__/ntpath.cpython-34.pyo
-lib/python3.4/__pycache__/nturl2path.cpython-34.pyc
-lib/python3.4/__pycache__/nturl2path.cpython-34.pyo
-lib/python3.4/__pycache__/numbers.cpython-34.pyc
-lib/python3.4/__pycache__/numbers.cpython-34.pyo
-lib/python3.4/__pycache__/opcode.cpython-34.pyc
-lib/python3.4/__pycache__/opcode.cpython-34.pyo
-lib/python3.4/__pycache__/operator.cpython-34.pyc
-lib/python3.4/__pycache__/operator.cpython-34.pyo
-lib/python3.4/__pycache__/optparse.cpython-34.pyc
-lib/python3.4/__pycache__/optparse.cpython-34.pyo
-lib/python3.4/__pycache__/os.cpython-34.pyc
-lib/python3.4/__pycache__/os.cpython-34.pyo
-lib/python3.4/__pycache__/pathlib.cpython-34.pyc
-lib/python3.4/__pycache__/pathlib.cpython-34.pyo
-lib/python3.4/__pycache__/pdb.cpython-34.pyc
-lib/python3.4/__pycache__/pdb.cpython-34.pyo
-lib/python3.4/__pycache__/pickle.cpython-34.pyc
-lib/python3.4/__pycache__/pickle.cpython-34.pyo
-lib/python3.4/__pycache__/pickletools.cpython-34.pyc
-lib/python3.4/__pycache__/pickletools.cpython-34.pyo
-lib/python3.4/__pycache__/pipes.cpython-34.pyc
-lib/python3.4/__pycache__/pipes.cpython-34.pyo
-lib/python3.4/__pycache__/pkgutil.cpython-34.pyc
-lib/python3.4/__pycache__/pkgutil.cpython-34.pyo
-lib/python3.4/__pycache__/platform.cpython-34.pyc
-lib/python3.4/__pycache__/platform.cpython-34.pyo
-lib/python3.4/__pycache__/plistlib.cpython-34.pyc
-lib/python3.4/__pycache__/plistlib.cpython-34.pyo
-lib/python3.4/__pycache__/poplib.cpython-34.pyc
-lib/python3.4/__pycache__/poplib.cpython-34.pyo
-lib/python3.4/__pycache__/posixpath.cpython-34.pyc
-lib/python3.4/__pycache__/posixpath.cpython-34.pyo
-lib/python3.4/__pycache__/pprint.cpython-34.pyc
-lib/python3.4/__pycache__/pprint.cpython-34.pyo
-lib/python3.4/__pycache__/profile.cpython-34.pyc
-lib/python3.4/__pycache__/profile.cpython-34.pyo
-lib/python3.4/__pycache__/pstats.cpython-34.pyc
-lib/python3.4/__pycache__/pstats.cpython-34.pyo
-lib/python3.4/__pycache__/pty.cpython-34.pyc
-lib/python3.4/__pycache__/pty.cpython-34.pyo
-lib/python3.4/__pycache__/py_compile.cpython-34.pyc
-lib/python3.4/__pycache__/py_compile.cpython-34.pyo
-lib/python3.4/__pycache__/pyclbr.cpython-34.pyc
-lib/python3.4/__pycache__/pyclbr.cpython-34.pyo
-lib/python3.4/__pycache__/pydoc.cpython-34.pyc
-lib/python3.4/__pycache__/pydoc.cpython-34.pyo
-lib/python3.4/__pycache__/queue.cpython-34.pyc
-lib/python3.4/__pycache__/queue.cpython-34.pyo
-lib/python3.4/__pycache__/quopri.cpython-34.pyc
-lib/python3.4/__pycache__/quopri.cpython-34.pyo
-lib/python3.4/__pycache__/random.cpython-34.pyc
-lib/python3.4/__pycache__/random.cpython-34.pyo
-lib/python3.4/__pycache__/re.cpython-34.pyc
-lib/python3.4/__pycache__/re.cpython-34.pyo
-lib/python3.4/__pycache__/reprlib.cpython-34.pyc
-lib/python3.4/__pycache__/reprlib.cpython-34.pyo
-lib/python3.4/__pycache__/rlcompleter.cpython-34.pyc
-lib/python3.4/__pycache__/rlcompleter.cpython-34.pyo
-lib/python3.4/__pycache__/runpy.cpython-34.pyc
-lib/python3.4/__pycache__/runpy.cpython-34.pyo
-lib/python3.4/__pycache__/sched.cpython-34.pyc
-lib/python3.4/__pycache__/sched.cpython-34.pyo
-lib/python3.4/__pycache__/selectors.cpython-34.pyc
-lib/python3.4/__pycache__/selectors.cpython-34.pyo
-lib/python3.4/__pycache__/shelve.cpython-34.pyc
-lib/python3.4/__pycache__/shelve.cpython-34.pyo
-lib/python3.4/__pycache__/shlex.cpython-34.pyc
-lib/python3.4/__pycache__/shlex.cpython-34.pyo
-lib/python3.4/__pycache__/shutil.cpython-34.pyc
-lib/python3.4/__pycache__/shutil.cpython-34.pyo
-lib/python3.4/__pycache__/site.cpython-34.pyc
-lib/python3.4/__pycache__/site.cpython-34.pyo
-lib/python3.4/__pycache__/smtpd.cpython-34.pyc
-lib/python3.4/__pycache__/smtpd.cpython-34.pyo
-lib/python3.4/__pycache__/smtplib.cpython-34.pyc
-lib/python3.4/__pycache__/smtplib.cpython-34.pyo
-lib/python3.4/__pycache__/sndhdr.cpython-34.pyc
-lib/python3.4/__pycache__/sndhdr.cpython-34.pyo
-lib/python3.4/__pycache__/socket.cpython-34.pyc
-lib/python3.4/__pycache__/socket.cpython-34.pyo
-lib/python3.4/__pycache__/socketserver.cpython-34.pyc
-lib/python3.4/__pycache__/socketserver.cpython-34.pyo
-lib/python3.4/__pycache__/sre_compile.cpython-34.pyc
-lib/python3.4/__pycache__/sre_compile.cpython-34.pyo
-lib/python3.4/__pycache__/sre_constants.cpython-34.pyc
-lib/python3.4/__pycache__/sre_constants.cpython-34.pyo
-lib/python3.4/__pycache__/sre_parse.cpython-34.pyc
-lib/python3.4/__pycache__/sre_parse.cpython-34.pyo
-lib/python3.4/__pycache__/ssl.cpython-34.pyc
-lib/python3.4/__pycache__/ssl.cpython-34.pyo
-lib/python3.4/__pycache__/stat.cpython-34.pyc
-lib/python3.4/__pycache__/stat.cpython-34.pyo
-lib/python3.4/__pycache__/statistics.cpython-34.pyc
-lib/python3.4/__pycache__/statistics.cpython-34.pyo
-lib/python3.4/__pycache__/string.cpython-34.pyc
-lib/python3.4/__pycache__/string.cpython-34.pyo
-lib/python3.4/__pycache__/stringprep.cpython-34.pyc
-lib/python3.4/__pycache__/stringprep.cpython-34.pyo
-lib/python3.4/__pycache__/struct.cpython-34.pyc
-lib/python3.4/__pycache__/struct.cpython-34.pyo
-lib/python3.4/__pycache__/subprocess.cpython-34.pyc
-lib/python3.4/__pycache__/subprocess.cpython-34.pyo
-lib/python3.4/__pycache__/sunau.cpython-34.pyc
-lib/python3.4/__pycache__/sunau.cpython-34.pyo
-lib/python3.4/__pycache__/symbol.cpython-34.pyc
-lib/python3.4/__pycache__/symbol.cpython-34.pyo
-lib/python3.4/__pycache__/symtable.cpython-34.pyc
-lib/python3.4/__pycache__/symtable.cpython-34.pyo
-lib/python3.4/__pycache__/sysconfig.cpython-34.pyc
-lib/python3.4/__pycache__/sysconfig.cpython-34.pyo
-lib/python3.4/__pycache__/tabnanny.cpython-34.pyc
-lib/python3.4/__pycache__/tabnanny.cpython-34.pyo
-lib/python3.4/__pycache__/tarfile.cpython-34.pyc
-lib/python3.4/__pycache__/tarfile.cpython-34.pyo
-lib/python3.4/__pycache__/telnetlib.cpython-34.pyc
-lib/python3.4/__pycache__/telnetlib.cpython-34.pyo
-lib/python3.4/__pycache__/tempfile.cpython-34.pyc
-lib/python3.4/__pycache__/tempfile.cpython-34.pyo
-lib/python3.4/__pycache__/textwrap.cpython-34.pyc
-lib/python3.4/__pycache__/textwrap.cpython-34.pyo
-lib/python3.4/__pycache__/this.cpython-34.pyc
-lib/python3.4/__pycache__/this.cpython-34.pyo
-lib/python3.4/__pycache__/threading.cpython-34.pyc
-lib/python3.4/__pycache__/threading.cpython-34.pyo
-lib/python3.4/__pycache__/timeit.cpython-34.pyc
-lib/python3.4/__pycache__/timeit.cpython-34.pyo
-lib/python3.4/__pycache__/token.cpython-34.pyc
-lib/python3.4/__pycache__/token.cpython-34.pyo
-lib/python3.4/__pycache__/tokenize.cpython-34.pyc
-lib/python3.4/__pycache__/tokenize.cpython-34.pyo
-lib/python3.4/__pycache__/trace.cpython-34.pyc
-lib/python3.4/__pycache__/trace.cpython-34.pyo
-lib/python3.4/__pycache__/traceback.cpython-34.pyc
-lib/python3.4/__pycache__/traceback.cpython-34.pyo
-lib/python3.4/__pycache__/tracemalloc.cpython-34.pyc
-lib/python3.4/__pycache__/tracemalloc.cpython-34.pyo
-lib/python3.4/__pycache__/tty.cpython-34.pyc
-lib/python3.4/__pycache__/tty.cpython-34.pyo
-lib/python3.4/__pycache__/turtle.cpython-34.pyc
-lib/python3.4/__pycache__/turtle.cpython-34.pyo
-lib/python3.4/__pycache__/types.cpython-34.pyc
-lib/python3.4/__pycache__/types.cpython-34.pyo
-lib/python3.4/__pycache__/uu.cpython-34.pyc
-lib/python3.4/__pycache__/uu.cpython-34.pyo
-lib/python3.4/__pycache__/uuid.cpython-34.pyc
-lib/python3.4/__pycache__/uuid.cpython-34.pyo
-lib/python3.4/__pycache__/warnings.cpython-34.pyc
-lib/python3.4/__pycache__/warnings.cpython-34.pyo
-lib/python3.4/__pycache__/wave.cpython-34.pyc
-lib/python3.4/__pycache__/wave.cpython-34.pyo
-lib/python3.4/__pycache__/weakref.cpython-34.pyc
-lib/python3.4/__pycache__/weakref.cpython-34.pyo
-lib/python3.4/__pycache__/webbrowser.cpython-34.pyc
-lib/python3.4/__pycache__/webbrowser.cpython-34.pyo
-lib/python3.4/__pycache__/xdrlib.cpython-34.pyc
-lib/python3.4/__pycache__/xdrlib.cpython-34.pyo
-lib/python3.4/__pycache__/zipfile.cpython-34.pyc
-lib/python3.4/__pycache__/zipfile.cpython-34.pyo
-lib/python3.4/_bootlocale.py
-lib/python3.4/_collections_abc.py
-lib/python3.4/_compat_pickle.py
-lib/python3.4/_dummy_thread.py
-lib/python3.4/_markupbase.py
-lib/python3.4/_osx_support.py
-lib/python3.4/_pyio.py
-lib/python3.4/_sitebuiltins.py
-lib/python3.4/_strptime.py
-lib/python3.4/_sysconfigdata.py
-lib/python3.4/_threading_local.py
-lib/python3.4/_weakrefset.py
-lib/python3.4/abc.py
-lib/python3.4/aifc.py
-lib/python3.4/antigravity.py
-lib/python3.4/argparse.py
-lib/python3.4/ast.py
-lib/python3.4/asynchat.py
-lib/python3.4/asyncio/__init__.py
-lib/python3.4/asyncio/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/base_events.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/base_events.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/base_subprocess.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/base_subprocess.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/compat.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/compat.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
-lib/python3.4/asyncio/__pycache__/futures.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/locks.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/locks.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/log.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/log.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/proactor_events.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/proactor_events.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/protocols.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/protocols.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/queues.cpython-34.pyc
-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
-lib/python3.4/asyncio/__pycache__/subprocess.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/tasks.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/tasks.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/test_utils.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/test_utils.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/transports.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/transports.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/unix_events.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/unix_events.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/windows_events.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/windows_events.cpython-34.pyo
-lib/python3.4/asyncio/__pycache__/windows_utils.cpython-34.pyc
-lib/python3.4/asyncio/__pycache__/windows_utils.cpython-34.pyo
-lib/python3.4/asyncio/base_events.py
-lib/python3.4/asyncio/base_subprocess.py
-lib/python3.4/asyncio/compat.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
-lib/python3.4/asyncio/log.py
-lib/python3.4/asyncio/proactor_events.py
-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
-lib/python3.4/asyncio/test_utils.py
-lib/python3.4/asyncio/transports.py
-lib/python3.4/asyncio/unix_events.py
-lib/python3.4/asyncio/windows_events.py
-lib/python3.4/asyncio/windows_utils.py
-lib/python3.4/asyncore.py
-lib/python3.4/base64.py
-lib/python3.4/bdb.py
-lib/python3.4/binhex.py
-lib/python3.4/bisect.py
-lib/python3.4/bz2.py
-lib/python3.4/cProfile.py
-lib/python3.4/calendar.py
-lib/python3.4/cgi.py
-lib/python3.4/cgitb.py
-lib/python3.4/chunk.py
-lib/python3.4/cmd.py
-lib/python3.4/code.py
-lib/python3.4/codecs.py
-lib/python3.4/codeop.py
-lib/python3.4/collections/__init__.py
-lib/python3.4/collections/__main__.py
-lib/python3.4/collections/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/collections/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/collections/__pycache__/__main__.cpython-34.pyc
-lib/python3.4/collections/__pycache__/__main__.cpython-34.pyo
-lib/python3.4/collections/__pycache__/abc.cpython-34.pyc
-lib/python3.4/collections/__pycache__/abc.cpython-34.pyo
-lib/python3.4/collections/abc.py
-lib/python3.4/colorsys.py
-lib/python3.4/compileall.py
-lib/python3.4/concurrent/__init__.py
-lib/python3.4/concurrent/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/concurrent/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/concurrent/futures/__init__.py
-lib/python3.4/concurrent/futures/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/concurrent/futures/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/concurrent/futures/__pycache__/_base.cpython-34.pyc
-lib/python3.4/concurrent/futures/__pycache__/_base.cpython-34.pyo
-lib/python3.4/concurrent/futures/__pycache__/process.cpython-34.pyc
-lib/python3.4/concurrent/futures/__pycache__/process.cpython-34.pyo
-lib/python3.4/concurrent/futures/__pycache__/thread.cpython-34.pyc
-lib/python3.4/concurrent/futures/__pycache__/thread.cpython-34.pyo
-lib/python3.4/concurrent/futures/_base.py
-lib/python3.4/concurrent/futures/process.py
-lib/python3.4/concurrent/futures/thread.py
-lib/python3.4/config-3.4%%ABI%%/Makefile
-lib/python3.4/config-3.4%%ABI%%/Setup
-lib/python3.4/config-3.4%%ABI%%/Setup.config
-lib/python3.4/config-3.4%%ABI%%/Setup.local
-lib/python3.4/config-3.4%%ABI%%/config.c
-lib/python3.4/config-3.4%%ABI%%/config.c.in
-lib/python3.4/config-3.4%%ABI%%/install-sh
-lib/python3.4/config-3.4%%ABI%%/libpython3.4%%ABI%%.a
-lib/python3.4/config-3.4%%ABI%%/makesetup
-lib/python3.4/config-3.4%%ABI%%/python-config.py
-lib/python3.4/config-3.4%%ABI%%/python.o
-lib/python3.4/configparser.py
-lib/python3.4/contextlib.py
-lib/python3.4/copy.py
-lib/python3.4/copyreg.py
-lib/python3.4/crypt.py
-lib/python3.4/csv.py
-lib/python3.4/ctypes/__init__.py
-lib/python3.4/ctypes/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/ctypes/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/ctypes/__pycache__/_endian.cpython-34.pyc
-lib/python3.4/ctypes/__pycache__/_endian.cpython-34.pyo
-lib/python3.4/ctypes/__pycache__/util.cpython-34.pyc
-lib/python3.4/ctypes/__pycache__/util.cpython-34.pyo
-lib/python3.4/ctypes/__pycache__/wintypes.cpython-34.pyc
-lib/python3.4/ctypes/__pycache__/wintypes.cpython-34.pyo
-lib/python3.4/ctypes/_endian.py
-lib/python3.4/ctypes/macholib/README.ctypes
-lib/python3.4/ctypes/macholib/__init__.py
-lib/python3.4/ctypes/macholib/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/ctypes/macholib/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/ctypes/macholib/__pycache__/dyld.cpython-34.pyc
-lib/python3.4/ctypes/macholib/__pycache__/dyld.cpython-34.pyo
-lib/python3.4/ctypes/macholib/__pycache__/dylib.cpython-34.pyc
-lib/python3.4/ctypes/macholib/__pycache__/dylib.cpython-34.pyo
-lib/python3.4/ctypes/macholib/__pycache__/framework.cpython-34.pyc
-lib/python3.4/ctypes/macholib/__pycache__/framework.cpython-34.pyo
-lib/python3.4/ctypes/macholib/dyld.py
-lib/python3.4/ctypes/macholib/dylib.py
-lib/python3.4/ctypes/macholib/fetch_macholib
-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__/__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
-lib/python3.4/ctypes/test/__pycache__/test_array_in_pointer.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_arrays.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_arrays.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_as_parameter.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_as_parameter.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_bitfields.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_bitfields.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_buffers.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_buffers.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_bytes.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_bytes.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_byteswap.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_byteswap.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_callbacks.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_callbacks.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_cast.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_cast.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_cfuncs.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_cfuncs.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_checkretval.cpython-34.pyc
-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_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
-lib/python3.4/ctypes/test/__pycache__/test_find.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_frombuffer.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_frombuffer.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_funcptr.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_funcptr.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_functions.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_functions.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_incomplete.cpython-34.pyc
-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_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
-lib/python3.4/ctypes/test/__pycache__/test_keeprefs.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_libc.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_libc.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_loading.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_loading.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_macholib.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_macholib.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_memfunctions.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_memfunctions.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_numbers.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_numbers.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_objects.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_objects.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_parameters.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_parameters.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_pep3118.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_pep3118.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_pickling.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_pickling.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_pointers.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_pointers.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_prototypes.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_prototypes.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_python_api.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_python_api.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_random_things.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_random_things.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_refcounts.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_refcounts.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_repr.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_repr.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_returnfuncptrs.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_returnfuncptrs.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_simplesubclasses.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_simplesubclasses.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_sizes.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_sizes.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_slicing.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_slicing.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_stringptr.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_stringptr.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_strings.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_strings.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_struct_fields.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_struct_fields.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_structures.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_structures.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_unaligned_structures.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_unaligned_structures.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_unicode.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_unicode.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_values.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_values.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_varsize_struct.cpython-34.pyc
-lib/python3.4/ctypes/test/__pycache__/test_varsize_struct.cpython-34.pyo
-lib/python3.4/ctypes/test/__pycache__/test_win32.cpython-34.pyc
-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/test_anon.py
-lib/python3.4/ctypes/test/test_array_in_pointer.py
-lib/python3.4/ctypes/test/test_arrays.py
-lib/python3.4/ctypes/test/test_as_parameter.py
-lib/python3.4/ctypes/test/test_bitfields.py
-lib/python3.4/ctypes/test/test_buffers.py
-lib/python3.4/ctypes/test/test_bytes.py
-lib/python3.4/ctypes/test/test_byteswap.py
-lib/python3.4/ctypes/test/test_callbacks.py
-lib/python3.4/ctypes/test/test_cast.py
-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_errno.py
-lib/python3.4/ctypes/test/test_find.py
-lib/python3.4/ctypes/test/test_frombuffer.py
-lib/python3.4/ctypes/test/test_funcptr.py
-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_internals.py
-lib/python3.4/ctypes/test/test_keeprefs.py
-lib/python3.4/ctypes/test/test_libc.py
-lib/python3.4/ctypes/test/test_loading.py
-lib/python3.4/ctypes/test/test_macholib.py
-lib/python3.4/ctypes/test/test_memfunctions.py
-lib/python3.4/ctypes/test/test_numbers.py
-lib/python3.4/ctypes/test/test_objects.py
-lib/python3.4/ctypes/test/test_parameters.py
-lib/python3.4/ctypes/test/test_pep3118.py
-lib/python3.4/ctypes/test/test_pickling.py
-lib/python3.4/ctypes/test/test_pointers.py
-lib/python3.4/ctypes/test/test_prototypes.py
-lib/python3.4/ctypes/test/test_python_api.py
-lib/python3.4/ctypes/test/test_random_things.py
-lib/python3.4/ctypes/test/test_refcounts.py
-lib/python3.4/ctypes/test/test_repr.py
-lib/python3.4/ctypes/test/test_returnfuncptrs.py
-lib/python3.4/ctypes/test/test_simplesubclasses.py
-lib/python3.4/ctypes/test/test_sizes.py
-lib/python3.4/ctypes/test/test_slicing.py
-lib/python3.4/ctypes/test/test_stringptr.py
-lib/python3.4/ctypes/test/test_strings.py
-lib/python3.4/ctypes/test/test_struct_fields.py
-lib/python3.4/ctypes/test/test_structures.py
-lib/python3.4/ctypes/test/test_unaligned_structures.py
-lib/python3.4/ctypes/test/test_unicode.py
-lib/python3.4/ctypes/test/test_values.py
-lib/python3.4/ctypes/test/test_varsize_struct.py
-lib/python3.4/ctypes/test/test_win32.py
-lib/python3.4/ctypes/test/test_wintypes.py
-lib/python3.4/ctypes/util.py
-lib/python3.4/ctypes/wintypes.py
-lib/python3.4/curses/__init__.py
-lib/python3.4/curses/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/curses/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/curses/__pycache__/ascii.cpython-34.pyc
-lib/python3.4/curses/__pycache__/ascii.cpython-34.pyo
-lib/python3.4/curses/__pycache__/has_key.cpython-34.pyc
-lib/python3.4/curses/__pycache__/has_key.cpython-34.pyo
-lib/python3.4/curses/__pycache__/panel.cpython-34.pyc
-lib/python3.4/curses/__pycache__/panel.cpython-34.pyo
-lib/python3.4/curses/__pycache__/textpad.cpython-34.pyc
-lib/python3.4/curses/__pycache__/textpad.cpython-34.pyo
-lib/python3.4/curses/ascii.py
-lib/python3.4/curses/has_key.py
-lib/python3.4/curses/panel.py
-lib/python3.4/curses/textpad.py
-lib/python3.4/datetime.py
-lib/python3.4/dbm/__init__.py
-lib/python3.4/dbm/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/dbm/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/dbm/__pycache__/dumb.cpython-34.pyc
-lib/python3.4/dbm/__pycache__/dumb.cpython-34.pyo
-lib/python3.4/dbm/__pycache__/gnu.cpython-34.pyc
-lib/python3.4/dbm/__pycache__/gnu.cpython-34.pyo
-lib/python3.4/dbm/__pycache__/ndbm.cpython-34.pyc
-lib/python3.4/dbm/__pycache__/ndbm.cpython-34.pyo
-lib/python3.4/dbm/dumb.py
-lib/python3.4/dbm/gnu.py
-lib/python3.4/dbm/ndbm.py
-lib/python3.4/decimal.py
-lib/python3.4/difflib.py
-lib/python3.4/dis.py
-lib/python3.4/distutils/README
-lib/python3.4/distutils/__init__.py
-lib/python3.4/distutils/__pycache__/__init__.cpython-34.pyc
-lib/python3.4/distutils/__pycache__/__init__.cpython-34.pyo
-lib/python3.4/distutils/__pycache__/archive_util.cpython-34.pyc
-lib/python3.4/distutils/__pycache__/archive_util.cpython-34.pyo
-lib/python3.4/distutils/__pycache__/bcppcompiler.cpython-34.pyc
-lib/python3.4/distutils/__pycache__/bcppcompiler.cpython-34.pyo
-lib/python3.4/distutils/__pycache__/ccompiler.cpython-34.pyc
-lib/python3.4/distutils/__pycache__/ccompiler.cpython-34.pyo
-lib/python3.4/distutils/__pycache__/cmd.cpython-34.pyc

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802121541.w1CFf71k009000>