Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6246d6d

Browse files
committed
bump magic number for DELETE_DEREF
1 parent ba117ef commit 6246d6d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Python/import.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,13 @@ typedef unsigned short mode_t;
105105
tag: cpython-32
106106
Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR)
107107
tag: cpython-32
108+
Python 3.2a2 3180 (add DELETE_DEREF)
108109
*/
109110

110111
/* If you change MAGIC, you must change TAG and you must insert the old value
111112
into _PyMagicNumberTags below.
112113
*/
113-
#define MAGIC (3170 | ((long)'\r'<<16) | ((long)'\n'<<24))
114+
#define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24))
114115
#define TAG "cpython-32"
115116
#define CACHEDIR "__pycache__"
116117
/* Current magic word and string tag as globals. */

0 commit comments

Comments
 (0)