mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
parent
44362a88ad
commit
bfbf3f139d
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
What's New in IDLE 3.3.1?
|
||||
=========================
|
||||
|
||||
- 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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue