1 Mar 2002 09:46
[ python-Bugs-496873 ] cPickle / time.struct_time loop
<noreply <at> sourceforge.net>
2002-03-01 08:46:11 GMT
2002-03-01 08:46:11 GMT
Bugs item #496873, was opened at 2001-12-26 21:18 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105470&aid=496873&group_id=5470 Category: Type/class unification Group: Python 2.2.1 candidate Status: Open Resolution: None Priority: 5 Submitted By: bixentxo (bixentxo) >Assigned to: Guido van Rossum (gvanrossum) Summary: cPickle / time.struct_time loop Initial Comment: The following code produces and endless loop on python 2.2 ( ok on python 2.1 ). The file being saved by cPickle.dump grows indefinetely. ----------------------------- import time, cPickle created = time.localtime() fd = open('/tmp/bla.pickle','w') cPickle.dump(created,fd) [...endless loop... ] ----------------------------------------------------------------------(Continue reading)
The problem is simply: when the frame being debugged is self.botframe, it
is impossible to continue - only "step" works. A "continue" command
functions as a step until you start debugging a frame below self.botframe.
It is less of a problem with pdb, but makes a GUI debugger clunky - if you
RSS Feed