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
c7eaede2
Commit
c7eaede2
authored
Aug 09, 2010
by
Florent Xicluna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ``Tools/scripts/checkpyc.py`` after PEP 3147.
parent
e4a3380b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
17 deletions
+22
-17
Misc/NEWS
Misc/NEWS
+2
-0
Tools/scripts/checkpyc.py
Tools/scripts/checkpyc.py
+20
-17
No files found.
Misc/NEWS
View file @
c7eaede2
...
...
@@ -150,6 +150,8 @@ Library
Tools/Demos
-----------
- Fix ``Tools/scripts/checkpyc.py`` after PEP 3147.
- Issue #8867: Fix ``Tools/scripts/serve.py`` to work with files containing
non-ASCII content.
...
...
Tools/scripts/checkpyc.py
View file @
c7eaede2
...
...
@@ -7,14 +7,17 @@ import os
from
stat
import
ST_MTIME
import
imp
# PEP 3147 compatibility (PYC Repository Directories)
cache_from_source
=
(
imp
.
cache_from_source
if
hasattr
(
imp
,
'get_tag'
)
else
lambda
path
:
path
+
'c'
)
def
main
():
silent
=
0
verbose
=
0
if
sys
.
argv
[
1
:]:
if
sys
.
argv
[
1
]
==
'-v'
:
verbose
=
1
elif
sys
.
argv
[
1
]
==
'-s'
:
silent
=
1
if
len
(
sys
.
argv
)
>
1
:
verbose
=
(
sys
.
argv
[
1
]
==
'-v'
)
silent
=
(
sys
.
argv
[
1
]
==
'-s'
)
else
:
verbose
=
silent
=
False
MAGIC
=
imp
.
get_magic
()
if
not
silent
:
print
(
'Using MAGIC word'
,
repr
(
MAGIC
))
...
...
@@ -26,9 +29,8 @@ def main():
continue
if
not
silent
:
print
(
'Checking '
,
repr
(
dirname
),
'...'
)
names
.
sort
()
for
name
in
names
:
if
name
[
-
3
:]
==
'.py'
:
for
name
in
sorted
(
names
):
if
name
.
endswith
(
'.py'
):
name
=
os
.
path
.
join
(
dirname
,
name
)
try
:
st
=
os
.
stat
(
name
)
...
...
@@ -37,30 +39,31 @@ def main():
continue
if
verbose
:
print
(
'Check'
,
repr
(
name
),
'...'
)
name_c
=
name
+
'c'
name_c
=
cache_from_source
(
name
)
try
:
f
=
open
(
name_c
,
'r'
)
with
open
(
name_c
,
'rb'
)
as
f
:
magic_str
=
f
.
read
(
4
)
mtime_str
=
f
.
read
(
4
)
except
IOError
:
print
(
'Cannot open'
,
repr
(
name_c
))
continue
magic_str
=
f
.
read
(
4
)
mtime_str
=
f
.
read
(
4
)
f
.
close
()
if
magic_str
!=
MAGIC
:
print
(
'Bad MAGIC word in ".pyc" file'
,
end
=
' '
)
print
(
repr
(
name_c
))
continue
mtime
=
get_long
(
mtime_str
)
if
mtime
==
0
or
mtime
==
-
1
:
if
mtime
in
{
0
,
-
1
}
:
print
(
'Bad ".pyc" file'
,
repr
(
name_c
))
elif
mtime
!=
st
[
ST_MTIME
]:
print
(
'Out-of-date ".pyc" file'
,
end
=
' '
)
print
(
repr
(
name_c
))
def
get_long
(
s
):
if
len
(
s
)
!=
4
:
return
-
1
return
ord
(
s
[
0
])
+
(
ord
(
s
[
1
])
<<
8
)
+
(
ord
(
s
[
2
])
<<
16
)
+
(
ord
(
s
[
3
])
<<
24
)
return
s
[
0
]
+
(
s
[
1
]
<<
8
)
+
(
s
[
2
]
<<
16
)
+
(
s
[
3
]
<<
24
)
if
__name__
==
'__main__'
:
main
()
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