diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-02-07 11:33:49 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-02-07 11:33:49 (GMT) |
commit | bd3be8f0ca4fd70d53d9330489ba565f83530b3b (patch) | |
tree | 33762ec816df0a313706c6a919fbe3629751b0b5 /Python/import.c | |
parent | 9273ec726c1ae9f151d12bc21a1ad96e7c225b77 (diff) | |
download | cpython-bd3be8f0ca4fd70d53d9330489ba565f83530b3b.zip cpython-bd3be8f0ca4fd70d53d9330489ba565f83530b3b.tar.gz cpython-bd3be8f0ca4fd70d53d9330489ba565f83530b3b.tar.bz2 |
Fix to the UTF-8 encoder: it failed on 0-length input strings.
Fix for the UTF-8 decoder: it will now accept isolated surrogates
(previously it raised an exception which causes round-trips to
fail).
Added new tests for UTF-8 round-trip safety (we rely on UTF-8 for
marshalling Unicode objects, so we better make sure it works for
all Unicode code points, including isolated surrogates).
Bumped the PYC magic in a non-standard way -- please review. This
was needed because the old PYC format used illegal UTF-8 sequences
for isolated high surrogates which now raise an exception.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index ba7d5d5..e657b70 100644 --- a/Python/import.c +++ b/Python/import.c @@ -41,8 +41,27 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *); the Unicode -U option is in use. IMO (Tim's), that's a Bad Idea (quite apart from that the -U option doesn't work so isn't used anyway). + + XXX MAL, 2002-02-07: I had to modify the MAGIC due to a fix of the + UTF-8 encoder (it previously produced invalid UTF-8 for unpaired + high surrogates), so I simply bumped the month value to 20 (invalid + month) and set the day to 1. This should be recognizable by any + algorithm relying on the above scheme. Perhaps we should simply + start counting in increments of 10 from now on ?! + + Known values: + Python 1.5: 20121 + Python 1.5.1: 20121 + Python 1.5.2: 20121 + Python 2.0: 50823 + Python 2.0.1: 50823 + Python 2.1: 60202 + Python 2.1.1: 60202 + Python 2.1.2: 60202 + Python 2.2: 60717 + Python 2.3a0: 62001 */ -#define MAGIC (60717 | ((long)'\r'<<16) | ((long)'\n'<<24)) +#define MAGIC (62001 | ((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 |