Mark PEP 3109 as final.
This commit is contained in:
parent
0abb2d6461
commit
bd5c6b8e87
|
@ -77,7 +77,6 @@ Index by Category
|
|||
SA 358 The "bytes" Object Schemenauer, GvR
|
||||
SA 3101 Advanced String Formatting Talin
|
||||
SA 3106 Revamping dict.keys(), .values() & .items() GvR
|
||||
SA 3109 Raising Exceptions in Python 3000 Winter
|
||||
SA 3118 Revising the buffer protocol Oliphant, Banks
|
||||
SA 3119 Introducing Abstract Base Classes GvR, Talin
|
||||
SA 3121 Extension Module Initialization & Finalization von Löwis
|
||||
|
@ -165,6 +164,7 @@ Index by Category
|
|||
SF 3104 Access to Names in Outer Scopes Yee
|
||||
SF 3105 Make print a function Brandl
|
||||
SF 3107 Function Annotations Winter, Lownds
|
||||
SF 3109 Raising Exceptions in Python 3000 Winter
|
||||
SF 3110 Catching Exceptions in Python 3000 Winter
|
||||
SF 3111 Simple input built-in in Python 3000 Roberge
|
||||
SF 3112 Bytes literals in Python 3000 Orendorff
|
||||
|
@ -481,7 +481,7 @@ Numerical Index
|
|||
SA 3106 Revamping dict.keys(), .values() & .items() GvR
|
||||
SF 3107 Function Annotations Winter, Lownds
|
||||
S 3108 Standard Library Reorganization Cannon
|
||||
SA 3109 Raising Exceptions in Python 3000 Winter
|
||||
SF 3109 Raising Exceptions in Python 3000 Winter
|
||||
SF 3110 Catching Exceptions in Python 3000 Winter
|
||||
SF 3111 Simple input built-in in Python 3000 Roberge
|
||||
SF 3112 Bytes literals in Python 3000 Orendorff
|
||||
|
|
11
pep-3109.txt
11
pep-3109.txt
|
@ -3,7 +3,7 @@ Title: Raising Exceptions in Python 3000
|
|||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: Collin Winter <collinw@gmail.com>
|
||||
Status: Accepted
|
||||
Status: Final
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 19-Jan-2006
|
||||
|
@ -235,6 +235,12 @@ The following translations will be performed:
|
|||
PEP 344.
|
||||
|
||||
|
||||
Implementation
|
||||
==============
|
||||
|
||||
This PEP was implemented in revisions 57783 [#r57783]_.
|
||||
|
||||
|
||||
References
|
||||
==========
|
||||
|
||||
|
@ -268,6 +274,9 @@ References
|
|||
.. [#throw-fixer]
|
||||
http://svn.python.org/view/sandbox/trunk/2to3/fixes/fix_throw.py
|
||||
|
||||
.. [#r57783]
|
||||
http://svn.python.org/view/python/branches/py3k/Include/?rev=57783&view=rev
|
||||
|
||||
|
||||
Copyright
|
||||
=========
|
||||
|
|
Loading…
Reference in New Issue