[Python-checkins] r43625 - peps/trunk/pep-0000.txt peps/trunk/pep-3099.txt

georg.brandl python-checkins at python.org
Tue Apr 4 13:59:11 CEST 2006


Author: georg.brandl
Date: Tue Apr  4 13:59:11 2006
New Revision: 43625

Added:
   peps/trunk/pep-3099.txt
Modified:
   peps/trunk/pep-0000.txt
Log:
Add PEP 3099 -- Things that Will Not Change.



Modified: peps/trunk/pep-0000.txt
==============================================================================
--- peps/trunk/pep-0000.txt	(original)
+++ peps/trunk/pep-0000.txt	Tue Apr  4 13:59:11 2006
@@ -43,6 +43,7 @@
  I    11  Removing support for little used platforms   von Loewis
  I    12  Sample reStructuredText PEP Template         Goodger, Warsaw
  P   347  Migrating the Python CVS to Subversion       von Löwis
+ I  3099  Things that will Not Change in Python 3000   Brandl
 
  Other Informational PEPs
 
@@ -415,6 +416,7 @@
  SR  666  Reject Foolish Indentation                   Creighton
  S   754  IEEE 754 Floating Point Special Values       Warnes
  I  3000  Python 3.0 Plans                             Kuchling, Cannon
+ I  3099  Things that will Not Change in Python 3000   Brandl
 
 
 Key

Added: peps/trunk/pep-3099.txt
==============================================================================
--- (empty file)
+++ peps/trunk/pep-3099.txt	Tue Apr  4 13:59:11 2006
@@ -0,0 +1,67 @@
+PEP: 3099
+Title: Things that will Not Change in Python 3000
+Version: $Revision$
+Last-Modified: $Date$
+Author: Georg Brandl <g.brandl at gmx.net>
+Status: Draft
+Type: Informational
+Content-Type: text/x-rst
+Created: 04-Apr-2006
+
+
+Abstract
+========
+
+This PEP tries to list all BDFL pronouncements on Python 3000 that
+refer to changes that will not happen and new features that will not
+be introduced, sorted by topics, along with a short explanation or a
+reference to the relevant thread on the python-3000 mailing list.
+
+
+Core language
+=============
+
+* Python will not have programmable syntax.
+
+   Thread: "It's a statement! It's a function! It's BOTH!"
+   http://mail.python.org/pipermail/python-3000/2006-April/000286.html
+
+* There won't be a syntax for ``zip()``-style parallel iteration.
+
+   Thread: "Parallel iteration syntax",
+   http://mail.python.org/pipermail/python-3000/2006-March/000210.html
+
+
+Standard types
+==============
+
+* Iterating over a dictionary will yield the keys.
+
+   Thread: "Iterating over a dict",
+   http://mail.python.org/pipermail/python-3000/2006-April/000283.html
+
+
+Coding style
+============
+
+* The maximum line width will be 80 characters.
+
+   Thread: "C style guide",
+   http://mail.python.org/pipermail/python-3000/2006-March/000131.html
+
+
+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
+   coding: utf-8
+   End:


More information about the Python-checkins mailing list