Record acceptances of PEPs 441 and 486, including trivial fixes for each courtesy of Paul Moore
This commit is contained in:
parent
401c977971
commit
1979fba2a0
|
@ -5,11 +5,12 @@ Last-Modified: $Date$
|
|||
Author: Daniel Holth <dholth@gmail.com>,
|
||||
Paul Moore <p.f.moore@gmail.com>
|
||||
Discussions-To: https://mail.python.org/pipermail/python-dev/2015-February/138277.html
|
||||
Status: Draft
|
||||
Status: Accepted
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 30 March 2013
|
||||
Post-History: 30 March 2013, 1 April 2013, 16 February 2015
|
||||
Resolution: https://mail.python.org/pipermail/python-dev/2015-February/138578.html
|
||||
|
||||
Improving Python ZIP Application Support
|
||||
========================================
|
||||
|
@ -101,7 +102,7 @@ of the following:
|
|||
will be created from the content of that directory.
|
||||
* The name of an existing application archive file, in which case the
|
||||
file is copied to the target. The file name should include the
|
||||
``.pyz`` extension, if required.
|
||||
``.pyz`` or ``.pyzw`` extension, if required.
|
||||
* A file object open for reading in bytes mode. The content of the
|
||||
file should be an application archive, and the file object is
|
||||
assumed to be positioned at the start of the archive.
|
||||
|
@ -172,7 +173,7 @@ line interface is as follows::
|
|||
|
||||
The destination archive will have the specified name. The
|
||||
given name will be used as written, so should include the
|
||||
".pyz" extension.
|
||||
".pyz" or ".pyzw" extension.
|
||||
|
||||
-p interpreter / --python interpreter
|
||||
|
||||
|
|
|
@ -3,12 +3,13 @@ Title: Make the Python Launcher aware of virtual environments
|
|||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: Paul Moore <p.f.moore@gmail.com>
|
||||
Status: Draft
|
||||
Status: Accepted
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 12-Feb-2015
|
||||
Python-Version: 3.5
|
||||
Post-History:
|
||||
Post-History: 12-Feb-2015
|
||||
Resolution: https://mail.python.org/pipermail/python-dev/2015-February/138579.html
|
||||
|
||||
|
||||
Abstract
|
||||
|
@ -51,7 +52,7 @@ virtualenv::
|
|||
python
|
||||
|
||||
# Execute an installed module (these could use python -m,
|
||||
# which is longer to type but is a little mopre similar to the
|
||||
# which is longer to type but is a little more similar to the
|
||||
# launcher approach)
|
||||
pip install pytest
|
||||
py.test
|
||||
|
|
Loading…
Reference in New Issue