Commit 5d590d87 authored by Ned Deily's avatar Ned Deily

Issue #16226: Fix IDLE Path Browser crash.

(Patch by Roger Serwy)
parents e453e4c0 bfbf3f13
What's New in IDLE 3.4.0?
=========================
- Issue #16226: Fix IDLE Path Browser crash.
(Patch by Roger Serwy)
What's New in IDLE 3.3.0?
=========================
......
......@@ -75,7 +75,7 @@ class DirBrowserTreeItem(TreeItem):
suffixes += importlib.machinery.SOURCE_SUFFIXES[:]
suffixes += importlib.machinery.BYTECODE_SUFFIXES[:]
sorted = []
for suff, mode, flag in suffixes:
for suff in suffixes:
i = -len(suff)
for name in allnames[:]:
normed_name = os.path.normcase(name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment