[issue3938] Clearing globals; interpreter -- IDLE difference

2014-06-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: I decided that anyone with a use case for a bare interpreter, if there is such a person, would and should be using the console, and that a closed issue is sufficient documentation for now. -- resolution: -> wont fix stage: test needed -> resolved stat

[issue3938] Clearing globals; interpreter -- IDLE difference

2014-06-09 Thread Mark Lawrence
Mark Lawrence added the comment: The output from IDLE is still the same using both 3.4.1 and 3.5. FTR the output from iPython 2.0.0 appears the same, although it's pretty printed. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tr

[issue3938] Clearing globals; interpreter -- IDLE difference

2013-03-28 Thread Roger Serwy
Changes by Roger Serwy : -- nosy: +roger.serwy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue3938] Clearing globals; interpreter -- IDLE difference

2013-03-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I would like to discuss it with other IDLE devs (Roger) after fixing more important issues. -- ___ Python tracker ___ __

[issue3938] Clearing globals; interpreter -- IDLE difference

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Terry, do you still think this is important to fix? -- nosy: +georg.brandl versions: +Python 2.7, Python 3.3, Python 3.4 -Python 3.0 ___ Python tracker ___

[issue3938] Clearing globals; interpreter -- IDLE difference

2009-04-26 Thread Daniel Diniz
Daniel Diniz added the comment: If intended, should be documented somewhere, right? -- nosy: +ajaksu2, gpolo stage: -> test needed type: -> behavior ___ Python tracker ___

[issue3938] Clearing globals; interpreter -- IDLE difference

2008-09-22 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- priority: -> low ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mai

[issue3938] Clearing globals; interpreter -- IDLE difference

2008-09-22 Thread Terry J. Reedy
New submission from Terry J. Reedy <[EMAIL PROTECTED]>: Interpreter: >>> globals() {'__builtins__': , '__name__': '__main__', '__doc__': None, '__package__': None} >>> globals().clear() >>> globals() Traceback (most recent call last): File "", line 1, in NameError: name 'globals' is not define