[Python-checkins] python/nondist/peps pep-0346.txt, NONE, 1.1 pep-0000.txt, 1.310, 1.311

goodger@users.sourceforge.net goodger at users.sourceforge.net
Sun May 29 00:44:27 CEST 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23178

Modified Files:
	pep-0000.txt 
Added Files:
	pep-0346.txt 
Log Message:
added PEP 346, User Defined ("with") Statements, by Nick Coghlan; withdrawn by the author

--- NEW FILE: pep-0346.txt ---
PEP: 346
Title: User Defined ("``with``") Statements
Version: $Revision: 1.1 $
Last-Modified: $Date: 2005/05/28 22:44:24 $
Author: Nick Coghlan <ncoghlan at gmail.com>
Status: Withdrawn
Type: Standards Track
Content-Type: text/x-rst
Created: 6-May-2005
Python-Version: 2.5
Post-History:


Abstract
========

This PEP is a combination of PEP 310's "Reliable Acquisition/Release
Pairs" with the "Anonymous Block Statements" of Guido's PEP 340.  This
PEP aims to take the good parts of PEP 340, blend them with parts of
[...1264 lines suppressed...]
.. [7] A rant against flow control macros
   (http://blogs.msdn.com/oldnewthing/archive/2005/01/06/347666.aspx)

.. [8] Why doesn't C# have a 'with' statement?
   (http://msdn.microsoft.com/vcsharp/programming/language/ask/withstatement/)


Copyright
=========

This document has been placed in the public domain.


..
   Local Variables:
   mode: indented-text
   indent-tabs-mode: nil
   sentence-end-double-space: t
   fill-column: 70
   End:

Index: pep-0000.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0000.txt,v
retrieving revision 1.310
retrieving revision 1.311
diff -u -d -r1.310 -r1.311
--- pep-0000.txt	23 May 2005 13:08:09 -0000	1.310
+++ pep-0000.txt	28 May 2005 22:44:24 -0000	1.311
@@ -213,6 +213,7 @@
  SR  326  A Case for Top and Bottom Values             Carlson, Reedy
  SR  329  Treating Builtins as Constants in the Standard Library  Hettinger
  SR  340  Anonymous Block Statements                   GvR
+ SR  346  User Defined ("with") Statements             Coghlan
  SR  666  Reject Foolish Indentation                   Creighton
 
 
@@ -386,6 +387,7 @@
  S   343  Anonymous Block Redux                        GvR
  S   344  Exception Chaining and Embedded Tracebacks   Yee
  S   345  Metadata for Python Software Packages 1.2    Jones
+ SR  346  User Defined ("with") Statements             Coghlan
  SR  666  Reject Foolish Indentation                   Creighton
  S   754  IEEE 754 Floating Point Special Values       Warnes
  I  3000  Python 3.0 Plans                             Kuchling, Cannon
@@ -419,7 +421,7 @@
     Cannon, Brett            brett at python.org
     Carlson, Josiah          jcarlson at uci.edu
     Carroll, W Isaac         icarroll at pobox.com
-    Coghlan, Nick            ncoghlan at email.com
+    Coghlan, Nick            ncoghlan at gmail.com
     Cole, Dave               djc at object-craft.com.au
     Craig, Christopher       python-pep at ccraig.org
     Creighton, Laura         lac at strakt.com



More information about the Python-checkins mailing list