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.

classification
Title: Problems in IDLE Browsers & Viewers
Type: Stage:
Components: IDLE Versions: Python 2.3
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: gvanrossum, nnorwitz
Priority: low Keywords:

Created on 2002-09-12 20:47 by nnorwitz, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Messages (6)
msg12380 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-09-12 20:47
ClassBrowser and PathBrowser mains don't work.  PyShell
is imported as a module, then an flist attribute is
referenced which is not in the module.  Not sure if
PyShell the class should be used and if so, how it
should work.  Also mainloop() is not defined.  Should
it be some_tk_object.mainloop()?
~ lines:  ClassBrowser.py:215 & PathBrowser.py:87

Another (cut-n-paste?) problem is in OldStackViewer &
StackViewer.  A function was apparently refactored from
a method, since self is referenced.  Should the if
statements be removed?
~ lines: OldStackViewer.py:179 & StackViewer.py:111

In SearchDialogBase.py:126, the local variable f is not
used, should it be removed?

Finally, should these bug reports go to IDLEfork?  What
about bug fixes?  Should changes
be made in both places?  (I'm not a developer on IDLEfork.)
msg12381 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-09-12 21:17
Logged In: YES 
user_id=6380

Those mains were only used for testing. I'd like to keep
them around, I'll fix them when I need them. Or you can fix
them, I don't care.

I don't know what happened to get_stack(). It can't work?! 
What does idlefork do?

Sure, remove that variable f.

Do you want to be a developer on idlefork? They can use some
help! I hope that Python 2.3 can incorporate idlefork's
codebase, so we shouldn't be backing on Tools/idle too much...
msg12382 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-09-12 22:14
Logged In: YES 
user_id=33168

You can make me an idlefork developer.  Probably won't do
much on it.  But if the changes are supposed to flow from
idlefork into python, it will be easier if I change idlefork.
msg12383 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-09-13 00:49
Logged In: YES 
user_id=33168

Moved to bugs.
msg12384 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-09-13 04:22
Logged In: YES 
user_id=6380

OK, you're an idlefork developer now.
msg12385 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-09-17 21:47
Logged In: YES 
user_id=33168

Closing.  These changes will be made to idlefork.
History
Date User Action Args
2022-04-10 16:05:40adminsetgithub: 37173
2002-09-12 20:47:28nnorwitzcreate