This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, brandon.dixon
Date 2008-12-18.10:34:04
SpamBayes Score 5.3228314e-06
Marked as misclassified No
Message-id <1229596448.6.0.251857061903.issue4691@psf.upfronthosting.co.za>
In-reply-to
Content
You are using IDLE with the "-n" option, so the same interpreter session
is reused each time you hit F5.

The second run works because the Struct from the first run is still
present - but disappears of course when you restart IDLE.

It's not really caching, but normal manipulation of variables, just like
"a = 5" followed by "print a" works because 'a' is saved in-between.

I suggest to remove this "-n" option, a fresh interpreter is started
each time you press F5, and errors appear sooner...
History
Date User Action Args
2008-12-18 10:34:08amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, brandon.dixon
2008-12-18 10:34:08amaury.forgeotdarcsetmessageid: <1229596448.6.0.251857061903.issue4691@psf.upfronthosting.co.za>
2008-12-18 10:34:05amaury.forgeotdarclinkissue4691 messages
2008-12-18 10:34:04amaury.forgeotdarccreate