Add PEP 230, Warning Framework.

Changed Owner: to Author: in a number of PEPs.
This commit is contained in:
Guido van Rossum 2000-11-28 22:23:25 +00:00
parent 087ce4a2df
commit d57b28ee36
8 changed files with 34 additions and 7 deletions

View File

@ -38,6 +38,7 @@ Index by Category
S 222 pep-0222.txt Web Library Enhancements Kuchling
I 226 pep-0226.txt Python 2.1 Release Schedule 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)
@ -123,7 +124,7 @@ Numerical Index
S 227 pep-0227.txt Statically Nested Scopes Hylton
S 228 pep-0228.txt Reworking Python's Numeric Model Zadka
S 229 pep-0229.txt Using Distutils to Build Python Kuchling
S 230 pep-0230.txt Warning Framework van Rossum
Key

View File

@ -1,7 +1,7 @@
PEP: 160
Title: Python 1.6 Release Schedule
Version: $Revision$
Owner: Fred L. Drake, Jr. <fdrake@acm.org>
Author: Fred L. Drake, Jr. <fdrake@acm.org>
Python-Version: 1.6
Status: Complete
Type: Informational

View File

@ -1,7 +1,7 @@
PEP: 200
Title: Python 2.0 Release Schedule
Version: $Revision$
Owner: Jeremy Hylton <jeremy@digicool.com>
Author: Jeremy Hylton <jeremy@digicool.com>
Python-Version: 2.0
Status: Final

View File

@ -1,7 +1,7 @@
PEP: 205
Title: Weak References
Version: $Revision$
Owner: Fred L. Drake, Jr. <fdrake@acm.org>
Author: Fred L. Drake, Jr. <fdrake@acm.org>
Python-Version: 2.1
Status: Incomplete
Type: Standards Track

View File

@ -1,7 +1,7 @@
PEP: 206
Title: 2.0 Batteries Included
Version: $Revision$
Owner: moshez@math.huji.ac.il (Moshe Zadka)
Author: moshez@math.huji.ac.il (Moshe Zadka)
Python-Version: 2.0
Status: Draft

View File

@ -1,7 +1,7 @@
PEP: 207
Title: Rich Comparisions
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
Status: Incomplete

View File

@ -1,7 +1,7 @@
PEP: 208
Title: Reworking the Coercion Model
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
Status: Incomplete

26
pep-0230.txt Normal file
View File

@ -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: