[Python-checkins] peps: Accept PEP 415

nick.coghlan python-checkins at python.org
Mon May 14 14:08:53 CEST 2012


http://hg.python.org/peps/rev/f8e5111b941d
changeset:   4371:f8e5111b941d
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Mon May 14 22:08:40 2012 +1000
summary:
  Accept PEP 415

files:
  pep-0415.txt |  13 ++++++++++++-
  pep-3144.txt |  14 ++++++++++----
  2 files changed, 22 insertions(+), 5 deletions(-)


diff --git a/pep-0415.txt b/pep-0415.txt
--- a/pep-0415.txt
+++ b/pep-0415.txt
@@ -4,12 +4,13 @@
 Last-Modified: $Date$
 Author: Benjamin Peterson <benjamin at python.org>
 BDFL-Delegate: Nick Coghlan
-Status: Draft
+Status: Accepted
 Type: Standards Track
 Content-Type: text/x-rst
 Created: 26-Feb-2012
 Python-Version: 3.3
 Post-History: 26-Feb-2012
+Resolution: http://mail.python.org/pipermail/python-dev/2012-May/119467.html
 
 
 Abstract
@@ -20,6 +21,13 @@
 syntax. This PEP proposes to implement context and cause suppression
 differently.
 
+
+PEP Acceptance
+==============
+
+This PEP was accepted by Nick Coghlan on the 14th of May, 2012.
+
+
 Rationale
 =========
 
@@ -40,6 +48,7 @@
 ``__cause__`` should be set to ``Ellipsis``. Using ``Ellipsis`` by default for
 ``__cause__`` makes it asymmetrical with ``__context__``.
 
+
 Proposal
 ========
 
@@ -62,6 +71,7 @@
 where ``exc.__cause__ = cause`` implicitly sets
 ``exc.__suppress_context__``.
 
+
 Patches
 =======
 
@@ -74,6 +84,7 @@
 .. _issue 14133:
    http://bugs.python.org/issue14133
 
+
 Copyright
 =========
 
diff --git a/pep-3144.txt b/pep-3144.txt
--- a/pep-3144.txt
+++ b/pep-3144.txt
@@ -5,11 +5,12 @@
 Author: Peter Moody <pmoody at google.com>
 BDFL-Delegate: Nick Coghlan
 Discussions-To: <ipaddr-py-dev at googlegroups.com>
-Status: Draft
+Status: Accepted
 Type: Standards Track
 Content-Type: text/plain
 Created: 6-Feb-2012
 Python-Version: 3.3
+Resolution: Refer to PEP text
 
 
 Abstract:
@@ -17,6 +18,11 @@
     This PEP proposes a design and for an IP address manipulation module for
     python.
 
+PEP Acceptance:
+
+    This PEP was accepted by Nick Coghlan (on the BDFL's behalf) on May
+    13th, 2012, based on the PEP text and the reference implementation at
+
 Motivation:
 
     Several very good IP address modules for python already exist.
@@ -55,9 +61,9 @@
     * A few attributes were renamed to disambiguate their purpose as
       well. (eg. network, network_address)
 
-    * A number of methods and functions which returned containers in ipaddr now
-    return iterators. This includes, subnets, address_exclude,
-    summarize_address_range and collapse_address_list.
+    * A number of methods and functions which returned containers in ipaddr
+      now return iterators. This includes, subnets, address_exclude,
+      summarize_address_range and collapse_address_list.
 
 
     Due to the backwards incompatible API changes between ipaddress and ipaddr,

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list