mirror of https://github.com/python/cpython
Update import.c's MAGIC value for the new raise syntax (as opposed to merely updating the comment).
This commit is contained in:
parent
7576583903
commit
32347fb29b
|
@ -77,7 +77,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *);
|
|||
3070 (PEP 3109 raise changes)
|
||||
.
|
||||
*/
|
||||
#define MAGIC (3060 | ((long)'\r'<<16) | ((long)'\n'<<24))
|
||||
#define MAGIC (3070 | ((long)'\r'<<16) | ((long)'\n'<<24))
|
||||
|
||||
/* Magic word as global; note that _PyImport_Init() can change the
|
||||
value of this global to accommodate for alterations of how the
|
||||
|
|
Loading…
Reference in New Issue