From 828f04ac3f0dd3b68b4dbf42a79ebb846d1de568 Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Fri, 31 Aug 2007 00:04:24 +0000 Subject: Issue #1066: implement PEP 3109, 2/3 of PEP 3134. --- Python/import.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/import.c') diff --git a/Python/import.c b/Python/import.c index 2ef6aec941..33cafd02b6 100644 --- a/Python/import.c +++ b/Python/import.c @@ -74,6 +74,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *); 3040 (added signature annotations) 3050 (print becomes a function) 3060 (PEP 3115 metaclass syntax) + 3070 (PEP 3109 raise changes) . */ #define MAGIC (3060 | ((long)'\r'<<16) | ((long)'\n'<<24)) -- cgit v1.2.1