]> granicus.if.org Git - python/commit
Fix problem discovered by Barry: if you hit ^C to
authorGuido van Rossum <guido@python.org>
Fri, 7 Nov 1997 19:20:34 +0000 (19:20 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 7 Nov 1997 19:20:34 +0000 (19:20 +0000)
commitf51815426e065740386b2a5b81c23832f11e27c7
tree03406031b672d80300e0583140f86f233a883d36
parentc1189eb52421ff384d6d9252bb1acc03016051e3
Fix problem discovered by Barry: if you hit ^C to
sys.stdin.readline(), you get a fatal error (no current thread).  This
is because there was a call to PyErr_CheckSignals() while there was no
current thread.  I wonder how many more of these we find...  I bnetter
go hunting for PyErr_CheckSignals() now...
Objects/fileobject.c