[Python-checkins] r42615 - peps/trunk/pep-3000.txt

neal.norwitz python-checkins at python.org
Mon Feb 27 19:29:15 CET 2006


Author: neal.norwitz
Date: Mon Feb 27 19:29:14 2006
New Revision: 42615

Modified:
   peps/trunk/pep-3000.txt
Log:
Add note about cleaning up namespace

Modified: peps/trunk/pep-3000.txt
==============================================================================
--- peps/trunk/pep-3000.txt	(original)
+++ peps/trunk/pep-3000.txt	Mon Feb 27 19:29:14 2006
@@ -76,6 +76,9 @@
     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:
 


More information about the Python-checkins mailing list