Mark PEP 307 as final; fix a typo in PEP 307

This commit is contained in:
Andrew M. Kuchling 2004-08-07 15:59:56 +00:00
parent dec5ab7a7c
commit 56a0b6d473
2 changed files with 4 additions and 4 deletions

View File

@ -109,7 +109,6 @@ Index by Category
S 303 Extend divmod() for Multiple Divisors Bellman
S 304 Controlling Generation of Bytecode Files Montanaro
S 305 CSV File API Montanaro, et al
S 307 Extensions to the pickle protocol GvR, Peters
S 310 Reliable Acquisition/Release Pairs Hudson, Moore
S 312 Simple Implicit Lambda Suzi, Martelli
S 313 Adding Roman Numeral Literals to Python Meyer
@ -163,6 +162,7 @@ Index by Category
SF 285 Adding a bool type GvR
SF 289 Generator Expressions Hettinger
SF 293 Codec Error Handling Callbacks Dörwald
SF 307 Extensions to the pickle protocol GvR, Peters
SF 311 Simplified GIL Acquisition for Extensions Hammond
SF 322 Reverse Iteration Hettinger
SF 327 Decimal Data Type Batista
@ -330,7 +330,7 @@ Numerical Index
S 304 Controlling Generation of Bytecode Files Montanaro
S 305 CSV File API Montanaro, et al
I 306 How to Change Python's Grammar Hudson
S 307 Extensions to the pickle protocol GvR, Peters
SF 307 Extensions to the pickle protocol GvR, Peters
SR 308 If-then-else expression GvR, Hettinger
SA 309 Partial Function Application Harris
S 310 Reliable Acquisition/Release Pairs Hudson, Moore

View File

@ -3,7 +3,7 @@ Title: Extensions to the pickle protocol
Version: $Revision$
Last-Modified: $Date$
Author: Guido van Rossum, Tim Peters
Status: Draft
Status: Final
Type: Standards Track
Content-Type: text/plain
Created: 31-Jan-2003
@ -216,7 +216,7 @@ Extended __reduce__ API
This is primarily used for list subclasses, but may
be used by other classes as long as they have append()
and extend() methods with the appropriate signature.
(Whether append() or extend() is used depend on which
(Whether append() or extend() is used depends on which
pickle protocol version is used as well as the number
of items to append, so both must be supported.)