commit | 828f04ac3f0dd3b68b4dbf42a79ebb846d1de568 | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Fri Aug 31 00:04:24 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Fri Aug 31 00:04:24 2007 +0000 |
tree | 21e25d3d969ce636c32539e4d4b5255dc4c85702 | |
parent | 150b7d7d02eca6970d792f3e6887f957a36b6ca2 [diff] [blame] |
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
diff --git a/Python/import.c b/Python/import.c index 2ef6aec..33cafd0 100644 --- a/Python/import.c +++ b/Python/import.c
@@ -74,6 +74,7 @@ 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))