Add PEP 3099 -- Things that Will Not Change.
This commit is contained in:
parent
dc1f45bcd7
commit
a98221c42f
|
@ -43,6 +43,7 @@ Index by Category
|
|||
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 @@ Numerical Index
|
|||
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
|
||||
|
|
|
@ -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@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:
|
Loading…
Reference in New Issue