[Python-checkins] r84686 - python/branches/py3k/Python/import.c

benjamin.peterson python-checkins at python.org
Fri Sep 10 23:51:44 CEST 2010


Author: benjamin.peterson
Date: Fri Sep 10 23:51:44 2010
New Revision: 84686

Log:
bump magic number for DELETE_DEREF

Modified:
   python/branches/py3k/Python/import.c

Modified: python/branches/py3k/Python/import.c
==============================================================================
--- python/branches/py3k/Python/import.c	(original)
+++ python/branches/py3k/Python/import.c	Fri Sep 10 23:51:44 2010
@@ -105,12 +105,13 @@
                      tag: cpython-32
        Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR)
                      tag: cpython-32
+       Python 3.2a2  3180 (add DELETE_DEREF)
 */
 
 /* If you change MAGIC, you must change TAG and you must insert the old value
    into _PyMagicNumberTags below.
 */
-#define MAGIC (3170 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24))
 #define TAG "cpython-32"
 #define CACHEDIR "__pycache__"
 /* Current magic word and string tag as globals. */


More information about the Python-checkins mailing list