2006-04-04 07:59:11 -04:00
|
|
|
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
|
|
|
|
========
|
|
|
|
|
2006-06-01 14:49:59 -04:00
|
|
|
Some ideas are just bad. While some thoughts on Python evolution are
|
|
|
|
constructive, some go against the basic tenets of Python so
|
|
|
|
egregiously that it would be like asking someone to run in a circle:
|
|
|
|
it gets you nowhere, even for Python 3000, where extraordinary
|
|
|
|
proposals are allowed. 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.
|
|
|
|
|
|
|
|
If you think you should suggest any of the listed ideas it would be
|
|
|
|
better to just step away from the computer, go outside, and enjoy
|
|
|
|
yourself. Being active outdoors by napping in a nice patch of grass
|
|
|
|
is more productive than bringing up a beating-a-dead-horse idea and
|
|
|
|
having people tell you how dead the idea is. Consider yourself warned.
|
2006-04-04 07:59:11 -04:00
|
|
|
|
|
|
|
|
|
|
|
Core language
|
|
|
|
=============
|
|
|
|
|
2006-08-25 10:53:02 -04:00
|
|
|
* Python 3000 will not be case-insensitive.
|
|
|
|
|
2006-08-13 08:24:49 -04:00
|
|
|
* Python 3000 will not be a rewrite from scratch.
|
|
|
|
|
|
|
|
It will also not use C++ or another language different from C
|
|
|
|
as implementation language. Rather, there will be a gradual
|
|
|
|
transmogrification of the codebase. There's an excellent essay
|
|
|
|
by Joel Spolsky explaining why:
|
|
|
|
http://www.joelonsoftware.com/articles/fog0000000069.html
|
|
|
|
|
2006-06-01 14:49:59 -04:00
|
|
|
* ``self`` will not become implicit.
|
|
|
|
|
|
|
|
Having ``self`` be explicit is a *good thing*. It makes the code
|
|
|
|
clear by removing ambiguity about how a variable resolves. It also
|
|
|
|
makes the difference between functions and methods small.
|
|
|
|
|
|
|
|
Thread: "Draft proposal: Implicit self in Python 3.0"
|
|
|
|
http://mail.python.org/pipermail/python-dev/2006-January/059468.html
|
|
|
|
|
2006-04-27 06:51:34 -04:00
|
|
|
* ``lambda`` will not be renamed.
|
|
|
|
|
2006-06-01 14:49:59 -04:00
|
|
|
At one point lambda was slated for removal in Python 3000.
|
|
|
|
Unfortunately no one was able to come up with a better way of
|
|
|
|
providing anonymous functions. And so lambda is here to stay.
|
|
|
|
|
|
|
|
But it is here to stay as-is. Adding support for statements is a
|
|
|
|
non-starter. It would require allowing multi-line lambda
|
|
|
|
expressions which would mean a multi-line expression could suddenly
|
|
|
|
exist. That would allow for multi-line arguments to function
|
|
|
|
calls, for instance. That is just plain ugly.
|
|
|
|
|
2006-04-27 06:51:34 -04:00
|
|
|
Thread: "genexp syntax / lambda",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-April/001042.html
|
|
|
|
|
2006-04-04 07:59:11 -04:00
|
|
|
* Python will not have programmable syntax.
|
|
|
|
|
2006-04-05 03:17:23 -04:00
|
|
|
Thread: "It's a statement! It's a function! It's BOTH!",
|
2006-04-04 07:59:11 -04:00
|
|
|
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
|
|
|
|
|
2006-04-27 05:47:03 -04:00
|
|
|
* Strings will stay iterable.
|
|
|
|
|
|
|
|
Thread: "Making strings non-iterable",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-April/000759.html
|
|
|
|
|
2006-04-27 06:13:55 -04:00
|
|
|
* There will be no syntax to sort the result of a generator expression
|
|
|
|
or list comprehension. ``sorted()`` covers all use cases.
|
|
|
|
|
|
|
|
Thread: "Adding sorting to generator comprehension",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-April/001295.html
|
|
|
|
|
2006-05-01 13:26:22 -04:00
|
|
|
* Python 3000 source code won't use non-ASCII Unicode characters for
|
|
|
|
anything except string literals or comments.
|
2006-04-28 16:05:59 -04:00
|
|
|
|
|
|
|
Thread: sets in P3K?
|
2006-06-26 12:54:39 -04:00
|
|
|
http://mail.python.org/pipermail/python-3000/2006-April/001474.html
|
2006-04-28 16:05:59 -04:00
|
|
|
|
2006-05-01 16:04:27 -04:00
|
|
|
* Slices and extended slices won't go away (even if the __getslice__
|
|
|
|
and __setslice__ APIs may be replaced) nor will they return views
|
|
|
|
for the standard object types.
|
|
|
|
|
|
|
|
Thread: Future of slices
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-May/001563.html
|
|
|
|
|
2006-05-03 00:58:59 -04:00
|
|
|
* It will not be forbidden to reuse a loop variable inside the loop's
|
|
|
|
suite.
|
|
|
|
|
|
|
|
Thread: elimination of scope bleeding of iteration variables
|
|
|
|
http://mail.python.org/pipermail/python-dev/2006-May/064761.html
|
|
|
|
|
2006-06-01 14:49:59 -04:00
|
|
|
* The parser won't be more complex than LL(1).
|
|
|
|
|
|
|
|
Simple is better than complex. This idea extends to the parser.
|
|
|
|
Restricting Python's grammar to an LL(1) parser is a blessing,
|
|
|
|
not a curse. It puts us in handcuffs that prevent us from going
|
|
|
|
overboard and ending up with funky grammar rules like some other
|
|
|
|
dynamic languages that will go unnamed, like Perl.
|
|
|
|
|
|
|
|
* No braces.
|
|
|
|
|
|
|
|
This is so obvious that it doesn't need a reference to a mailing
|
|
|
|
list. Do ``from __future__ import braces`` to get a definitive
|
|
|
|
answer on this subject.
|
|
|
|
|
2006-07-02 16:33:26 -04:00
|
|
|
* Referencing the global name ``foo`` will not be spelled ``globals.foo``.
|
2006-07-07 03:50:39 -04:00
|
|
|
The ``global`` statement will stay.
|
2006-07-02 16:33:26 -04:00
|
|
|
|
2006-07-07 03:50:39 -04:00
|
|
|
Threads: "replace globals() and global statement with global builtin
|
2006-07-02 16:33:26 -04:00
|
|
|
object",
|
2006-07-07 03:50:39 -04:00
|
|
|
http://mail.python.org/pipermail/python-3000/2006-July/002485.html,
|
|
|
|
"Explicit Lexical Scoping (pre-PEP?)",
|
|
|
|
http://mail.python.org/pipermail/python-dev/2006-July/067111.html
|
2006-07-02 16:33:26 -04:00
|
|
|
|
2006-07-05 04:28:49 -04:00
|
|
|
* There will be no alternative binding operators such as ``:=``.
|
|
|
|
|
|
|
|
Thread: "Explicit Lexical Scoping (pre-PEP?)",
|
|
|
|
http://mail.python.org/pipermail/python-dev/2006-July/066995.html
|
|
|
|
|
2006-07-09 17:29:48 -04:00
|
|
|
* We won't be removing container literals.
|
|
|
|
That is, {expr: expr, ...}, [expr, ...] and (expr, ...) will stay.
|
|
|
|
|
|
|
|
Thread: "No Container Literals",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-July/002550.html
|
2006-04-04 07:59:11 -04:00
|
|
|
|
2006-04-04 13:50:24 -04:00
|
|
|
Builtins
|
|
|
|
========
|
|
|
|
|
2006-04-05 03:17:23 -04:00
|
|
|
* ``hash()`` won't become an attribute since attributes should be cheap
|
|
|
|
to compute, which isn't necessarily the case for a hash.
|
2006-04-04 13:50:24 -04:00
|
|
|
|
|
|
|
Thread: "hash as attribute/property",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-April/000362.html
|
|
|
|
|
|
|
|
|
2006-04-04 07:59:11 -04:00
|
|
|
Standard types
|
|
|
|
==============
|
|
|
|
|
2006-04-16 18:09:59 -04:00
|
|
|
* Iterating over a dictionary will continue to yield the keys.
|
2006-04-04 07:59:11 -04:00
|
|
|
|
|
|
|
Thread: "Iterating over a dict",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-April/000283.html
|
2006-06-02 17:52:33 -04:00
|
|
|
|
|
|
|
Thread: have iter(mapping) generate (key, value) pairs
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-June/002368.html
|
2006-04-04 07:59:11 -04:00
|
|
|
|
2006-05-22 13:06:18 -04:00
|
|
|
* There will be no ``frozenlist`` type.
|
|
|
|
|
|
|
|
Thread: "Immutable lists",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-May/002219.html
|
|
|
|
|
2006-07-04 15:55:21 -04:00
|
|
|
* ``int`` will not support subscripts yielding a range.
|
|
|
|
|
|
|
|
Thread: "xrange vs. int.__getslice__",
|
|
|
|
http://mail.python.org/pipermail/python-3000/2006-June/002450.html
|
|
|
|
|
2006-04-04 07:59:11 -04:00
|
|
|
|
|
|
|
Coding style
|
|
|
|
============
|
|
|
|
|
2006-04-05 17:21:57 -04:00
|
|
|
* The (recommended) maximum line width will remain 80 characters,
|
|
|
|
for both C and Python code.
|
2006-04-04 07:59:11 -04:00
|
|
|
|
|
|
|
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:
|