Last active
January 10, 2019 23:43
-
-
Save paleozogt/33468e62f999cfba29625c632fbd4a6c to your computer and use it in GitHub Desktop.
pyinstaller: distutils.command.bdist_egg not found in PYZ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# python setup | |
python3 -m virtualenv venv | |
./venv/bin/python --version | |
# Python 3.7.2 | |
# run script normally | |
./venv/bin/python bdister.py | |
# | |
# ...snip... | |
# creating 'dist/foobar-1.0-py3.7.egg' and adding 'build/bdist.macosx-10.14-x86_64/egg' to it | |
# ...snip... | |
# | |
# run script via pyinstaller | |
./venv/bin/pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip | |
./venv/bin/pyinstaller bdister.py --debug all | |
./dist/bdister/bdister | |
# | |
# ...snip... | |
# # distutils.command.bdist_egg not found in PYZ | |
# usage: bdister [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] | |
# or: bdister --help [cmd1 cmd2 ...] | |
# or: bdister --help-commands | |
# or: bdister cmd --help | |
# | |
# error: invalid command 'bdist_egg' | |
# ...snip... | |
# | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from setuptools import setup | |
# make hidden imports explicit | |
from setuptools.command import bdist_egg, easy_install | |
# get the script name | |
if len(sys.argv) > 1: | |
generated_name = sys.argv[1] | |
else: | |
generated_name = "foobar" | |
generated_pyfile = generated_name + ".py" | |
# generate the script | |
with open(generated_pyfile, 'w') as o: | |
o.write("print('hello world from %s')\n" % generated_name) | |
# package up the script | |
setup(name = generated_name, | |
version = '1.0', | |
description = generated_name, | |
py_modules = [generated_name], | |
script_args = ["bdist_egg"] | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ ./dist/bdister/bdister | |
[10817] PyInstaller Bootloader 3.x | |
[10817] LOADER: executable is /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/bdister | |
[10817] LOADER: homepath is /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister | |
[10817] LOADER: _MEIPASS2 is NULL | |
[10817] LOADER: archivename is /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/bdister | |
[10817] LOADER: No need to extract files to run; setting extractionpath to homepath | |
[10817] LOADER: Already in the child - running user's code. | |
[10817] LOADER: Python library: /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/.Python | |
[10817] LOADER: Loaded functions from Python library. | |
[10817] LOADER: Manipulating environment (sys.path, sys.prefix) | |
[10817] LOADER: sys.prefix is /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister | |
[10817] LOADER: Pre-init sys.path is /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip:/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister | |
[10817] LOADER: Setting runtime options | |
[10817] LOADER: Runtime option: v | |
[10817] LOADER: Initializing python | |
import _frozen_importlib # frozen | |
import _imp # builtin | |
import '_thread' # <class '_frozen_importlib.BuiltinImporter'> | |
import '_warnings' # <class '_frozen_importlib.BuiltinImporter'> | |
import '_weakref' # <class '_frozen_importlib.BuiltinImporter'> | |
# installing zipimport hook | |
import 'zipimport' # <class '_frozen_importlib.BuiltinImporter'> | |
# installed zipimport hook | |
import '_frozen_importlib_external' # <class '_frozen_importlib.FrozenImporter'> | |
import '_io' # <class '_frozen_importlib.BuiltinImporter'> | |
import 'marshal' # <class '_frozen_importlib.BuiltinImporter'> | |
import 'posix' # <class '_frozen_importlib.BuiltinImporter'> | |
import _thread # previously loaded ('_thread') | |
import '_thread' # <class '_frozen_importlib.BuiltinImporter'> | |
import _weakref # previously loaded ('_weakref') | |
import '_weakref' # <class '_frozen_importlib.BuiltinImporter'> | |
# zipimport: found 150 names in '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip' | |
import '_codecs' # <class '_frozen_importlib.BuiltinImporter'> | |
import codecs # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/codecs.pyc | |
import encodings.aliases # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/encodings/aliases.pyc | |
import encodings # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/encodings/__init__.pyc | |
import encodings.utf_8 # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/encodings/utf_8.pyc | |
import '_signal' # <class '_frozen_importlib.BuiltinImporter'> | |
import encodings.latin_1 # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/encodings/latin_1.pyc | |
import '_abc' # <class '_frozen_importlib.BuiltinImporter'> | |
import abc # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/abc.pyc | |
import io # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/io.pyc | |
[10817] LOADER: Overriding Python's sys.path | |
[10817] LOADER: Post-init sys.path is /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip:/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister | |
[10817] LOADER: Setting sys.argv | |
[10817] LOADER: setting sys._MEIPASS | |
[10817] LOADER: importing modules from CArchive | |
[10817] LOADER: extracted struct | |
[10817] LOADER: callfunction returned... | |
# extension module '_struct' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_struct.cpython-37m-darwin.so' | |
# extension module '_struct' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_struct.cpython-37m-darwin.so' | |
import '_struct' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1010aacf8> | |
[10817] LOADER: extracted pyimod01_os_path | |
[10817] LOADER: callfunction returned... | |
[10817] LOADER: extracted pyimod02_archive | |
[10817] LOADER: callfunction returned... | |
# extension module 'zlib' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/zlib.cpython-37m-darwin.so' | |
# extension module 'zlib' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/zlib.cpython-37m-darwin.so' | |
import 'zlib' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101137d30> | |
[10817] LOADER: extracted pyimod03_importers | |
[10817] LOADER: callfunction returned... | |
[10817] LOADER: Installing PYZ archive with Python modules. | |
[10817] LOADER: PYZ archive: PYZ-00.pyz | |
[10817] LOADER: Running pyiboot01_bootstrap.py | |
# PyInstaller: FrozenImporter(/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/bdister?60453) | |
# os not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/os.pyc' | |
# stat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/stat.pyc' | |
import '_stat' # <class '_frozen_importlib.BuiltinImporter'> | |
import 'stat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10115ec50> | |
# posixpath not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/posixpath.pyc' | |
# genericpath not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/genericpath.pyc' | |
import 'genericpath' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1011656d8> | |
import 'posixpath' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101161320> | |
# _collections_abc not found in PYZ | |
import _collections_abc # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/_collections_abc.pyc | |
import 'os' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101151898> | |
# ctypes not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ctypes/__init__.pyc' | |
# _ctypes not found in PYZ | |
# extension module '_ctypes' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_ctypes.cpython-37m-darwin.so' | |
# extension module '_ctypes' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_ctypes.cpython-37m-darwin.so' | |
import '_ctypes' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1011b0518> | |
# ctypes._endian not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ctypes/_endian.pyc' | |
import 'ctypes._endian' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1011c1a58> | |
import 'ctypes' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101151c18> | |
# ctypes.macholib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ctypes/macholib/__init__.pyc' | |
import 'ctypes.macholib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101191fd0> | |
# ctypes.macholib.dyld not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ctypes/macholib/dyld.pyc' | |
# ctypes.macholib.framework not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ctypes/macholib/framework.pyc' | |
# re not found in PYZ | |
# enum not found in PYZ | |
# types not found in PYZ | |
import types # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/types.pyc | |
import '_collections' # <class '_frozen_importlib.BuiltinImporter'> | |
import enum # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/enum.pyc | |
# sre_compile not found in PYZ | |
import '_sre' # <class '_frozen_importlib.BuiltinImporter'> | |
# sre_parse not found in PYZ | |
# sre_constants not found in PYZ | |
import sre_constants # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/sre_constants.pyc | |
import sre_parse # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/sre_parse.pyc | |
import sre_compile # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/sre_compile.pyc | |
# functools not found in PYZ | |
import '_functools' # <class '_frozen_importlib.BuiltinImporter'> | |
# collections not found in PYZ | |
# operator not found in PYZ | |
import '_operator' # <class '_frozen_importlib.BuiltinImporter'> | |
import operator # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/operator.pyc | |
# keyword not found in PYZ | |
import keyword # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/keyword.pyc | |
# heapq not found in PYZ | |
# _heapq not found in PYZ | |
# extension module '_heapq' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_heapq.cpython-37m-darwin.so' | |
# extension module '_heapq' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_heapq.cpython-37m-darwin.so' | |
import '_heapq' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101262e80> | |
import heapq # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/heapq.pyc | |
import 'itertools' # <class '_frozen_importlib.BuiltinImporter'> | |
# reprlib not found in PYZ | |
import reprlib # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/reprlib.pyc | |
import collections # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/collections/__init__.pyc | |
import functools # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/functools.pyc | |
import '_locale' # <class '_frozen_importlib.BuiltinImporter'> | |
# copyreg not found in PYZ | |
import copyreg # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/copyreg.pyc | |
import re # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/re.pyc | |
import 'ctypes.macholib.framework' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1011c1dd8> | |
# ctypes.macholib.dylib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ctypes/macholib/dylib.pyc' | |
import 'ctypes.macholib.dylib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1011c1f98> | |
import 'ctypes.macholib.dyld' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1011aa208> | |
[10817] LOADER: Running pyi_rth_pkgres.py | |
# pkg_resources not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/__init__.pyc' | |
# __future__ not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/__future__.pyc' | |
import '__future__' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1012b4c50> | |
import 'time' # <class '_frozen_importlib.BuiltinImporter'> | |
# zipfile not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/zipfile.pyc' | |
# importlib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/importlib/__init__.pyc' | |
# warnings not found in PYZ | |
import warnings # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/warnings.pyc | |
import 'importlib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1012d6160> | |
# importlib.util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/importlib/util.pyc' | |
# importlib.abc not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/importlib/abc.pyc' | |
# importlib.machinery not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/importlib/machinery.pyc' | |
import 'importlib.machinery' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10132ee80> | |
import 'importlib.abc' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10132e6a0> | |
# contextlib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/contextlib.pyc' | |
import 'contextlib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10132ed30> | |
import 'importlib.util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1012d69b0> | |
# shutil not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/shutil.pyc' | |
# fnmatch not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/fnmatch.pyc' | |
import 'fnmatch' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10135f1d0> | |
import 'errno' # <class '_frozen_importlib.BuiltinImporter'> | |
# bz2 not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/bz2.pyc' | |
# _compression not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_compression.pyc' | |
import '_compression' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101365dd8> | |
# threading not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/threading.pyc' | |
# traceback not found in PYZ | |
# linecache not found in PYZ | |
# tokenize not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/tokenize.pyc' | |
# token not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/token.pyc' | |
import 'token' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101396ac8> | |
import 'tokenize' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10138b390> | |
import linecache # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/linecache.pyc | |
import traceback # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/traceback.pyc | |
# _weakrefset not found in PYZ | |
import _weakrefset # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/_weakrefset.pyc | |
import 'threading' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10136c4e0> | |
# _bz2 not found in PYZ | |
# extension module '_bz2' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_bz2.cpython-37m-darwin.so' | |
# extension module '_bz2' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_bz2.cpython-37m-darwin.so' | |
import '_bz2' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1013a5940> | |
import 'bz2' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101365518> | |
# lzma not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/lzma.pyc' | |
# _lzma not found in PYZ | |
# extension module '_lzma' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_lzma.cpython-37m-darwin.so' | |
# extension module '_lzma' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_lzma.cpython-37m-darwin.so' | |
import '_lzma' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1013b3208> | |
import 'lzma' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10137a908> | |
import 'pwd' # <class '_frozen_importlib.BuiltinImporter'> | |
# grp not found in PYZ | |
# extension module 'grp' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/grp.cpython-37m-darwin.so' | |
# extension module 'grp' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/grp.cpython-37m-darwin.so' | |
import 'grp' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1013b3438> | |
import 'shutil' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101345908> | |
# binascii not found in PYZ | |
# extension module 'binascii' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/binascii.cpython-37m-darwin.so' | |
# extension module 'binascii' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/binascii.cpython-37m-darwin.so' | |
import 'binascii' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101345a58> | |
import 'zipfile' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1012bd6d8> | |
# pkgutil not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkgutil.pyc' | |
# weakref not found in PYZ | |
import weakref # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/weakref.pyc | |
import 'pkgutil' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1013b3be0> | |
# platform not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/platform.pyc' | |
# subprocess not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/subprocess.pyc' | |
# signal not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/signal.pyc' | |
import 'signal' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10142d748> | |
# _posixsubprocess not found in PYZ | |
# extension module '_posixsubprocess' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_posixsubprocess.cpython-37m-darwin.so' | |
# extension module '_posixsubprocess' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_posixsubprocess.cpython-37m-darwin.so' | |
import '_posixsubprocess' # <_frozen_importlib_external.ExtensionFileLoader object at 0x10142dcf8> | |
# select not found in PYZ | |
# extension module 'select' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/select.cpython-37m-darwin.so' | |
# extension module 'select' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/select.cpython-37m-darwin.so' | |
import 'select' # <_frozen_importlib_external.ExtensionFileLoader object at 0x10142de80> | |
# selectors not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/selectors.pyc' | |
# collections.abc not found in PYZ | |
import collections.abc # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/collections/abc.pyc | |
# math not found in PYZ | |
# extension module 'math' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/math.cpython-37m-darwin.so' | |
# extension module 'math' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/math.cpython-37m-darwin.so' | |
import 'math' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101440a58> | |
import 'selectors' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101439208> | |
import 'subprocess' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1013dfb70> | |
import 'platform' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1013d1d30> | |
# plistlib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/plistlib.pyc' | |
# datetime not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/datetime.pyc' | |
# _datetime not found in PYZ | |
# extension module '_datetime' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_datetime.cpython-37m-darwin.so' | |
# extension module '_datetime' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_datetime.cpython-37m-darwin.so' | |
import '_datetime' # <_frozen_importlib_external.ExtensionFileLoader object at 0x10148dfd0> | |
import 'datetime' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101452cf8> | |
# xml not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/xml/__init__.pyc' | |
import 'xml' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101452ef0> | |
# xml.parsers not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/xml/parsers/__init__.pyc' | |
import 'xml.parsers' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101459128> | |
# xml.parsers.expat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/xml/parsers/expat.pyc' | |
# pyexpat not found in PYZ | |
# extension module 'pyexpat' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pyexpat.cpython-37m-darwin.so' | |
# extension module 'pyexpat' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pyexpat.cpython-37m-darwin.so' | |
import 'pyexpat' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1014592e8> | |
import 'xml.parsers.expat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101459198> | |
import 'plistlib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1013eaeb8> | |
# email not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/__init__.pyc' | |
import 'email' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101459898> | |
# email.parser not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/parser.pyc' | |
# email.feedparser not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/feedparser.pyc' | |
# email.errors not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/errors.pyc' | |
import 'email.errors' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101487390> | |
# email._policybase not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/_policybase.pyc' | |
# email.header not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/header.pyc' | |
# email.quoprimime not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/quoprimime.pyc' | |
# string not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/string.pyc' | |
import '_string' # <class '_frozen_importlib.BuiltinImporter'> | |
import 'string' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10149acf8> | |
import 'email.quoprimime' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101459320> | |
# email.base64mime not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/base64mime.pyc' | |
# base64 not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base64.pyc' | |
import 'base64' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014b1cf8> | |
import 'email.base64mime' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014b1ac8> | |
# email.charset not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/charset.pyc' | |
# email.encoders not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/encoders.pyc' | |
# quopri not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/quopri.pyc' | |
import 'quopri' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014b7908> | |
import 'email.encoders' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014b74e0> | |
import 'email.charset' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014b3908> | |
import 'email.header' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10145fcf8> | |
# email.utils not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/utils.pyc' | |
# random not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/random.pyc' | |
# hashlib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/hashlib.pyc' | |
# _hashlib not found in PYZ | |
# extension module '_hashlib' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_hashlib.cpython-37m-darwin.so' | |
# extension module '_hashlib' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_hashlib.cpython-37m-darwin.so' | |
import '_hashlib' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101510048> | |
# _blake2 not found in PYZ | |
# extension module '_blake2' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_blake2.cpython-37m-darwin.so' | |
# extension module '_blake2' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_blake2.cpython-37m-darwin.so' | |
import '_blake2' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101510748> | |
# _sha3 not found in PYZ | |
# extension module '_sha3' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_sha3.cpython-37m-darwin.so' | |
# extension module '_sha3' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_sha3.cpython-37m-darwin.so' | |
import '_sha3' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101510860> | |
import 'hashlib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10150b5c0> | |
# bisect not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/bisect.pyc' | |
# _bisect not found in PYZ | |
# extension module '_bisect' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_bisect.cpython-37m-darwin.so' | |
# extension module '_bisect' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_bisect.cpython-37m-darwin.so' | |
import '_bisect' # <_frozen_importlib_external.ExtensionFileLoader object at 0x10150bf60> | |
import 'bisect' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10150ba58> | |
# _random not found in PYZ | |
# extension module '_random' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_random.cpython-37m-darwin.so' | |
# extension module '_random' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_random.cpython-37m-darwin.so' | |
import '_random' # <_frozen_importlib_external.ExtensionFileLoader object at 0x10150ba20> | |
import 'random' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014ffcc0> | |
# socket not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/socket.pyc' | |
# _socket not found in PYZ | |
# extension module '_socket' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_socket.cpython-37m-darwin.so' | |
# extension module '_socket' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_socket.cpython-37m-darwin.so' | |
import '_socket' # <_frozen_importlib_external.ExtensionFileLoader object at 0x10151cf98> | |
import 'socket' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10150bdd8> | |
# urllib not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/urllib/__init__.pyc' | |
import 'urllib' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10150beb8> | |
# urllib.parse not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/urllib/parse.pyc' | |
import 'urllib.parse' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10150bb38> | |
# email._parseaddr not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/_parseaddr.pyc' | |
# calendar not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/calendar.pyc' | |
# locale not found in PYZ | |
import locale # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/locale.pyc | |
import 'calendar' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1017b0278> | |
import 'email._parseaddr' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101535ba8> | |
import 'email.utils' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10148d898> | |
import 'email._policybase' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1014872e8> | |
import 'email.feedparser' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10149a518> | |
import 'email.parser' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101459ac8> | |
# tempfile not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/tempfile.pyc' | |
import 'tempfile' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10149a4e0> | |
# textwrap not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/textwrap.pyc' | |
import 'textwrap' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1017f55f8> | |
# inspect not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/inspect.pyc' | |
# dis not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/dis.pyc' | |
# opcode not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/opcode.pyc' | |
# _opcode not found in PYZ | |
# extension module '_opcode' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_opcode.cpython-37m-darwin.so' | |
# extension module '_opcode' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_opcode.cpython-37m-darwin.so' | |
import '_opcode' # <_frozen_importlib_external.ExtensionFileLoader object at 0x1018317b8> | |
import 'opcode' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101831080> | |
import 'dis' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10181ef28> | |
import 'inspect' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1017f5710> | |
# pkg_resources.extern not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/extern/__init__.pyc' | |
import 'pkg_resources.extern' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1018387f0> | |
# pkg_resources.extern.six not found in PYZ | |
# pkg_resources._vendor not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/__init__.pyc' | |
import 'pkg_resources._vendor' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101838390> | |
# pkg_resources._vendor.six not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/six.pyc' | |
import 'pkg_resources._vendor.six' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1018312b0> | |
# pkg_resources.extern.six.moves not found in PYZ | |
# pkg_resources._vendor.six not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/six.pyc' | |
import 'pkg_resources._vendor.six' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10184e208> | |
# pkg_resources._vendor.six.moves not found in PYZ | |
# pkg_resources._vendor.six.moves not found in PYZ | |
# pkg_resources._vendor.six.moves.urllib not found in PYZ | |
# pkg_resources.py31compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/py31compat.pyc' | |
import 'pkg_resources.py31compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10184e550> | |
# pkg_resources.extern.appdirs not found in PYZ | |
# pkg_resources._vendor.appdirs not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/appdirs.pyc' | |
import 'pkg_resources._vendor.appdirs' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10184e6a0> | |
# pkg_resources.extern.packaging not found in PYZ | |
# pkg_resources._vendor.packaging not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/__init__.pyc' | |
# pkg_resources._vendor.packaging.__about__ not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/__about__.pyc' | |
import 'pkg_resources._vendor.packaging.__about__' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101869d68> | |
import 'pkg_resources._vendor.packaging' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101855d68> | |
# pkg_resources.extern.packaging.version not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/version.pyc' | |
# pkg_resources.extern.packaging._structures not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/_structures.pyc' | |
import 'pkg_resources.extern.packaging._structures' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1018886d8> | |
import 'pkg_resources.extern.packaging.version' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10184e668> | |
# pkg_resources.extern.packaging.specifiers not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/specifiers.pyc' | |
# pkg_resources.extern.packaging._compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/_compat.pyc' | |
import 'pkg_resources.extern.packaging._compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10189db70> | |
import 'pkg_resources.extern.packaging.specifiers' # <_frozen_importlib_external.SourcelessFileLoader object at 0x10187b6a0> | |
# pkg_resources.extern.packaging.requirements not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/requirements.pyc' | |
# pkg_resources.extern.pyparsing not found in PYZ | |
# pkg_resources._vendor.pyparsing not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/pyparsing.pyc' | |
# copy not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/copy.pyc' | |
# org not found in PYZ | |
import 'copy' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1019c0048> | |
# pprint not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pprint.pyc' | |
import 'pprint' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1019c0470> | |
import 'pkg_resources._vendor.pyparsing' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1018a1908> | |
# pkg_resources.extern.six.moves.urllib not found in PYZ | |
# pkg_resources.extern.packaging.markers not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pkg_resources/_vendor/packaging/markers.pyc' | |
import 'pkg_resources.extern.packaging.markers' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101a9edd8> | |
import 'pkg_resources.extern.packaging.requirements' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101891320> | |
# sysconfig not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/sysconfig.pyc' | |
import 'sysconfig' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101ace7f0> | |
# _osx_support not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_osx_support.pyc' | |
import '_osx_support' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101ad8cf8> | |
# _sysconfigdata_m_darwin_darwin not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_sysconfigdata_m_darwin_darwin.pyc' | |
import '_sysconfigdata_m_darwin_darwin' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101ae27f0> | |
# _bootlocale not found in PYZ | |
import _bootlocale # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/_bootlocale.pyc | |
import 'pkg_resources' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1011c1198> | |
[10817] LOADER: Running pyi_rth_multiprocessing.py | |
# multiprocessing not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/__init__.pyc' | |
# multiprocessing.context not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/context.pyc' | |
# multiprocessing.process not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/process.pyc' | |
import 'multiprocessing.process' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b0aef0> | |
# multiprocessing.reduction not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/reduction.pyc' | |
# pickle not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/pickle.pyc' | |
# _compat_pickle not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_compat_pickle.pyc' | |
import '_compat_pickle' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b32b38> | |
# org not found in PYZ | |
# _pickle not found in PYZ | |
# extension module '_pickle' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_pickle.cpython-37m-darwin.so' | |
# extension module '_pickle' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_pickle.cpython-37m-darwin.so' | |
import '_pickle' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101b39390> | |
import 'pickle' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b1e7b8> | |
# array not found in PYZ | |
# extension module 'array' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/array.cpython-37m-darwin.so' | |
# extension module 'array' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/array.cpython-37m-darwin.so' | |
import 'array' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101b32860> | |
import 'multiprocessing.reduction' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b11a90> | |
import 'multiprocessing.context' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b01748> | |
import 'multiprocessing' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b013c8> | |
# multiprocessing.spawn not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/spawn.pyc' | |
# runpy not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/runpy.pyc' | |
import 'runpy' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1012b4a20> | |
# multiprocessing.util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/util.pyc' | |
import 'atexit' # <class '_frozen_importlib.BuiltinImporter'> | |
import 'multiprocessing.util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1018a1780> | |
import 'multiprocessing.spawn' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b014e0> | |
# multiprocessing.popen_fork not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/multiprocessing/popen_fork.pyc' | |
import 'multiprocessing.popen_fork' # <_frozen_importlib_external.SourcelessFileLoader object at 0x1012797f0> | |
[10817] LOADER: Running bdister.py | |
# setuptools not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/__init__.pyc' | |
# distutils not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/__init__.pyc' | |
import 'distutils' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b39940> | |
# distutils.core not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/core.pyc' | |
# distutils.debug not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/debug.pyc' | |
import 'distutils.debug' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b39ef0> | |
# distutils.errors not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/errors.pyc' | |
import 'distutils.errors' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b39f98> | |
# distutils.dist not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/dist.pyc' | |
# distutils.fancy_getopt not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/fancy_getopt.pyc' | |
# getopt not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/getopt.pyc' | |
# gettext not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/gettext.pyc' | |
import 'gettext' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b68160> | |
import 'getopt' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b5eba8> | |
import 'distutils.fancy_getopt' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b5e438> | |
# distutils.util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/util.pyc' | |
# distutils.dep_util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/dep_util.pyc' | |
import 'distutils.dep_util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b975f8> | |
# distutils.spawn not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/spawn.pyc' | |
# distutils.log not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/log.pyc' | |
import 'distutils.log' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b97d68> | |
# distutils.sysconfig not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/sysconfig.pyc' | |
import 'distutils.sysconfig' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b9e390> | |
import 'distutils.spawn' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b978d0> | |
import 'distutils.util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b5ea20> | |
import 'distutils.dist' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b4f080> | |
# distutils.cmd not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/cmd.pyc' | |
# distutils.dir_util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/dir_util.pyc' | |
import 'distutils.dir_util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bb2358> | |
# distutils.file_util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/file_util.pyc' | |
import 'distutils.file_util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bb2588> | |
# distutils.archive_util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/archive_util.pyc' | |
import 'distutils.archive_util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bb27f0> | |
import 'distutils.cmd' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b9eb38> | |
# distutils.config not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/config.pyc' | |
# configparser not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/configparser.pyc' | |
import 'configparser' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bb2fd0> | |
import 'distutils.config' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bb2d30> | |
# distutils.extension not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/extension.pyc' | |
import 'distutils.extension' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bbc128> | |
import 'distutils.core' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b39b38> | |
# distutils.filelist not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/filelist.pyc' | |
import 'distutils.filelist' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101bd3da0> | |
# setuptools._deprecation_warning not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_deprecation_warning.pyc' | |
import 'setuptools._deprecation_warning' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101be0588> | |
# setuptools.extern not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/extern/__init__.pyc' | |
import 'setuptools.extern' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101be06d8> | |
# setuptools.extern.six not found in PYZ | |
# setuptools._vendor not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/__init__.pyc' | |
import 'setuptools._vendor' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101be0a90> | |
# setuptools._vendor.six not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/six.pyc' | |
import 'setuptools._vendor.six' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101be0ba8> | |
# setuptools.extern.six.moves not found in PYZ | |
# setuptools._vendor.six not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/six.pyc' | |
import 'setuptools._vendor.six' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101be8438> | |
# setuptools._vendor.six.moves not found in PYZ | |
# setuptools.version not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/version.pyc' | |
# encodings.cp437 not found in PYZ | |
import encodings.cp437 # loaded from Zip /Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/base_library.zip/encodings/cp437.pyc | |
import 'setuptools.version' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101be86d8> | |
# setuptools.extension not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/extension.pyc' | |
# setuptools.monkey not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/monkey.pyc' | |
import 'setuptools.monkey' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c13160> | |
import 'setuptools.extension' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101aaf438> | |
# setuptools.dist not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/dist.pyc' | |
# numbers not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/numbers.pyc' | |
import 'numbers' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c13cc0> | |
# distutils.version not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/version.pyc' | |
import 'distutils.version' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c532e8> | |
# setuptools.extern.packaging not found in PYZ | |
# setuptools._vendor.packaging not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/__init__.pyc' | |
# setuptools._vendor.packaging.__about__ not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/__about__.pyc' | |
import 'setuptools._vendor.packaging.__about__' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c53be0> | |
import 'setuptools._vendor.packaging' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c539e8> | |
# setuptools.depends not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/depends.pyc' | |
# imp not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/imp.pyc' | |
import 'imp' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c53e10> | |
# setuptools.py33compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/py33compat.pyc' | |
# html not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/html/__init__.pyc' | |
# html.entities not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/html/entities.pyc' | |
import 'html.entities' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c60fd0> | |
import 'html' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c60b38> | |
# html.parser not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/html/parser.pyc' | |
# _markupbase not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_markupbase.pyc' | |
import '_markupbase' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cb08d0> | |
import 'html.parser' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101ca9b00> | |
import 'setuptools.py33compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c609b0> | |
import 'setuptools.depends' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c537b8> | |
# setuptools.windows_support not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/windows_support.pyc' | |
import 'setuptools.windows_support' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101c60470> | |
# setuptools.config not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/config.pyc' | |
# setuptools.extern.packaging.version not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/version.pyc' | |
# setuptools.extern.packaging._structures not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/_structures.pyc' | |
import 'setuptools.extern.packaging._structures' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cce1d0> | |
import 'setuptools.extern.packaging.version' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cbde48> | |
import 'setuptools.config' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101ca9c88> | |
# setuptools.py36compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/py36compat.pyc' | |
import 'setuptools.py36compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cce8d0> | |
# setuptools.extern.packaging.specifiers not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/specifiers.pyc' | |
# setuptools.extern.packaging._compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/_compat.pyc' | |
import 'setuptools.extern.packaging._compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cdb4e0> | |
import 'setuptools.extern.packaging.specifiers' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cce978> | |
import 'setuptools.dist' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101aafcc0> | |
# setuptools.msvc not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/msvc.pyc' | |
# distutils.msvc9compiler not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/msvc9compiler.pyc' | |
# distutils.ccompiler not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/ccompiler.pyc' | |
import 'distutils.ccompiler' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d05198> | |
# winreg not found in PYZ | |
# destroy distutils.msvc9compiler | |
import 'setuptools.msvc' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101ccef98> | |
import 'setuptools' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101b1e9b0> | |
# setuptools.command not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/__init__.pyc' | |
# distutils.command not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/command/__init__.pyc' | |
import 'distutils.command' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cff3c8> | |
# distutils.command.bdist not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/command/bdist.pyc' | |
import 'distutils.command.bdist' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cff780> | |
# setuptools.command.install_scripts not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/install_scripts.pyc' | |
# distutils.command.install_scripts not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/command/install_scripts.pyc' | |
import 'distutils.command.install_scripts' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cff8d0> | |
import 'setuptools.command.install_scripts' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cff5f8> | |
import 'setuptools.command' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cff048> | |
# setuptools.command.bdist_egg not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/bdist_egg.pyc' | |
import 'setuptools.command.bdist_egg' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101cff4e0> | |
# setuptools.command.easy_install not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/easy_install.pyc' | |
# glob not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/glob.pyc' | |
import 'glob' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d3dd68> | |
# distutils.command.install not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/command/install.pyc' | |
# site not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/site.pyc' | |
import 'site' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d43da0> | |
import 'distutils.command.install' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d43358> | |
# distutils.command.build_scripts not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/command/build_scripts.pyc' | |
import 'distutils.command.build_scripts' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d43e48> | |
# shlex not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/shlex.pyc' | |
import 'shlex' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d51160> | |
# setuptools.sandbox not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/sandbox.pyc' | |
import 'setuptools.sandbox' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d51550> | |
# setuptools.py27compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/py27compat.pyc' | |
import 'setuptools.py27compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d5c9b0> | |
# setuptools.command.setopt not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/setopt.pyc' | |
import 'setuptools.command.setopt' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d5cb00> | |
# setuptools.archive_util not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/archive_util.pyc' | |
# tarfile not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/tarfile.pyc' | |
import 'tarfile' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d681d0> | |
import 'setuptools.archive_util' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d5ce48> | |
# setuptools.package_index not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/package_index.pyc' | |
# setuptools._vendor.six.moves not found in PYZ | |
# setuptools._vendor.six.moves.urllib not found in PYZ | |
# http not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/http/__init__.pyc' | |
import 'http' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101da0e10> | |
# http.client not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/http/client.pyc' | |
# email.message not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/message.pyc' | |
# uu not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/uu.pyc' | |
import 'uu' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101dc9f28> | |
# email._encoded_words not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/_encoded_words.pyc' | |
import 'email._encoded_words' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101dd2160> | |
# email.iterators not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/email/iterators.pyc' | |
import 'email.iterators' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101dd2780> | |
import 'email.message' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101db7a90> | |
# ssl not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/ssl.pyc' | |
# _ssl not found in PYZ | |
# extension module '_ssl' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_ssl.cpython-37m-darwin.so' | |
# extension module '_ssl' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_ssl.cpython-37m-darwin.so' | |
import '_ssl' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101df3ef0> | |
import 'ssl' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101dd2a90> | |
import 'http.client' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101da7160> | |
# setuptools.ssl_support not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/ssl_support.pyc' | |
# urllib.request not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/urllib/request.pyc' | |
# urllib.error not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/urllib/error.pyc' | |
# urllib.response not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/urllib/response.pyc' | |
import 'urllib.response' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e5ef98> | |
import 'urllib.error' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e5e9b0> | |
# _scproxy not found in PYZ | |
# extension module '_scproxy' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_scproxy.cpython-37m-darwin.so' | |
# extension module '_scproxy' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/_scproxy.cpython-37m-darwin.so' | |
import '_scproxy' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101e66cf8> | |
import 'urllib.request' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e3a358> | |
import 'setuptools.ssl_support' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101db77b8> | |
# setuptools.wheel not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/wheel.pyc' | |
# setuptools.extern.packaging.utils not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/_vendor/packaging/utils.pyc' | |
import 'setuptools.extern.packaging.utils' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e66e10> | |
# setuptools.pep425tags not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/pep425tags.pyc' | |
# setuptools.glibc not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/glibc.pyc' | |
import 'setuptools.glibc' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e7c940> | |
import 'setuptools.pep425tags' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e66fd0> | |
# setuptools.command.egg_info not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/egg_info.pyc' | |
# setuptools.command.sdist not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/sdist.pyc' | |
# distutils.command.sdist not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/command/sdist.pyc' | |
# distutils.text_file not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/distutils/text_file.pyc' | |
import 'distutils.text_file' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e8ee80> | |
import 'distutils.command.sdist' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e8e320> | |
# setuptools.command.py36compat not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/command/py36compat.pyc' | |
import 'setuptools.command.py36compat' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e98198> | |
import 'setuptools.command.sdist' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e83c88> | |
# setuptools.unicode_utils not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/unicode_utils.pyc' | |
# unicodedata not found in PYZ | |
# extension module 'unicodedata' loaded from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/unicodedata.cpython-37m-darwin.so' | |
# extension module 'unicodedata' executed from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/unicodedata.cpython-37m-darwin.so' | |
import 'unicodedata' # <_frozen_importlib_external.ExtensionFileLoader object at 0x101e984e0> | |
import 'setuptools.unicode_utils' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e98240> | |
# setuptools.glob not found in PYZ | |
# code object from '/Users/asimmons/Development/test/pyinstaller-bdist/dist/bdister/setuptools/glob.pyc' | |
import 'setuptools.glob' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e985c0> | |
import 'setuptools.command.egg_info' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101e7c780> | |
import 'setuptools.wheel' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101db78d0> | |
import 'setuptools.package_index' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d68278> | |
import 'setuptools.command.easy_install' # <_frozen_importlib_external.SourcelessFileLoader object at 0x101d05048> | |
# distutils.command.bdist_egg not found in PYZ | |
usage: bdister [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] | |
or: bdister --help [cmd1 cmd2 ...] | |
or: bdister --help-commands | |
or: bdister cmd --help | |
error: invalid command 'bdist_egg' | |
# clear builtins._ | |
# clear sys.path | |
# clear sys.argv | |
# clear sys.ps1 | |
# clear sys.ps2 | |
# clear sys.last_type | |
# clear sys.last_value | |
# clear sys.last_traceback | |
# clear sys.path_hooks | |
# clear sys.path_importer_cache | |
# clear sys.meta_path | |
# clear sys.__interactivehook__ | |
# clear sys.flags | |
# clear sys.float_info | |
# restore sys.stdin | |
# restore sys.stdout | |
# restore sys.stderr | |
# cleanup[2] removing sys | |
# cleanup[2] removing builtins | |
# cleanup[2] removing _frozen_importlib | |
# cleanup[2] removing _imp | |
# cleanup[2] removing _thread | |
# cleanup[2] removing _warnings | |
# cleanup[2] removing _weakref | |
# cleanup[2] removing zipimport | |
# cleanup[2] removing _frozen_importlib_external | |
# cleanup[2] removing _io | |
# cleanup[2] removing marshal | |
# cleanup[2] removing posix | |
# cleanup[2] removing encodings | |
# cleanup[2] removing codecs | |
# cleanup[2] removing _codecs | |
# cleanup[2] removing encodings.aliases | |
# cleanup[2] removing encodings.utf_8 | |
# cleanup[2] removing _signal | |
# cleanup[2] removing __main__ | |
# cleanup[2] removing encodings.latin_1 | |
# cleanup[2] removing io | |
# cleanup[2] removing abc | |
# cleanup[2] removing _abc | |
# cleanup[2] removing struct | |
# cleanup[2] removing _struct | |
# cleanup[2] removing pyimod01_os_path | |
# cleanup[2] removing pyimod02_archive | |
# cleanup[2] removing zlib | |
# cleanup[2] removing pyimod03_importers | |
# cleanup[2] removing os | |
# cleanup[2] removing stat | |
# cleanup[2] removing _stat | |
# cleanup[2] removing posixpath | |
# cleanup[2] removing genericpath | |
# cleanup[2] removing os.path | |
# cleanup[2] removing _collections_abc | |
# cleanup[2] removing ctypes | |
# cleanup[2] removing _ctypes | |
# cleanup[2] removing ctypes._endian | |
# cleanup[2] removing ctypes.macholib | |
# cleanup[2] removing ctypes.macholib.dyld | |
# cleanup[2] removing ctypes.macholib.framework | |
# cleanup[2] removing re | |
# cleanup[2] removing enum | |
# cleanup[2] removing types | |
# cleanup[2] removing _collections | |
# cleanup[2] removing sre_compile | |
# cleanup[2] removing _sre | |
# cleanup[2] removing sre_parse | |
# cleanup[2] removing sre_constants | |
# cleanup[2] removing functools | |
# cleanup[2] removing _functools | |
# cleanup[2] removing collections | |
# cleanup[2] removing operator | |
# cleanup[2] removing _operator | |
# cleanup[2] removing keyword | |
# destroy keyword | |
# cleanup[2] removing heapq | |
# cleanup[2] removing _heapq | |
# cleanup[2] removing itertools | |
# cleanup[2] removing reprlib | |
# destroy reprlib | |
# cleanup[2] removing _locale | |
# cleanup[2] removing copyreg | |
# cleanup[2] removing ctypes.macholib.dylib | |
# cleanup[2] removing pkg_resources | |
# cleanup[2] removing __future__ | |
# destroy __future__ | |
# cleanup[2] removing time | |
# cleanup[2] removing zipfile | |
# cleanup[2] removing importlib | |
# cleanup[2] removing importlib._bootstrap | |
# cleanup[2] removing importlib._bootstrap_external | |
# cleanup[2] removing warnings | |
# cleanup[2] removing importlib.util | |
# cleanup[2] removing importlib.abc | |
# cleanup[2] removing importlib.machinery | |
# cleanup[2] removing contextlib | |
# cleanup[2] removing shutil | |
# cleanup[2] removing fnmatch | |
# cleanup[2] removing errno | |
# cleanup[2] removing bz2 | |
# cleanup[2] removing _compression | |
# cleanup[2] removing threading | |
# cleanup[2] removing traceback | |
# cleanup[2] removing linecache | |
# cleanup[2] removing tokenize | |
# cleanup[2] removing token | |
# cleanup[2] removing _weakrefset | |
# destroy _weakrefset | |
# cleanup[2] removing _bz2 | |
# cleanup[2] removing lzma | |
# cleanup[2] removing _lzma | |
# cleanup[2] removing pwd | |
# cleanup[2] removing grp | |
# cleanup[2] removing binascii | |
# cleanup[2] removing pkgutil | |
# cleanup[2] removing weakref | |
# cleanup[2] removing platform | |
# cleanup[2] removing subprocess | |
# cleanup[2] removing signal | |
# cleanup[2] removing _posixsubprocess | |
# cleanup[2] removing select | |
# cleanup[2] removing selectors | |
# cleanup[2] removing collections.abc | |
# cleanup[2] removing math | |
# cleanup[2] removing plistlib | |
# cleanup[2] removing datetime | |
# cleanup[2] removing _datetime | |
# cleanup[2] removing xml | |
# destroy xml | |
# cleanup[2] removing xml.parsers | |
# destroy xml.parsers | |
# cleanup[2] removing xml.parsers.expat | |
# destroy xml.parsers.expat | |
# cleanup[2] removing pyexpat.errors | |
# cleanup[2] removing pyexpat.model | |
# cleanup[2] removing pyexpat | |
# cleanup[2] removing xml.parsers.expat.model | |
# cleanup[2] removing xml.parsers.expat.errors | |
# cleanup[2] removing email | |
# cleanup[2] removing email.parser | |
# cleanup[2] removing email.feedparser | |
# cleanup[2] removing email.errors | |
# cleanup[2] removing email._policybase | |
# cleanup[2] removing email.header | |
# cleanup[2] removing email.quoprimime | |
# cleanup[2] removing string | |
# cleanup[2] removing _string | |
# cleanup[2] removing email.base64mime | |
# cleanup[2] removing base64 | |
# cleanup[2] removing email.charset | |
# cleanup[2] removing email.encoders | |
# cleanup[2] removing quopri | |
# cleanup[2] removing email.utils | |
# cleanup[2] removing random | |
# cleanup[2] removing hashlib | |
# cleanup[2] removing _hashlib | |
# cleanup[2] removing _blake2 | |
# cleanup[2] removing _sha3 | |
# cleanup[2] removing bisect | |
# cleanup[2] removing _bisect | |
# cleanup[2] removing _random | |
# cleanup[2] removing socket | |
# cleanup[2] removing _socket | |
# cleanup[2] removing urllib | |
# cleanup[2] removing urllib.parse | |
# cleanup[2] removing email._parseaddr | |
# cleanup[2] removing calendar | |
# cleanup[2] removing locale | |
# cleanup[2] removing tempfile | |
# cleanup[2] removing textwrap | |
# cleanup[2] removing inspect | |
# cleanup[2] removing dis | |
# cleanup[2] removing opcode | |
# destroy opcode | |
# cleanup[2] removing _opcode | |
# cleanup[2] removing pkg_resources.extern | |
# cleanup[2] removing pkg_resources._vendor | |
# cleanup[2] removing pkg_resources.extern.six | |
# cleanup[2] removing pkg_resources._vendor.six | |
# cleanup[2] removing pkg_resources.extern.six.moves | |
# cleanup[2] removing pkg_resources._vendor.six.moves | |
# cleanup[2] removing pkg_resources.py31compat | |
# cleanup[2] removing pkg_resources.extern.appdirs | |
# cleanup[2] removing pkg_resources._vendor.packaging.__about__ | |
# cleanup[2] removing pkg_resources.extern.packaging | |
# cleanup[2] removing pkg_resources.extern.packaging.version | |
# cleanup[2] removing pkg_resources.extern.packaging._structures | |
# cleanup[2] removing pkg_resources.extern.packaging.specifiers | |
# cleanup[2] removing pkg_resources.extern.packaging._compat | |
# cleanup[2] removing pkg_resources.extern.packaging.requirements | |
# cleanup[2] removing copy | |
# cleanup[2] removing pprint | |
# cleanup[2] removing pkg_resources.extern.pyparsing | |
# cleanup[2] removing pkg_resources.extern.six.moves.urllib | |
# cleanup[2] removing pkg_resources.extern.packaging.markers | |
# cleanup[2] removing sysconfig | |
# cleanup[2] removing _osx_support | |
# destroy _osx_support | |
# cleanup[2] removing _sysconfigdata_m_darwin_darwin | |
# destroy _sysconfigdata_m_darwin_darwin | |
# cleanup[2] removing _bootlocale | |
# destroy _bootlocale | |
# cleanup[2] removing multiprocessing | |
# cleanup[2] removing multiprocessing.context | |
# cleanup[2] removing multiprocessing.process | |
# cleanup[2] removing multiprocessing.reduction | |
# cleanup[2] removing pickle | |
# cleanup[2] removing _compat_pickle | |
# cleanup[2] removing _pickle | |
# cleanup[2] removing array | |
# cleanup[2] removing __mp_main__ | |
# destroy __main__ | |
# cleanup[2] removing multiprocessing.spawn | |
# cleanup[2] removing runpy | |
# cleanup[2] removing multiprocessing.util | |
# cleanup[2] removing atexit | |
# cleanup[2] removing multiprocessing.popen_fork | |
# cleanup[2] removing setuptools | |
# cleanup[2] removing distutils | |
# cleanup[2] removing distutils.core | |
# cleanup[2] removing distutils.debug | |
# cleanup[2] removing distutils.errors | |
# cleanup[2] removing distutils.dist | |
# cleanup[2] removing distutils.fancy_getopt | |
# cleanup[2] removing getopt | |
# cleanup[2] removing gettext | |
# destroy gettext | |
# cleanup[2] removing distutils.util | |
# cleanup[2] removing distutils.dep_util | |
# cleanup[2] removing distutils.spawn | |
# cleanup[2] removing distutils.log | |
# cleanup[2] removing distutils.sysconfig | |
# cleanup[2] removing distutils.cmd | |
# cleanup[2] removing distutils.dir_util | |
# cleanup[2] removing distutils.file_util | |
# cleanup[2] removing distutils.archive_util | |
# cleanup[2] removing distutils.config | |
# cleanup[2] removing configparser | |
# cleanup[2] removing distutils.extension | |
# cleanup[2] removing distutils.filelist | |
# cleanup[2] removing setuptools._deprecation_warning | |
# cleanup[2] removing setuptools.extern | |
# cleanup[2] removing setuptools._vendor | |
# cleanup[2] removing setuptools.extern.six | |
# cleanup[2] removing setuptools._vendor.six | |
# cleanup[2] removing setuptools.extern.six.moves | |
# cleanup[2] removing setuptools.version | |
# cleanup[2] removing encodings.cp437 | |
# cleanup[2] removing setuptools.extension | |
# cleanup[2] removing setuptools.monkey | |
# cleanup[2] removing setuptools.dist | |
# cleanup[2] removing numbers | |
# cleanup[2] removing distutils.version | |
# cleanup[2] removing setuptools._vendor.packaging.__about__ | |
# cleanup[2] removing setuptools.extern.packaging | |
# cleanup[2] removing setuptools.depends | |
# cleanup[2] removing imp | |
# cleanup[2] removing setuptools.py33compat | |
# cleanup[2] removing html | |
# cleanup[2] removing html.entities | |
# cleanup[2] removing html.parser | |
# cleanup[2] removing _markupbase | |
# cleanup[2] removing setuptools.windows_support | |
# cleanup[2] removing setuptools.config | |
# cleanup[2] removing setuptools.extern.packaging.version | |
# cleanup[2] removing setuptools.extern.packaging._structures | |
# cleanup[2] removing setuptools.py36compat | |
# cleanup[2] removing setuptools.extern.packaging.specifiers | |
# cleanup[2] removing setuptools.extern.packaging._compat | |
# cleanup[2] removing setuptools.msvc | |
# cleanup[2] removing distutils.ccompiler | |
# cleanup[2] removing setuptools.command | |
# cleanup[2] removing distutils.command | |
# cleanup[2] removing distutils.command.bdist | |
# cleanup[2] removing setuptools.command.install_scripts | |
# cleanup[2] removing distutils.command.install_scripts | |
# cleanup[2] removing setuptools.command.bdist_egg | |
# cleanup[2] removing setuptools.command.easy_install | |
# cleanup[2] removing glob | |
# destroy glob | |
# cleanup[2] removing distutils.command.install | |
# cleanup[2] removing site | |
# cleanup[2] removing distutils.command.build_scripts | |
# cleanup[2] removing shlex | |
# cleanup[2] removing setuptools.sandbox | |
# cleanup[2] removing setuptools.py27compat | |
# cleanup[2] removing setuptools.command.setopt | |
# cleanup[2] removing setuptools.archive_util | |
# cleanup[2] removing tarfile | |
# cleanup[2] removing setuptools.package_index | |
# cleanup[2] removing setuptools._vendor.six.moves | |
# cleanup[2] removing setuptools._vendor.six.moves.urllib | |
# cleanup[2] removing http | |
# cleanup[2] removing http.client | |
# cleanup[2] removing email.message | |
# cleanup[2] removing uu | |
# cleanup[2] removing email._encoded_words | |
# cleanup[2] removing email.iterators | |
# cleanup[2] removing ssl | |
# cleanup[2] removing _ssl | |
# cleanup[2] removing setuptools.ssl_support | |
# cleanup[2] removing urllib.request | |
# cleanup[2] removing urllib.error | |
# cleanup[2] removing urllib.response | |
# cleanup[2] removing _scproxy | |
# cleanup[2] removing setuptools.wheel | |
# cleanup[2] removing setuptools.extern.packaging.utils | |
# cleanup[2] removing setuptools.pep425tags | |
# cleanup[2] removing setuptools.glibc | |
# cleanup[2] removing setuptools.command.egg_info | |
# cleanup[2] removing setuptools.command.sdist | |
# cleanup[2] removing distutils.command.sdist | |
# cleanup[2] removing distutils.text_file | |
# cleanup[2] removing setuptools.command.py36compat | |
# cleanup[2] removing setuptools.unicode_utils | |
# cleanup[2] removing unicodedata | |
# cleanup[2] removing setuptools.glob | |
# destroy _sha3 | |
# destroy _blake2 | |
# destroy _datetime | |
# destroy _bz2 | |
# cleanup[3] wiping _frozen_importlib | |
# cleanup[3] wiping _imp | |
# cleanup[3] wiping _thread | |
# cleanup[3] wiping _warnings | |
# cleanup[3] wiping _weakref | |
# cleanup[3] wiping zipimport | |
# cleanup[3] wiping _frozen_importlib_external | |
# cleanup[3] wiping _io | |
# cleanup[3] wiping marshal | |
# cleanup[3] wiping posix | |
# cleanup[3] wiping encodings | |
# destroy encodings.aliases | |
# destroy encodings.utf_8 | |
# destroy encodings.latin_1 | |
# destroy encodings.cp437 | |
# cleanup[3] wiping codecs | |
# cleanup[3] wiping _codecs | |
# cleanup[3] wiping _signal | |
# cleanup[3] wiping io | |
# cleanup[3] wiping abc | |
# cleanup[3] wiping _abc | |
# cleanup[3] wiping struct | |
# cleanup[3] wiping _struct | |
# cleanup[3] wiping pyimod01_os_path | |
# cleanup[3] wiping pyimod02_archive | |
# cleanup[3] wiping zlib | |
# cleanup[3] wiping pyimod03_importers | |
# cleanup[3] wiping os | |
# cleanup[3] wiping stat | |
# cleanup[3] wiping _stat | |
# destroy _stat | |
# cleanup[3] wiping posixpath | |
# destroy genericpath | |
# cleanup[3] wiping os.path | |
# cleanup[3] wiping _collections_abc | |
# cleanup[3] wiping ctypes | |
# destroy ctypes._endian | |
# destroy ctypes.macholib | |
# destroy ctypes.macholib.framework | |
# destroy ctypes.macholib.dylib | |
# cleanup[3] wiping _ctypes | |
# cleanup[3] wiping ctypes.macholib.dyld | |
# cleanup[3] wiping re | |
# destroy sre_compile | |
# cleanup[3] wiping enum | |
# cleanup[3] wiping types | |
# cleanup[3] wiping _collections | |
# cleanup[3] wiping _sre | |
# cleanup[3] wiping sre_parse | |
# cleanup[3] wiping sre_constants | |
# cleanup[3] wiping functools | |
# destroy _abc | |
# cleanup[3] wiping _functools | |
# destroy _functools | |
# cleanup[3] wiping collections | |
# destroy heapq | |
# destroy _collections | |
# destroy collections.abc | |
# cleanup[3] wiping operator | |
# cleanup[3] wiping _operator | |
# cleanup[3] wiping _heapq | |
# cleanup[3] wiping itertools | |
# cleanup[3] wiping _locale | |
# cleanup[3] wiping copyreg | |
# cleanup[3] wiping pkg_resources | |
# destroy pkg_resources._vendor | |
# destroy pkg_resources._vendor.six | |
# destroy pkgutil | |
# destroy plistlib | |
# destroy pkg_resources.extern | |
# destroy pkg_resources.py31compat | |
# cleanup[3] wiping time | |
# cleanup[3] wiping zipfile | |
# destroy zlib | |
# destroy bz2 | |
# destroy lzma | |
# cleanup[3] wiping importlib | |
# cleanup[3] wiping importlib._bootstrap | |
# cleanup[3] wiping importlib._bootstrap_external | |
# cleanup[3] wiping warnings | |
# cleanup[3] wiping importlib.util | |
# destroy importlib.abc | |
# cleanup[3] wiping importlib.machinery | |
# cleanup[3] wiping contextlib | |
# cleanup[3] wiping shutil | |
# cleanup[3] wiping fnmatch | |
# cleanup[3] wiping errno | |
# cleanup[3] wiping _compression | |
# cleanup[3] wiping threading | |
# cleanup[3] wiping traceback | |
# cleanup[3] wiping linecache | |
# cleanup[3] wiping tokenize | |
# cleanup[3] wiping token | |
# cleanup[3] wiping _lzma | |
# cleanup[3] wiping pwd | |
# cleanup[3] wiping grp | |
# cleanup[3] wiping binascii | |
# cleanup[3] wiping weakref | |
# cleanup[3] wiping platform | |
# cleanup[3] wiping subprocess | |
# cleanup[3] wiping signal | |
# destroy _signal | |
# cleanup[3] wiping _posixsubprocess | |
# destroy _posixsubprocess | |
# cleanup[3] wiping select | |
# cleanup[3] wiping selectors | |
# cleanup[3] wiping math | |
# cleanup[3] wiping datetime | |
# cleanup[3] wiping pyexpat.errors | |
# cleanup[3] wiping pyexpat.model | |
# cleanup[3] wiping pyexpat | |
# destroy pyexpat.errors | |
# destroy pyexpat.model | |
# cleanup[3] wiping email | |
# destroy email._parseaddr | |
# destroy email._policybase | |
# destroy email._encoded_words | |
# destroy email.quoprimime | |
# destroy email.base64mime | |
# destroy email.encoders | |
# destroy email.feedparser | |
# destroy email.parser | |
# destroy email.iterators | |
# destroy email.message | |
# cleanup[3] wiping email.errors | |
# cleanup[3] wiping email.header | |
# cleanup[3] wiping string | |
# cleanup[3] wiping _string | |
# destroy _string | |
# cleanup[3] wiping base64 | |
# cleanup[3] wiping email.charset | |
# cleanup[3] wiping quopri | |
# cleanup[3] wiping email.utils | |
# cleanup[3] wiping random | |
# destroy math | |
# destroy _random | |
# cleanup[3] wiping hashlib | |
# cleanup[3] wiping _hashlib | |
# destroy _hashlib | |
# cleanup[3] wiping bisect | |
# cleanup[3] wiping _bisect | |
# destroy _bisect | |
# cleanup[3] wiping socket | |
# destroy selectors | |
# cleanup[3] wiping _socket | |
# destroy _socket | |
# cleanup[3] wiping urllib | |
# destroy urllib.parse | |
# destroy urllib.response | |
# destroy urllib.error | |
# destroy urllib.request | |
# cleanup[3] wiping calendar | |
# cleanup[3] wiping locale | |
# destroy _collections_abc | |
# destroy _locale | |
# cleanup[3] wiping tempfile | |
# cleanup[3] wiping textwrap | |
# cleanup[3] wiping inspect | |
# destroy linecache | |
# destroy token | |
# cleanup[3] wiping dis | |
# cleanup[3] wiping _opcode | |
# destroy _opcode | |
# cleanup[3] wiping pkg_resources.extern.six | |
# destroy pkg_resources._vendor.six.moves.urllib | |
# destroy pkg_resources._vendor.six.moves | |
# cleanup[3] wiping pkg_resources.extern.six.moves | |
# cleanup[3] wiping pkg_resources._vendor.six.moves | |
# cleanup[3] wiping pkg_resources.extern.appdirs | |
# cleanup[3] wiping pkg_resources._vendor.packaging.__about__ | |
# cleanup[3] wiping pkg_resources.extern.packaging | |
# destroy pkg_resources.extern.packaging._structures | |
# destroy pkg_resources.extern.packaging._compat | |
# destroy pkg_resources._vendor.packaging.__about__ | |
# destroy pkg_resources.extern.packaging.version | |
# destroy pkg_resources.extern.packaging.specifiers | |
# destroy pkg_resources.extern.packaging.markers | |
# destroy pkg_resources.extern.packaging.requirements | |
# cleanup[3] wiping copy | |
# cleanup[3] wiping pprint | |
# cleanup[3] wiping pkg_resources.extern.pyparsing | |
# destroy sre_constants | |
# destroy pprint | |
# destroy traceback | |
# cleanup[3] wiping pkg_resources.extern.six.moves.urllib | |
# cleanup[3] wiping sysconfig | |
# cleanup[3] wiping multiprocessing | |
# cleanup[3] wiping multiprocessing.context | |
# cleanup[3] wiping multiprocessing.process | |
# cleanup[3] wiping multiprocessing.reduction | |
# destroy copyreg | |
# destroy multiprocessing.context | |
# cleanup[3] wiping pickle | |
# destroy _compat_pickle | |
# destroy _struct | |
# cleanup[3] wiping _pickle | |
# cleanup[3] wiping array | |
# cleanup[3] wiping multiprocessing.spawn | |
# destroy runpy | |
# destroy multiprocessing.reduction | |
# cleanup[3] wiping multiprocessing.util | |
# destroy _weakref | |
# destroy weakref | |
# destroy threading | |
# destroy multiprocessing.process | |
# cleanup[3] wiping atexit | |
# cleanup[3] wiping multiprocessing.popen_fork | |
# destroy signal | |
# destroy multiprocessing.util | |
# cleanup[3] wiping setuptools | |
# destroy setuptools._deprecation_warning | |
# destroy setuptools._vendor | |
# destroy setuptools._vendor.six | |
# destroy setuptools.extern | |
# destroy setuptools.version | |
# destroy setuptools.monkey | |
# destroy setuptools.extension | |
# destroy setuptools.py33compat | |
# destroy setuptools.depends | |
# destroy setuptools.config | |
# destroy setuptools.py36compat | |
# destroy setuptools.dist | |
# destroy setuptools.msvc | |
# destroy setuptools.command | |
# destroy setuptools.command.install_scripts | |
# destroy setuptools.command.py36compat | |
# destroy setuptools.command.sdist | |
# destroy setuptools.sandbox | |
# destroy setuptools.py27compat | |
# destroy setuptools.archive_util | |
# destroy setuptools.glob | |
# destroy setuptools.wheel | |
# destroy setuptools.package_index | |
# cleanup[3] wiping distutils | |
# destroy distutils.debug | |
# destroy distutils.errors | |
# destroy distutils.fancy_getopt | |
# destroy distutils.spawn | |
# destroy distutils.dist | |
# destroy distutils.cmd | |
# destroy distutils.config | |
# destroy distutils.extension | |
# destroy distutils.core | |
# destroy distutils.filelist | |
# destroy distutils.version | |
# destroy distutils.ccompiler | |
# destroy distutils.command | |
# destroy distutils.command.bdist | |
# destroy distutils.command.install | |
# destroy distutils.command.build_scripts | |
# destroy distutils.text_file | |
# cleanup[3] wiping getopt | |
# cleanup[3] wiping distutils.util | |
# cleanup[3] wiping distutils.dep_util | |
# cleanup[3] wiping distutils.log | |
# cleanup[3] wiping distutils.sysconfig | |
# cleanup[3] wiping distutils.dir_util | |
# cleanup[3] wiping distutils.file_util | |
# cleanup[3] wiping distutils.archive_util | |
# cleanup[3] wiping configparser | |
# cleanup[3] wiping setuptools.extern.six | |
# destroy setuptools._vendor.six.moves.urllib | |
# destroy setuptools._vendor.six.moves | |
# cleanup[3] wiping setuptools.extern.six.moves | |
# cleanup[3] wiping numbers | |
# cleanup[3] wiping setuptools._vendor.packaging.__about__ | |
# cleanup[3] wiping setuptools.extern.packaging | |
# destroy setuptools.extern.packaging._structures | |
# destroy setuptools.extern.packaging._compat | |
# destroy setuptools._vendor.packaging.__about__ | |
# destroy setuptools.extern.packaging.version | |
# destroy setuptools.extern.packaging.specifiers | |
# destroy setuptools.extern.packaging.utils | |
# cleanup[3] wiping imp | |
# destroy _imp | |
# destroy importlib.util | |
# cleanup[3] wiping html | |
# destroy html.entities | |
# cleanup[3] wiping html.parser | |
# destroy _markupbase | |
# cleanup[3] wiping setuptools.windows_support | |
# cleanup[3] wiping distutils.command.install_scripts | |
# cleanup[3] wiping setuptools.command.bdist_egg | |
# cleanup[3] wiping setuptools.command.easy_install | |
# destroy random | |
# destroy site | |
# destroy subprocess | |
# destroy shlex | |
# destroy setuptools.command.setopt | |
# destroy setuptools.command.egg_info | |
# cleanup[3] wiping tarfile | |
# destroy copy | |
# destroy pwd | |
# destroy grp | |
# cleanup[3] wiping setuptools._vendor.six.moves | |
# cleanup[3] wiping setuptools._vendor.six.moves.urllib | |
# cleanup[3] wiping http | |
# cleanup[3] wiping http.client | |
# cleanup[3] wiping uu | |
# cleanup[3] wiping ssl | |
# cleanup[3] wiping _ssl | |
# destroy _ssl | |
# cleanup[3] wiping setuptools.ssl_support | |
# destroy atexit | |
# cleanup[3] wiping _scproxy | |
# cleanup[3] wiping setuptools.pep425tags | |
# destroy sysconfig | |
# destroy setuptools.glibc | |
# cleanup[3] wiping distutils.command.sdist | |
# cleanup[3] wiping setuptools.unicode_utils | |
# cleanup[3] wiping unicodedata | |
# destroy unicodedata | |
# cleanup[3] wiping sys | |
# cleanup[3] wiping builtins | |
# destroy encodings | |
# destroy ctypes.macholib.dyld | |
# destroy multiprocessing | |
# destroy multiprocessing.spawn | |
# destroy multiprocessing.popen_fork | |
# destroy setuptools.command.easy_install | |
# destroy stat | |
# destroy distutils.util | |
# destroy distutils.dir_util | |
# destroy distutils.file_util | |
# destroy distutils.archive_util | |
# destroy distutils.dep_util | |
# destroy _heapq | |
# destroy _thread | |
# destroy zipimport | |
# destroy datetime | |
# destroy enum | |
# destroy _warnings | |
# destroy pyexpat | |
# destroy pkg_resources._vendor.appdirs | |
# destroy pkg_resources._vendor.packaging | |
# destroy pkg_resources._vendor.pyparsing | |
# destroy errno | |
# destroy pkg_resources._vendor.six | |
# destroy _sre | |
# destroy sre_parse | |
# destroy importlib | |
# destroy inspect | |
# destroy dis | |
# destroy array | |
# destroy html | |
# destroy html.parser | |
# destroy imp | |
# destroy numbers | |
# destroy setuptools.windows_support | |
# destroy pickle | |
# destroy textwrap | |
# destroy tarfile | |
# destroy ctypes | |
# destroy zipfile | |
# destroy setuptools.pep425tags | |
# destroy shutil | |
# destroy http.client | |
# destroy setuptools | |
# destroy setuptools.ssl_support | |
# destroy configparser | |
# destroy distutils | |
# destroy setuptools.command.bdist_egg | |
# destroy setuptools.unicode_utils | |
# destroy setuptools._vendor.packaging | |
# destroy pkg_resources._vendor.six.moves.urllib_parse | |
# destroy pkg_resources._vendor.six.moves.urllib.error | |
# destroy pkg_resources._vendor.six.moves.urllib.request | |
# destroy pkg_resources._vendor.six.moves.urllib.response | |
# destroy pkg_resources._vendor.six.moves.urllib.robotparser | |
# destroy pkg_resources._vendor.six.moves.urllib | |
# destroy pkg_resources._vendor.six.moves.urllib.error | |
# destroy pkg_resources._vendor.six.moves.urllib.request | |
# destroy pkg_resources._vendor.six.moves.urllib.response | |
# destroy pkg_resources._vendor.six.moves.urllib.robotparser | |
# destroy _pickle | |
# destroy select | |
# destroy setuptools._vendor.six.moves.urllib_parse | |
# destroy setuptools._vendor.six.moves.urllib.error | |
# destroy setuptools._vendor.six.moves.urllib.request | |
# destroy setuptools._vendor.six.moves.urllib.response | |
# destroy setuptools._vendor.six.moves.urllib.robotparser | |
# destroy io | |
# destroy _lzma | |
# destroy _compression | |
# destroy calendar | |
# destroy email.header | |
# destroy binascii | |
# destroy uu | |
# destroy quopri | |
# destroy email.utils | |
# destroy email.errors | |
# destroy email.charset | |
# destroy pkg_resources._vendor.six.moves | |
# destroy platform | |
# destroy pkg_resources._vendor.six.moves.urllib_parse | |
# destroy getopt | |
# destroy fnmatch | |
# destroy operator | |
# destroy types | |
# destroy setuptools._vendor.six.moves.urllib | |
# destroy setuptools._vendor.six.moves | |
# destroy _operator | |
# destroy distutils.command.install_scripts | |
# destroy distutils.command.sdist | |
# destroy setuptools._vendor.six | |
# destroy pkg_resources | |
# destroy setuptools._vendor.six.moves.urllib_parse | |
# destroy setuptools._vendor.six.moves.urllib.error | |
# destroy setuptools._vendor.six.moves.urllib.request | |
# destroy setuptools._vendor.six.moves.urllib.response | |
# destroy setuptools._vendor.six.moves.urllib.robotparser | |
# destroy importlib.machinery | |
# destroy _frozen_importlib_external | |
# destroy distutils.sysconfig | |
# destroy distutils.log | |
# destroy tokenize | |
# destroy abc | |
# destroy functools | |
# destroy itertools | |
# destroy collections | |
# destroy base64 | |
# destroy bisect | |
# destroy email | |
# destroy hashlib | |
# destroy http | |
# destroy io | |
# destroy posixpath | |
# destroy socket | |
# destroy string | |
# destroy time | |
# destroy contextlib | |
# destroy warnings | |
# destroy ssl | |
# destroy posix | |
# destroy _scproxy | |
# destroy urllib | |
# destroy tempfile | |
# destroy locale | |
# destroy os | |
# destroy re | |
# destroy _frozen_importlib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment