Add PEP 230, Warning Framework.
Changed Owner: to Author: in a number of PEPs.
This commit is contained in:
parent
087ce4a2df
commit
d57b28ee36
|
@ -38,6 +38,7 @@ Index by Category
|
||||||
S 222 pep-0222.txt Web Library Enhancements Kuchling
|
S 222 pep-0222.txt Web Library Enhancements Kuchling
|
||||||
I 226 pep-0226.txt Python 2.1 Release Schedule Hylton
|
I 226 pep-0226.txt Python 2.1 Release Schedule Hylton
|
||||||
S 227 pep-0227.txt Statically Nested Scopes Hylton
|
S 227 pep-0227.txt Statically Nested Scopes Hylton
|
||||||
|
S 230 pep-0230.txt Warning Framework van Rossum
|
||||||
|
|
||||||
Pie-in-the-sky PEPs (not ready; may become active yet)
|
Pie-in-the-sky PEPs (not ready; may become active yet)
|
||||||
|
|
||||||
|
@ -123,7 +124,7 @@ Numerical Index
|
||||||
S 227 pep-0227.txt Statically Nested Scopes Hylton
|
S 227 pep-0227.txt Statically Nested Scopes Hylton
|
||||||
S 228 pep-0228.txt Reworking Python's Numeric Model Zadka
|
S 228 pep-0228.txt Reworking Python's Numeric Model Zadka
|
||||||
S 229 pep-0229.txt Using Distutils to Build Python Kuchling
|
S 229 pep-0229.txt Using Distutils to Build Python Kuchling
|
||||||
|
S 230 pep-0230.txt Warning Framework van Rossum
|
||||||
|
|
||||||
Key
|
Key
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PEP: 160
|
PEP: 160
|
||||||
Title: Python 1.6 Release Schedule
|
Title: Python 1.6 Release Schedule
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Owner: Fred L. Drake, Jr. <fdrake@acm.org>
|
Author: Fred L. Drake, Jr. <fdrake@acm.org>
|
||||||
Python-Version: 1.6
|
Python-Version: 1.6
|
||||||
Status: Complete
|
Status: Complete
|
||||||
Type: Informational
|
Type: Informational
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PEP: 200
|
PEP: 200
|
||||||
Title: Python 2.0 Release Schedule
|
Title: Python 2.0 Release Schedule
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Owner: Jeremy Hylton <jeremy@digicool.com>
|
Author: Jeremy Hylton <jeremy@digicool.com>
|
||||||
Python-Version: 2.0
|
Python-Version: 2.0
|
||||||
Status: Final
|
Status: Final
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PEP: 205
|
PEP: 205
|
||||||
Title: Weak References
|
Title: Weak References
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Owner: Fred L. Drake, Jr. <fdrake@acm.org>
|
Author: Fred L. Drake, Jr. <fdrake@acm.org>
|
||||||
Python-Version: 2.1
|
Python-Version: 2.1
|
||||||
Status: Incomplete
|
Status: Incomplete
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PEP: 206
|
PEP: 206
|
||||||
Title: 2.0 Batteries Included
|
Title: 2.0 Batteries Included
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Owner: moshez@math.huji.ac.il (Moshe Zadka)
|
Author: moshez@math.huji.ac.il (Moshe Zadka)
|
||||||
Python-Version: 2.0
|
Python-Version: 2.0
|
||||||
Status: Draft
|
Status: Draft
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PEP: 207
|
PEP: 207
|
||||||
Title: Rich Comparisions
|
Title: Rich Comparisions
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Owner: mal@lemburg.com (Marc-Andre Lemburg), guido@python.org (Guido van Rossum)
|
Author: mal@lemburg.com (Marc-Andre Lemburg), guido@python.org (Guido van Rossum)
|
||||||
Python-Version: 2.1
|
Python-Version: 2.1
|
||||||
Status: Incomplete
|
Status: Incomplete
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PEP: 208
|
PEP: 208
|
||||||
Title: Reworking the Coercion Model
|
Title: Reworking the Coercion Model
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Owner: davida@activestate.com (David Ascher), pep@zadka.site.co.il (Moshe Zadka)
|
Author: davida@activestate.com (David Ascher), pep@zadka.site.co.il (Moshe Zadka)
|
||||||
Python-Version: 2.1
|
Python-Version: 2.1
|
||||||
Status: Incomplete
|
Status: Incomplete
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
PEP: 230
|
||||||
|
Title: Warning Framework
|
||||||
|
Version: $Revision$
|
||||||
|
Author: guido@python.org (Guido van Rossum)
|
||||||
|
Status: Draft
|
||||||
|
Type: Standards Track
|
||||||
|
Python-Version: 2.1
|
||||||
|
Status: Incomplete
|
||||||
|
Post-History: 05-Nov-2000
|
||||||
|
|
||||||
|
|
||||||
|
Abstract
|
||||||
|
|
||||||
|
This PEP proposes a C and Python level API, as well as command
|
||||||
|
line flags, to issue warning messages and control what happens to
|
||||||
|
them. This is mostly based on GvR's proposal posted to python-dev
|
||||||
|
on 05-Nov-2000, with some ideas (such as using classes to
|
||||||
|
categorize warnings) merged in from Paul Prescod's
|
||||||
|
counter-proposal posted on the same date.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Local Variables:
|
||||||
|
mode: indented-text
|
||||||
|
indent-tabs-mode: nil
|
||||||
|
End:
|
Loading…
Reference in New Issue