Accept PEPs 3120 (UTF-8 default source encoding), 3121 (extension
initialization and finalization) and 3123 (PyObject_HEAD vs. stdC).
This commit is contained in:
parent
883209f6ee
commit
c91f1215e8
12
pep-0000.txt
12
pep-0000.txt
|
@ -81,6 +81,9 @@ Index by Category
|
||||||
SA 3112 Bytes literals in Python 3000 Orendorff
|
SA 3112 Bytes literals in Python 3000 Orendorff
|
||||||
SA 3113 Removal of Tuple Parameter Unpacking Cannon
|
SA 3113 Removal of Tuple Parameter Unpacking Cannon
|
||||||
SA 3115 Metaclasses in Python 3000 Talin
|
SA 3115 Metaclasses in Python 3000 Talin
|
||||||
|
SA 3120 Using UTF-8 as the default source encoding von Löwis
|
||||||
|
SA 3121 Extension Module Initialization & Finalization von Löwis
|
||||||
|
SA 3123 Making PyObject_HEAD conform to standard C von Löwis
|
||||||
SA 3129 Class Decorators Winter
|
SA 3129 Class Decorators Winter
|
||||||
|
|
||||||
Open PEPs (under consideration)
|
Open PEPs (under consideration)
|
||||||
|
@ -116,9 +119,6 @@ Index by Category
|
||||||
S 3116 New I/O Stutzbach, Verdone, GvR
|
S 3116 New I/O Stutzbach, Verdone, GvR
|
||||||
S 3118 Revising the buffer protocol Oliphant, Banks
|
S 3118 Revising the buffer protocol Oliphant, Banks
|
||||||
S 3119 Introducing Abstract Base Classes GvR, Talin
|
S 3119 Introducing Abstract Base Classes GvR, Talin
|
||||||
S 3120 Using UTF-8 as the default source encoding von Löwis
|
|
||||||
S 3121 Extension Module Initialization & Finalization von Löwis
|
|
||||||
S 3123 Making PyObject_HEAD conform to standard C von Löwis
|
|
||||||
S 3124 Overloading, Generic Functions, Interfaces Eby
|
S 3124 Overloading, Generic Functions, Interfaces Eby
|
||||||
S 3127 Integer Literal Support and Syntax Maupin
|
S 3127 Integer Literal Support and Syntax Maupin
|
||||||
S 3128 BList: A Faster List-like Type Stutzbach
|
S 3128 BList: A Faster List-like Type Stutzbach
|
||||||
|
@ -489,10 +489,10 @@ Numerical Index
|
||||||
SR 3117 Postfix Type Declarations Brandl
|
SR 3117 Postfix Type Declarations Brandl
|
||||||
S 3118 Revising the buffer protocol Oliphant, Banks
|
S 3118 Revising the buffer protocol Oliphant, Banks
|
||||||
S 3119 Introducing Abstract Base Classes GvR, Talin
|
S 3119 Introducing Abstract Base Classes GvR, Talin
|
||||||
S 3120 Using UTF-8 as the default source encoding von Löwis
|
SA 3120 Using UTF-8 as the default source encoding von Löwis
|
||||||
S 3121 Extension Module Initialization & Finalization von Löwis
|
SA 3121 Extension Module Initialization & Finalization von Löwis
|
||||||
SR 3122 Delineation of the main module Cannon
|
SR 3122 Delineation of the main module Cannon
|
||||||
S 3123 Making PyObject_HEAD conform to standard C von Löwis
|
SA 3123 Making PyObject_HEAD conform to standard C von Löwis
|
||||||
S 3124 Overloading, Generic Functions, Interfaces Eby
|
S 3124 Overloading, Generic Functions, Interfaces Eby
|
||||||
SR 3125 Remove Backslash Continuation Jewett
|
SR 3125 Remove Backslash Continuation Jewett
|
||||||
SR 3126 Remove Implicit String Concatenation Jewett
|
SR 3126 Remove Implicit String Concatenation Jewett
|
||||||
|
|
|
@ -3,7 +3,7 @@ Title: Using UTF-8 as the default source encoding
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Martin v. Löwis <martin@v.loewis.de>
|
Author: Martin v. Löwis <martin@v.loewis.de>
|
||||||
Status: Draft
|
Status: Accepted
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 15-Apr-2007
|
Created: 15-Apr-2007
|
||||||
|
|
|
@ -3,7 +3,7 @@ Title: Extension Module Initialization and Finalization
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Martin v. Löwis <martin@v.loewis.de>
|
Author: Martin v. Löwis <martin@v.loewis.de>
|
||||||
Status: Draft
|
Status: Accepted
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 27-Apr-2007
|
Created: 27-Apr-2007
|
||||||
|
|
|
@ -3,7 +3,7 @@ Title: Making PyObject_HEAD conform to standard C
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Martin v. Löwis <martin@v.loewis.de>
|
Author: Martin v. Löwis <martin@v.loewis.de>
|
||||||
Status: Draft
|
Status: Accepted
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 27-Apr-2007
|
Created: 27-Apr-2007
|
||||||
|
|
Loading…
Reference in New Issue