PEP 488: Resolve unreferenced footnotes (#3239)
This commit is contained in:
parent
3dccdf3295
commit
e43675191d
31
pep-0488.txt
31
pep-0488.txt
|
@ -126,7 +126,7 @@ instead of ``importlib.cpython-35.pyo`` the file name would be
|
|||
Leaving out the new ``opt-`` tag when no optimization level is
|
||||
applied should increase backwards-compatibility. This is also more
|
||||
understanding of Python implementations which have no use for
|
||||
optimization levels (e.g., PyPy[10]_).
|
||||
optimization levels (e.g., PyPy [10]_).
|
||||
|
||||
It should be noted that this change in no way affects the performance
|
||||
of import. Since the import system looks for a single bytecode file
|
||||
|
@ -307,47 +307,36 @@ References
|
|||
==========
|
||||
|
||||
.. [1] The compileall module
|
||||
(https://docs.python.org/3/library/compileall.html#module-compileall)
|
||||
(https://docs.python.org/3.5/library/compileall.html)
|
||||
|
||||
.. [2] The astoptimizer project
|
||||
(https://pypi.python.org/pypi/astoptimizer)
|
||||
(https://web.archive.org/web/20150909225454/https://pypi.python.org/pypi/astoptimizer)
|
||||
|
||||
.. [3] ``importlib.util.cache_from_source()``
|
||||
(https://docs.python.org/3.5/library/importlib.html#importlib.util.cache_from_source)
|
||||
|
||||
.. [4] Implementation of ``importlib.util.cache_from_source()`` from CPython 3.4.3rc1
|
||||
(https://hg.python.org/cpython/file/038297948389/Lib/importlib/_bootstrap.py#l437)
|
||||
(https://github.com/python/cpython/blob/e55181f517bbfc875065ce86ed3e05cf0e0246fa/Lib/importlib/_bootstrap.py#L437)
|
||||
|
||||
.. [6] The py_compile module
|
||||
(https://docs.python.org/3/library/compileall.html#module-compileall)
|
||||
(https://docs.python.org/3.5/library/compileall.html)
|
||||
|
||||
.. [7] The importlib.machinery module
|
||||
(https://docs.python.org/3/library/importlib.html#module-importlib.machinery)
|
||||
(https://docs.python.org/3.5/library/importlib.html#module-importlib.machinery)
|
||||
|
||||
.. [8] ``importlib.util.MAGIC_NUMBER``
|
||||
(https://docs.python.org/3/library/importlib.html#importlib.util.MAGIC_NUMBER)
|
||||
(https://docs.python.org/3.5/library/importlib.html#importlib.util.MAGIC_NUMBER)
|
||||
|
||||
.. [9] Informal poll of file name format options on Google+
|
||||
(https://plus.google.com/u/0/+BrettCannon/posts/fZynLNwHWGm)
|
||||
(https://web.archive.org/web/20160925163500/https://plus.google.com/+BrettCannon/posts/fZynLNwHWGm)
|
||||
|
||||
.. [10] The PyPy Project
|
||||
(http://pypy.org/)
|
||||
(https://www.pypy.org/)
|
||||
|
||||
.. [11] Implementation of PEP 488
|
||||
(http://bugs.python.org/issue23731)
|
||||
(https://github.com/python/cpython/issues/67919)
|
||||
|
||||
Copyright
|
||||
=========
|
||||
|
||||
This document has been placed in the public domain.
|
||||
|
||||
|
||||
|
||||
..
|
||||
Local Variables:
|
||||
mode: indented-text
|
||||
indent-tabs-mode: nil
|
||||
sentence-end-double-space: t
|
||||
fill-column: 70
|
||||
coding: utf-8
|
||||
End:
|
||||
|
|
Loading…
Reference in New Issue