Files
cpython/Python
Neal Norwitz f79e084e38 Fix SF #561858 Assertion with very long lists
if co_stacksize was > 32767 (the maximum value
which can be stored in 16 bits (signed)),
the PyCodeObject would be written wrong.
So on the second import (reading the .pyc)
would cause a crash.

Since we can't change the PYC magic, we
go on (silently), but don't write the file.
This means everything will work, but
a .pyc will not be written and the file will need
to be parsed on each import.

I will backport.
2002-06-01 18:26:22 +00:00
..
2000-05-02 18:34:30 +00:00
2002-04-30 04:05:33 +00:00
2002-03-28 20:18:48 +00:00
2002-01-23 15:53:08 +00:00
2002-01-28 15:13:21 +00:00
2002-02-27 13:31:58 +00:00
2001-11-09 22:02:48 +00:00
2002-03-25 12:33:56 +00:00
2001-11-28 22:07:30 +00:00
2002-03-05 13:56:23 +00:00
2002-03-29 14:47:18 +00:00