/
opt
/
imh
/
python3.13
/
lib
/
python3.13
/
idlelib
/
/opt/imh/python3.13/lib/python3.13/idlelib
mkdir
upload
Name
Size
Mode
Actions
Icons/
-
0755
rm
__pycache__/
-
0755
rm
autocomplete.py
9354
0644
edit
dl
rm
autocomplete_w.py
20863
0644
edit
dl
rm
autoexpand.py
3216
0644
edit
dl
rm
browser.py
8588
0644
edit
dl
rm
calltip.py
7267
0644
edit
dl
rm
calltip_w.py
7083
0644
edit
dl
rm
ChangeLog
56360
0644
edit
dl
rm
codecontext.py
11420
0644
edit
dl
rm
colorizer.py
14783
0644
edit
dl
rm
config-extensions.def
2266
0644
edit
dl
rm
config-highlight.def
2864
0644
edit
dl
rm
config-keys.def
10910
0644
edit
dl
rm
config-main.def
3168
0644
edit
dl
rm
config.py
38403
0644
edit
dl
rm
configdialog.py
105303
0644
edit
dl
rm
config_key.py
15230
0644
edit
dl
rm
CREDITS.txt
2148
0644
edit
dl
rm
debugger.py
20997
0644
edit
dl
rm
debugger_r.py
12115
0644
edit
dl
rm
debugobj.py
4177
0644
edit
dl
rm
debugobj_r.py
1082
0644
edit
dl
rm
delegator.py
1044
0644
edit
dl
rm
dynoption.py
1993
0644
edit
dl
rm
editor.py
69557
0644
edit
dl
rm
extend.txt
3632
0644
edit
dl
rm
filelist.py
3871
0644
edit
dl
rm
format.py
15777
0644
edit
dl
rm
grep.py
7521
0644
edit
dl
rm
help.html
60566
0644
edit
dl
rm
help.py
11843
0644
edit
dl
rm
help_about.py
9023
0644
edit
dl
rm
history.py
4065
0644
edit
dl
rm
HISTORY.txt
10313
0644
edit
dl
rm
hyperparser.py
12889
0644
edit
dl
rm
idle.bat
177
0644
edit
dl
rm
idle.py
454
0644
edit
dl
rm
idle.pyw
570
0644
edit
dl
rm
iomenu.py
16159
0644
edit
dl
rm
macosx.py
9290
0644
edit
dl
rm
mainmenu.py
3938
0644
edit
dl
rm
multicall.py
18652
0644
edit
dl
rm
NEWS2x.txt
27172
0644
edit
dl
rm
News3.txt
56818
0644
edit
dl
rm
outwin.py
5705
0644
edit
dl
rm
parenmatch.py
7204
0644
edit
dl
rm
pathbrowser.py
3093
0644
edit
dl
rm
percolator.py
3568
0644
edit
dl
rm
pyparse.py
19864
0644
edit
dl
rm
pyshell.py
62484
0755
edit
dl
rm
query.py
15067
0644
edit
dl
rm
README.txt
11653
0644
edit
dl
rm
redirector.py
6832
0644
edit
dl
rm
replace.py
9798
0644
edit
dl
rm
rpc.py
21078
0644
edit
dl
rm
run.py
21877
0644
edit
dl
rm
runscript.py
8273
0644
edit
dl
rm
scrolledlist.py
4478
0644
edit
dl
rm
search.py
5567
0644
edit
dl
rm
searchbase.py
7852
0644
edit
dl
rm
searchengine.py
7372
0644
edit
dl
rm
sidebar.py
20327
0644
edit
dl
rm
squeezer.py
12834
0644
edit
dl
rm
stackviewer.py
4016
0644
edit
dl
rm
statusbar.py
1474
0644
edit
dl
rm
textview.py
6808
0644
edit
dl
rm
TODO.txt
8477
0644
edit
dl
rm
tooltip.py
6665
0644
edit
dl
rm
tree.py
16773
0644
edit
dl
rm
undo.py
11016
0644
edit
dl
rm
util.py
1312
0644
edit
dl
rm
window.py
2616
0644
edit
dl
rm
zoomheight.py
4203
0644
edit
dl
rm
zzdummy.py
2005
0644
edit
dl
rm
__init__.py
396
0644
edit
dl
rm
__main__.py
107
0644
edit
dl
rm
Edit:
/opt/imh/python3.13/lib/python3.13/idlelib/browser.py
(8588B)
"""Module browser. XXX TO DO: - reparse when source changed (maybe just a button would be OK?) (or recheck on window popup) - add popup menu with more options (e.g. doc strings, base classes, imports) - add base classes to class browser tree """ import os import pyclbr import sys from idlelib.config import idleConf from idlelib import pyshell from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas from idlelib.util import py_extensions from idlelib.window import ListedToplevel file_open = None # Method...Item and Class...Item use this. # Normally pyshell.flist.open, but there is no pyshell.flist for htest. # The browser depends on pyclbr and importlib which do not support .pyi files. browseable_extension_blocklist = ('.pyi',) def is_browseable_extension(path): _, ext = os.path.splitext(path) ext = os.path.normcase(ext) return ext in py_extensions and ext not in browseable_extension_blocklist def transform_children(child_dict, modname=None): """Transform a child dictionary to an ordered sequence of objects. The dictionary maps names to pyclbr information objects. Filter out imported objects. Augment class names with bases. The insertion order of the dictionary is assumed to have been in line number order, so sorting is not necessary. The current tree only calls this once per child_dict as it saves TreeItems once created. A future tree and tests might violate this, so a check prevents multiple in-place augmentations. """ obs = [] # Use list since values should already be sorted. for key, obj in child_dict.items(): if modname is None or obj.module == modname: if hasattr(obj, 'super') and obj.super and obj.name == key: # If obj.name != key, it has already been suffixed. supers = [] for sup in obj.super: if isinstance(sup, str): sname = sup else: sname = sup.name if sup.module != obj.module: sname = f'{sup.module}.{sname}' supers.append(sname) obj.name += '({})'.format(', '.join(supers)) obs.append(obj) return obs class ModuleBrowser: """Browse module classes and functions in IDLE. """ # This class is also the base class for pathbrowser.PathBrowser. # Init and close are inherited, other methods are overridden. # PathBrowser.__init__ does not call __init__ below. def __init__(self, master, path, *, _htest=False, _utest=False): """Create a window for browsing a module's structure. Args: master: parent for widgets. path: full path of file to browse. _htest - bool; change box location when running htest. -utest - bool; suppress contents when running unittest. Global variables: file_open: Function used for opening a file. Instance variables: name: Module name. file: Full path and module with supported extension. Used in creating ModuleBrowserTreeItem as the rootnode for the tree and subsequently in the children. """ self.master = master self.path = path self._htest = _htest self._utest = _utest self.init() def close(self, event=None): "Dismiss the window and the tree nodes." self.top.destroy() self.node.destroy() def init(self): "Create browser tkinter widgets, including the tree." global file_open root = self.master flist = (pyshell.flist if not (self._htest or self._utest) else pyshell.PyShellFileList(root)) file_open = flist.open pyclbr._modules.clear() # create top self.top = top = ListedToplevel(root) top.protocol("WM_DELETE_WINDOW", self.close) top.bind("<Escape>", self.close) if self._htest: # place dialog below parent if running htest top.geometry("+%d+%d" % (root.winfo_rootx(), root.winfo_rooty() + 200)) self.settitle() top.focus_set() # create scrolled canvas theme = idleConf.CurrentTheme() background = idleConf.GetHighlight(theme, 'normal')['background'] sc = ScrolledCanvas(top, bg=background, highlightthickness=0, takefocus=1) sc.frame.pack(expand=1, fill="both") item = self.rootnode() self.node = node = TreeNode(sc.canvas, None, item) if not self._utest: node.update() node.expand() def settitle(self): "Set the window title." self.top.wm_title("Module Browser - " + os.path.basename(self.path)) self.top.wm_iconname("Module Browser") def rootnode(self): "Return a ModuleBrowserTreeItem as the root of the tree." return ModuleBrowserTreeItem(self.path) class ModuleBrowserTreeItem(TreeItem): """Browser tree for Python module. Uses TreeItem as the basis for the structure of the tree. Used by both browsers. """ def __init__(self, file): """Create a TreeItem for the file. Args: file: Full path and module name. """ self.file = file def GetText(self): "Return the module name as the text string to display." return os.path.basename(self.file) def GetIconName(self): "Return the name of the icon to display." return "python" def GetSubList(self): "Return ChildBrowserTreeItems for children." return [ChildBrowserTreeItem(obj) for obj in self.listchildren()] def OnDoubleClick(self): "Open a module in an editor window when double clicked." if not is_browseable_extension(self.file): return if not os.path.exists(self.file): return file_open(self.file) def IsExpandable(self): "Return True if Python file." return is_browseable_extension(self.file) def listchildren(self): "Return sequenced classes and functions in the module." if not is_browseable_extension(self.file): return [] dir, base = os.path.split(self.file) name, _ = os.path.splitext(base) try: tree = pyclbr.readmodule_ex(name, [dir] + sys.path) except ImportError: return [] return transform_children(tree, name) class ChildBrowserTreeItem(TreeItem): """Browser tree for child nodes within the module. Uses TreeItem as the basis for the structure of the tree. """ def __init__(self, obj): "Create a TreeItem for a pyclbr class/function object." self.obj = obj self.name = obj.name self.isfunction = isinstance(obj, pyclbr.Function) def GetText(self): "Return the name of the function/class to display." name = self.name if self.isfunction: return "def " + name + "(...)" else: return "class " + name def GetIconName(self): "Return the name of the icon to display." if self.isfunction: return "python" else: return "folder" def IsExpandable(self): "Return True if self.obj has nested objects." return self.obj.children != {} def GetSubList(self): "Return ChildBrowserTreeItems for children." return [ChildBrowserTreeItem(obj) for obj in transform_children(self.obj.children)] def OnDoubleClick(self): "Open module with file_open and position to lineno." try: edit = file_open(self.obj.file) edit.gotoline(self.obj.lineno) except (OSError, AttributeError): pass def _module_browser(parent): # htest # if len(sys.argv) > 1: # If pass file on command line. file = sys.argv[1] else: file = __file__ # Add nested objects for htest. class Nested_in_func(TreeNode): def nested_in_class(): pass def closure(): class Nested_in_closure: pass ModuleBrowser(parent, file, _htest=True) if __name__ == "__main__": if len(sys.argv) == 1: # If pass file on command line, unittest fails. from unittest import main main('idlelib.idle_test.test_browser', verbosity=2, exit=False) from idlelib.idle_test.htest import run run(_module_browser)
Save
cmd:
run