Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
78608120
Commit
78608120
authored
Apr 30, 1999
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid listing files more than once (e.g. foomodule.so has two hits:
once for foo + module.so, once for foomodule + .so).
parent
8961bd15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Tools/idle/PathBrowser.py
Tools/idle/PathBrowser.py
+2
-1
No files found.
Tools/idle/PathBrowser.py
View file @
78608120
...
...
@@ -56,13 +56,14 @@ class PathBrowser(MultiScrolledLists):
sorted
=
[]
for
suff
,
mode
,
flag
in
suffixes
:
i
=
-
len
(
suff
)
for
name
in
allnames
:
for
name
in
allnames
[:]
:
normed_name
=
os
.
path
.
normcase
(
name
)
if
normed_name
[
i
:]
==
suff
:
mod_name
=
name
[:
i
]
if
not
modules
.
has_key
(
mod_name
):
modules
[
mod_name
]
=
None
sorted
.
append
((
normed_name
,
name
))
allnames
.
remove
(
name
)
sorted
.
sort
()
names
=
[]
for
nn
,
name
in
sorted
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment