[Python-checkins] r52837 - peps/trunk/pep-3100.txt

georg.brandl python-checkins at python.org
Thu Nov 23 18:48:50 CET 2006


Author: georg.brandl
Date: Thu Nov 23 18:48:47 2006
New Revision: 52837

Modified:
   peps/trunk/pep-3100.txt
Log:
sys.id and sys.intern are questionable.



Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Thu Nov 23 18:48:47 2006
@@ -175,7 +175,7 @@
 * ``coerce()``: no longer needed [2]_
 * ``execfile()``, ``reload()``: use ``exec()`` [2]_
 * ``input()``: use ``eval(sys.stdin.readline())`` [2]_ [done]
-* ``intern()``, ``id()``: put in ``sys`` [2]_
+* ``intern()``, ``id()``: put in ``sys`` (?) [2]_, [31]_
 * ``map()``, ``filter()``: use list comprehensions instead??? [1]_, [9]_
   (Actually these can stay.)
 * ``reduce()``: write a loop instead [2]_, [9]_ [done]
@@ -334,6 +334,9 @@
 .. [23] PEP 308 ("Conditional Expressions")
    http://www.python.org/dev/peps/pep-0308
 
+.. [31] SF patch "sys.id() and sys.intern()"
+   http://www.python.org/sf/1601678
+
 .. [#pep328] PEP 328 (Imports: Multi-Line and Absolute/Relative)
    http://www.python.org/dev/peps/pep-0328
 


More information about the Python-checkins mailing list