changeset: 79821:58f9523cf407 parent: 79819:5ae4ff03b35f parent: 79820:d369e50677a6 user: Ned Deily date: Thu Oct 18 18:19:11 2012 -0700 files: Lib/idlelib/NEWS.txt description: Issue #16226: Fix IDLE Path Browser crash. (Patch by Roger Serwy) diff -r 5ae4ff03b35f -r 58f9523cf407 Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt Thu Oct 18 22:18:42 2012 +0100 +++ b/Lib/idlelib/NEWS.txt Thu Oct 18 18:19:11 2012 -0700 @@ -1,3 +1,10 @@ +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? ========================= diff -r 5ae4ff03b35f -r 58f9523cf407 Lib/idlelib/PathBrowser.py --- a/Lib/idlelib/PathBrowser.py Thu Oct 18 22:18:42 2012 +0100 +++ b/Lib/idlelib/PathBrowser.py Thu Oct 18 18:19:11 2012 -0700 @@ -75,7 +75,7 @@ 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)

AltStyle によって変換されたページ (->オリジナル) /