Add note about cleaning up namespace
This commit is contained in:
parent
ee1191f906
commit
dc9835bebb
|
@ -76,6 +76,9 @@ Core language
|
||||||
This will make list comprehensions more similar to generator comprehensions.
|
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)]
|
[x for x in 1, 2] will need to be: [x for x in (1, 2)]
|
||||||
- Lambdas will have to be parenthesized [23]_
|
- 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:
|
To be removed:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue