From d57b28ee36f9a1702c87076c9953118f947edafe Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 28 Nov 2000 22:23:25 +0000 Subject: [PATCH] Add PEP 230, Warning Framework. Changed Owner: to Author: in a number of PEPs. --- pep-0000.txt | 3 ++- pep-0160.txt | 2 +- pep-0200.txt | 2 +- pep-0205.txt | 2 +- pep-0206.txt | 2 +- pep-0207.txt | 2 +- pep-0208.txt | 2 +- pep-0230.txt | 26 ++++++++++++++++++++++++++ 8 files changed, 34 insertions(+), 7 deletions(-) create mode 100644 pep-0230.txt diff --git a/pep-0000.txt b/pep-0000.txt index 4e4995960..bc1bc9d53 100644 --- a/pep-0000.txt +++ b/pep-0000.txt @@ -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 diff --git a/pep-0160.txt b/pep-0160.txt index 0df876792..896415f73 100644 --- a/pep-0160.txt +++ b/pep-0160.txt @@ -1,7 +1,7 @@ PEP: 160 Title: Python 1.6 Release Schedule Version: $Revision$ -Owner: Fred L. Drake, Jr. +Author: Fred L. Drake, Jr. Python-Version: 1.6 Status: Complete Type: Informational diff --git a/pep-0200.txt b/pep-0200.txt index 2f0524b75..c626b3696 100644 --- a/pep-0200.txt +++ b/pep-0200.txt @@ -1,7 +1,7 @@ PEP: 200 Title: Python 2.0 Release Schedule Version: $Revision$ -Owner: Jeremy Hylton +Author: Jeremy Hylton Python-Version: 2.0 Status: Final diff --git a/pep-0205.txt b/pep-0205.txt index 75ab99c9a..ccf5a14cc 100644 --- a/pep-0205.txt +++ b/pep-0205.txt @@ -1,7 +1,7 @@ PEP: 205 Title: Weak References Version: $Revision$ -Owner: Fred L. Drake, Jr. +Author: Fred L. Drake, Jr. Python-Version: 2.1 Status: Incomplete Type: Standards Track diff --git a/pep-0206.txt b/pep-0206.txt index 14b543df0..77f683b42 100644 --- a/pep-0206.txt +++ b/pep-0206.txt @@ -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 diff --git a/pep-0207.txt b/pep-0207.txt index b7bb3c1f3..b03b15275 100644 --- a/pep-0207.txt +++ b/pep-0207.txt @@ -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 diff --git a/pep-0208.txt b/pep-0208.txt index 01b3c985e..c4c50977a 100644 --- a/pep-0208.txt +++ b/pep-0208.txt @@ -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 diff --git a/pep-0230.txt b/pep-0230.txt new file mode 100644 index 000000000..6505e2c5f --- /dev/null +++ b/pep-0230.txt @@ -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: