Guido accepted 342 and 343 at EuroPython keynote. 342 was commited.
This commit is contained in:
parent
753b341e2e
commit
f860cb242a
|
@ -66,7 +66,7 @@ Index by Category
|
||||||
|
|
||||||
SA 308 Conditional Expressions GvR, Hettinger
|
SA 308 Conditional Expressions GvR, Hettinger
|
||||||
SA 328 Imports: Multi-Line and Absolute/Relative Aahz
|
SA 328 Imports: Multi-Line and Absolute/Relative Aahz
|
||||||
SA 342 Coroutines via Enhanced Generators GvR, Eby
|
SA 343 The "with" Statement GvR, Coghlan
|
||||||
|
|
||||||
Open PEPs (under consideration)
|
Open PEPs (under consideration)
|
||||||
|
|
||||||
|
@ -100,7 +100,6 @@ Index by Category
|
||||||
S 335 Overloadable Boolean Operators Ewing
|
S 335 Overloadable Boolean Operators Ewing
|
||||||
S 337 Logging Usage in the Standard Library Dubner
|
S 337 Logging Usage in the Standard Library Dubner
|
||||||
S 338 Executing modules inside packages with '-m' Coghlan
|
S 338 Executing modules inside packages with '-m' Coghlan
|
||||||
S 343 The "with" Statement GvR, Coghlan
|
|
||||||
S 344 Exception Chaining and Embedded Tracebacks Yee
|
S 344 Exception Chaining and Embedded Tracebacks Yee
|
||||||
S 345 Metadata for Python Software Packages 1.2 Jones
|
S 345 Metadata for Python Software Packages 1.2 Jones
|
||||||
I 350 Codetags Elliott
|
I 350 Codetags Elliott
|
||||||
|
@ -167,6 +166,7 @@ Index by Category
|
||||||
SF 324 subprocess - New process module Astrand
|
SF 324 subprocess - New process module Astrand
|
||||||
SF 327 Decimal Data Type Batista
|
SF 327 Decimal Data Type Batista
|
||||||
SF 341 Unifying try-except and try-finally Brandl
|
SF 341 Unifying try-except and try-finally Brandl
|
||||||
|
SF 342 Coroutines via Enhanced Generators GvR, Eby
|
||||||
|
|
||||||
Empty PEPs (or containing only an abstract)
|
Empty PEPs (or containing only an abstract)
|
||||||
|
|
||||||
|
@ -392,8 +392,8 @@ Numerical Index
|
||||||
I 339 How to Change CPython's Bytecode Cannon
|
I 339 How to Change CPython's Bytecode Cannon
|
||||||
SR 340 Anonymous Block Statements GvR
|
SR 340 Anonymous Block Statements GvR
|
||||||
SF 341 Unifying try-except and try-finally Brandl
|
SF 341 Unifying try-except and try-finally Brandl
|
||||||
SA 342 Coroutines via Enhanced Generators GvR, Eby
|
SF 342 Coroutines via Enhanced Generators GvR, Eby
|
||||||
S 343 Anonymous Block Redux and Generator Enhancements GvR
|
SA 343 Anonymous Block Redux and Generator Enhancements GvR
|
||||||
S 344 Exception Chaining and Embedded Tracebacks Yee
|
S 344 Exception Chaining and Embedded Tracebacks Yee
|
||||||
S 345 Metadata for Python Software Packages 1.2 Jones
|
S 345 Metadata for Python Software Packages 1.2 Jones
|
||||||
SR 346 User Defined ("with") Statements Coghlan
|
SR 346 User Defined ("with") Statements Coghlan
|
||||||
|
|
|
@ -3,7 +3,7 @@ Title: Coroutines via Enhanced Generators
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Guido van Rossum, Phillip J. Eby
|
Author: Guido van Rossum, Phillip J. Eby
|
||||||
Status: Accepted
|
Status: Final
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/plain
|
Content-Type: text/plain
|
||||||
Created: 10-May-2005
|
Created: 10-May-2005
|
||||||
|
@ -572,6 +572,9 @@ Reference Implementation
|
||||||
PEP is available as SourceForge patch #1223381
|
PEP is available as SourceForge patch #1223381
|
||||||
(http://python.org/sf/1223381).
|
(http://python.org/sf/1223381).
|
||||||
|
|
||||||
|
This patch was commited to CVS 01-02 August 2005.
|
||||||
|
|
||||||
|
|
||||||
Acknowledgements
|
Acknowledgements
|
||||||
|
|
||||||
Raymond Hettinger (PEP 288) and Samuele Pedroni (PEP 325) first
|
Raymond Hettinger (PEP 288) and Samuele Pedroni (PEP 325) first
|
||||||
|
|
12
pep-0343.txt
12
pep-0343.txt
|
@ -3,7 +3,7 @@ Title: The "with" Statement
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Guido van Rossum, Nick Coghlan
|
Author: Guido van Rossum, Nick Coghlan
|
||||||
Status: Draft
|
Status: Accepted
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/plain
|
Content-Type: text/plain
|
||||||
Created: 13-May-2005
|
Created: 13-May-2005
|
||||||
|
@ -830,6 +830,12 @@ Examples
|
||||||
# Perform operation
|
# Perform operation
|
||||||
|
|
||||||
|
|
||||||
|
Reference Implementation
|
||||||
|
|
||||||
|
There is no implementation at this time. This PEP was accepted
|
||||||
|
by Guido at his EuroPython keynote, 27 June 2005.
|
||||||
|
|
||||||
|
|
||||||
References
|
References
|
||||||
|
|
||||||
[1] http://blogs.msdn.com/oldnewthing/archive/2005/01/06/347666.aspx
|
[1] http://blogs.msdn.com/oldnewthing/archive/2005/01/06/347666.aspx
|
||||||
|
@ -862,6 +868,10 @@ References
|
||||||
[11]
|
[11]
|
||||||
http://mail.python.org/pipermail/python-dev/2005-October/057625.html
|
http://mail.python.org/pipermail/python-dev/2005-October/057625.html
|
||||||
|
|
||||||
|
[12]
|
||||||
|
http://sourceforge.net/tracker/index.php?func=detail&aid=1223381&group_id=5470&atid=305470
|
||||||
|
|
||||||
|
|
||||||
Copyright
|
Copyright
|
||||||
|
|
||||||
This document has been placed in the public domain.
|
This document has been placed in the public domain.
|
||||||
|
|
Loading…
Reference in New Issue