While this original PEP was withdrawn, a variant of this feature was eventually implemented for Python 3.8 in https://bugs.python.org/issue33499
Several of the issues and concerns originally raised in this PEP were resolved by other changes in the intervening years:
importlib
, a fully import-hook based import system implementation__pycache__
subdirectories, including the source_to_cache(path)
and cache_to_source(path)
APIs that allow the interpreter to automatically handle the redirection to a separate cache directoryThis PEP outlines a mechanism for controlling the generation and location of compiled Python bytecode files. This idea originally arose as a patch request [1] and evolved into a discussion thread on the python-dev mailing list [2]. The introduction of an environment variable will allow people installing Python or Python-based third-party packages to control whether or not bytecode files should be generated at installation time, and if so, where they should be written. It will also allow users to control whether or not bytecode files should be generated at application run-time, and if so, where they should be written.
ProposalAdd a new environment variable, PYTHONBYTECODEBASE, to the mix of environment variables which Python understands. PYTHONBYTECODEBASE is interpreted as follows:
C:\
– on Windows).a warning is displayed, sys.bytecodebase is set to None and generation of bytecode files is suppressed altogether.
After startup initialization, all runtime references are to sys.bytecodebase, not the PYTHONBYTECODEBASE environment variable. sys.path is not modified.
From the above, we see sys.bytecodebase can only take on two valid types of values: None or a string referring to a valid directory on the system.
During import, this extension works as follows:
Note that this PEP is explicitly not about providing module-by-module or directory-by-directory control over the disposition of bytecode files.
GlossaryWhen the interpreter is searching for a module, it will use sys.path as usual. However, when a possible bytecode file is considered, an extra probe for a bytecode file may be made. First, a check is made for the bytecode file using the directory in sys.path which holds the source file (the current behavior). If a valid bytecode file is not found there (either one does not exist or exists but is out-of-date) and the bytecode base is not None, a second probe is made using the directory in sys.path prefixed appropriately by the bytecode base.
Writing bytecode filesWhen the bytecode base is not None, a new bytecode file is written to the appropriate augmented directory, never directly to a directory in sys.path.
Defining augmented directoriesConceptually, the augmented directory for a bytecode file is the directory in which the source file exists prefixed by the bytecode base. In a Unix environment this would be:
pcb = os.path.abspath(sys.bytecodebase) if sourcefile[0] == os.sep: sourcefile = sourcefile[1:] augdir = os.path.join(pcb, os.path.dirname(sourcefile))
On Windows, which does not have a single-rooted directory tree, the drive letter of the directory containing the source file is treated as a directory component after removing the trailing colon. The augmented directory is thus derived as
pcb = os.path.abspath(sys.bytecodebase) drive, base = os.path.splitdrive(os.path.dirname(sourcefile)) drive = drive[:-1] if base[0] == "\\": base = base[1:] augdir = os.path.join(pcb, drive, base)Fixing the location of the bytecode base
During program startup, the value of the PYTHONBYTECODEBASE environment variable is made absolute, checked for validity and added to the sys module, effectively:
pcb = os.path.abspath(os.environ["PYTHONBYTECODEBASE"]) probe = os.path.join(pcb, "foo") try: open(probe, "w") except IOError: sys.bytecodebase = None else: os.unlink(probe) sys.bytecodebase = pcb
This allows the user to specify the bytecode base as a relative path, but not have it subject to changes to the current working directory during program execution. (I can’t imagine you’d want it to move around during program execution.)
There is nothing special about sys.bytecodebase. The user may change it at runtime if desired, but normally it will not be modified.
RationaleIn many environments it is not possible for non-root users to write into directories containing Python source files. Most of the time, this is not a problem as Python source is generally byte compiled during installation. However, there are situations where bytecode files are either missing or need to be updated. If the directory containing the source file is not writable by the current user a performance penalty is incurred each time a program importing the module is run. [3] Warning messages may also be generated in certain circumstances. If the directory is writable, nearly simultaneous attempts to write the bytecode file by two separate processes may occur, resulting in file corruption. [4]
In environments with RAM disks available, it may be desirable for performance reasons to write bytecode files to a directory on such a disk. Similarly, in environments where Python source code resides on network file systems, it may be desirable to cache bytecode files on local disks.
AlternativesThe only other alternative proposed so far [1] seems to be to add a -R flag to the interpreter to disable writing bytecode files altogether. This proposal subsumes that. Adding a command-line option is certainly possible, but is probably not sufficient, as the interpreter’s command line is not readily available during installation (early during program startup???).
IssuesIn the examples which follow, the urllib source code resides in /usr/lib/python2.3/urllib.py and /usr/lib/python2.3 is in sys.path but is not writable by the current user.
In the Windows examples which follow, the urllib source code resides in C:\PYTHON22\urllib.py
. C:\PYTHON22
is in sys.path but is not writable by the current user.
C:\TEMP
. C:\PYTHON22\urllib.pyc
exists and is valid. When urllib is imported, the contents of C:\PYTHON22\urllib.pyc
are used. The augmented directory is not consulted.C:\TEMP
. C:\PYTHON22\urllib.pyc
exists, but is out-of-date. When urllib is imported, a new bytecode file is written to the augmented directory which has the value C:\TEMP\C\PYTHON22
. Intermediate directories will be created as needed.TEMP
and the current working directory at application startup is H:\NET
. The potential bytecode base is thus H:\NET\TEMP
. If this directory exists and is writable by the current user, sys.bytecodebase will be set to that value. If not, a warning will be emitted and sys.bytecodebase will be set to None.C:\TEMP
. No urllib.pyc file is found. When urllib is imported, the generated bytecode file is written to the augmented directory which has the value C:\TEMP\C\PYTHON22
. Intermediate directories will be created as needed.See the patch on Sourceforge. [6]
References CopyrightThis document has been placed in the public domain.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4