-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
WIP: bpo-34990: year 2038 problem in compileall.py #9892
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
f4757a7
96dbdab
de197d1
377f565
b7e89cc
eca7980
2cc344c
dc57dde
efdae35
1f30292
4ed1e74
ca6c049
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ def add_bad_source_file(self): | |
def timestamp_metadata(self): | ||
with open(self.bc_path, 'rb') as file: | ||
data = file.read(12) | ||
mtime = int(os.stat(self.source_path).st_mtime) | ||
mtime = int(os.stat(self.source_path).st_mtime) & 0xFFFF_FFF | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's why I like the underscore: it's easier to spot bugs. You missed something :-) |
||
compare = struct.pack('<4sLL', importlib.util.MAGIC_NUMBER, 0, mtime) | ||
return data, compare | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ def make_pyc(co, mtime, size): | |
else: | ||
mtime = int(-0x100000000 + int(mtime)) | ||
pyc = (importlib.util.MAGIC_NUMBER + | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the above few lines can be removed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the lines from 38->41? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. They are roughly equivalent to |
||
struct.pack("<iii", 0, int(mtime), size & 0xFFFFFFFF) + data) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Signed format units are used. |
||
struct.pack("<iii", 0, int(mtime) & 0xFFFF_FFFF, size & 0xFFFF_FFFF) + data) | ||
return pyc | ||
|
||
def module_path_to_dotted_name(path): | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ def main(): | |
print('Bad MAGIC word in ".pyc" file', end=' ') | ||
print(repr(name_c)) | ||
continue | ||
mtime = get_long(mtime_str) | ||
mtime = get_long(mtime_str) & 0xFFFF_FFFF | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sees the definition of get_long(). It returns an unsigned 32-bit integer, and returns -1 only on error. You need to convert not it, but the file timestamp. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is actually a NOP, because There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks, I am not familiar with the operations on the bits. |
||
if mtime in {0, -1}: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. mtime can't be -1 after adding There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe add the 0xFFFF_FFFF on the line 57? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. |
||
print('Bad ".pyc" file', repr(name_c)) | ||
elif mtime != st[ST_MTIME]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know if this code should be modified, but it is modified: should we also cast to int()? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. like that? elif int(mtime) != int(st[ST_MTIME] & 0xFFFF_FFFF) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
Uh oh!
There was an error while loading. Please reload this page.