Panda3D
Functions | Variables
direct.dist.FreezeTool Namespace Reference

Functions

def pytest_imports ()
 

Variables

dictionary builtinInitFuncs
 
dictionary hiddenImports
 
dictionary ignoreImports
 
tuple isDebugBuild = (python.lower().endswith('_d'))
 
 p3extend_frozen = None
 
 python = os.path.splitext(os.path.split(sys.executable)[1])[0]
 
list startupModules
 

Detailed Description

 This module contains code to freeze a number of Python modules
into a single (mostly) standalone DLL or EXE. 

Function Documentation

◆ pytest_imports()

def direct.dist.FreezeTool.pytest_imports ( )

Variable Documentation

◆ builtinInitFuncs

dictionary builtinInitFuncs
Initial value:
1= {
2 'builtins': None,
3 '__builtin__': None,
4 'sys': None,
5 'exceptions': None,
6 '_warnings': '_PyWarnings_Init',
7 'marshal': 'PyMarshal_Init',
8}

◆ hiddenImports

dictionary hiddenImports
Initial value:
1= {
2 'pytest': pytest_imports(),
3 'pkg_resources': [
4 'pkg_resources.*.*',
5 ],
6 'xml.etree.cElementTree': ['xml.etree.ElementTree'],
7 'datetime': ['_strptime'],
8 'keyring.backends': ['keyring.backends.*'],
9 'matplotlib.font_manager': ['encodings.mac_roman'],
10 'direct.particles': ['direct.particles.ParticleManagerGlobal'],
11 'numpy.core._multiarray_umath': [
12 'numpy.core._internal',
13 'numpy.core._dtype_ctypes',
14 'numpy.core._methods',
15 ],
16 'pandas.compat': ['lzma', 'cmath'],
17 'pandas._libs.tslibs.conversion': ['pandas._libs.tslibs.base'],
18}

◆ ignoreImports

dictionary ignoreImports
Initial value:
1= {
2 'direct.showbase.PythonUtil': ['pstats', 'profile'],
3
4 'toml.encoder': ['numpy'],
5}

◆ isDebugBuild

tuple isDebugBuild = (python.lower().endswith('_d'))

◆ p3extend_frozen

p3extend_frozen = None

◆ python

python = os.path.splitext(os.path.split(sys.executable)[1])[0]

◆ startupModules

list startupModules
Initial value:
1= [
2 'imp', 'encodings', 'encodings.*',
3]