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
7fbb9d11
Commit
7fbb9d11
authored
Mar 24, 2006
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF bug #1457411, fix errors using variables that don't exist.
Rename file -> filename to be clear. Will backport.
parent
51ef6f90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
Tools/scripts/byext.py
Tools/scripts/byext.py
+8
-8
No files found.
Tools/scripts/byext.py
View file @
7fbb9d11
...
...
@@ -17,7 +17,7 @@ class Stats:
elif
os
.
path
.
isfile
(
arg
):
self
.
statfile
(
arg
)
else
:
sys
.
stderr
.
write
(
"Can't find %s
\
n
"
%
file
)
sys
.
stderr
.
write
(
"Can't find %s
\
n
"
%
arg
)
self
.
addstats
(
"<???>"
,
"unknown"
,
1
)
def
statdir
(
self
,
dir
):
...
...
@@ -25,8 +25,8 @@ class Stats:
try
:
names
=
os
.
listdir
(
dir
)
except
os
.
error
,
err
:
sys
.
stderr
.
write
(
"Can't list %s: %s
\
n
"
%
(
file
,
err
))
self
.
addstats
(
ext
,
"unlistable"
,
1
)
sys
.
stderr
.
write
(
"Can't list %s: %s
\
n
"
%
(
dir
,
err
))
self
.
addstats
(
"<dir>"
,
"unlistable"
,
1
)
return
names
.
sort
()
for
name
in
names
:
...
...
@@ -42,9 +42,9 @@ class Stats:
else
:
self
.
statfile
(
full
)
def
statfile
(
self
,
file
):
head
,
ext
=
os
.
path
.
splitext
(
file
)
head
,
base
=
os
.
path
.
split
(
file
)
def
statfile
(
self
,
file
name
):
head
,
ext
=
os
.
path
.
splitext
(
file
name
)
head
,
base
=
os
.
path
.
split
(
file
name
)
if
ext
==
base
:
ext
=
""
# E.g. .cvsignore is deemed not to have an extension
ext
=
os
.
path
.
normcase
(
ext
)
...
...
@@ -52,9 +52,9 @@ class Stats:
ext
=
"<none>"
self
.
addstats
(
ext
,
"files"
,
1
)
try
:
f
=
open
(
file
,
"rb"
)
f
=
open
(
file
name
,
"rb"
)
except
IOError
,
err
:
sys
.
stderr
.
write
(
"Can't open %s: %s
\
n
"
%
(
file
,
err
))
sys
.
stderr
.
write
(
"Can't open %s: %s
\
n
"
%
(
file
name
,
err
))
self
.
addstats
(
ext
,
"unopenable"
,
1
)
return
data
=
f
.
read
()
...
...
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