Show embeded timestamp of byte-decompiled file

This commit is contained in:
rocky
2015-12-24 11:30:57 -05:00
parent 484cd703bf
commit e3a5d487eb
6 changed files with 28 additions and 15 deletions

View File

@@ -54,7 +54,7 @@ def disassemble_file(filename, outstream=None):
try to find the corresponding compiled object.
"""
filename = check_object_path(filename)
version, magic_int, co = load_module(filename)
version, timestamp, magic_int, co = load_module(filename)
if type(co) == list:
for con in co:
disco(version, con, outstream)