Add note about cleaning up namespace

This commit is contained in:
Neal Norwitz 2006-02-27 18:29:14 +00:00
parent ee1191f906
commit dc9835bebb
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ Core language
This will make list comprehensions more similar to generator comprehensions.
[x for x in 1, 2] will need to be: [x for x in (1, 2)]
- Lambdas will have to be parenthesized [23]_
* Builtin module init function names (PyMODINIT_FUNC) will be prefixed
with _Py (or Py). Currently they aren't namespace safe since the names
start with init.
To be removed: