mirror of
https://github.com/python/cpython.git
synced 2025-08-23 10:16:01 +00:00
New way of generating .pyc files, thanks to Sjoerd.
urllib.py: '+' is not always safe (even though the RFC says so :-( ) whrandom.py: throw away top bits of time to avoid overflow on Mac (where times can be negative)
This commit is contained in:
parent
7b1e974b4b
commit
3bb5448767
5 changed files with 96 additions and 2 deletions
25
Lib/py_compile.py
Normal file
25
Lib/py_compile.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Routine to "compile" a .py file to a .pyc file.
|
||||
# This has intimate knowledge of how Python/import.c does it.
|
||||
# By Sjoerd Mullender (I forced him to write it :-).
|
||||
|
||||
MAGIC = 0x999903
|
||||
|
||||
def wr_long(f, x):
|
||||
f.write(chr( x & 0xff))
|
||||
f.write(chr((x >> 8) & 0xff))
|
||||
f.write(chr((x >> 16) & 0xff))
|
||||
f.write(chr((x >> 24) & 0xff))
|
||||
|
||||
def compile(file, cfile = None):
|
||||
import os, marshal, __builtin__
|
||||
f = open(file)
|
||||
codestring = f.read()
|
||||
timestamp = os.fstat(f.fileno())[8]
|
||||
f.close()
|
||||
codeobject = __builtin__.compile(codestring, file, 'exec')
|
||||
if not cfile:
|
||||
cfile = file + 'c'
|
||||
fc = open(cfile, 'w')
|
||||
wr_long(fc, MAGIC)
|
||||
wr_long(fc, timestamp)
|
||||
marshal.dump(codeobject, fc)
|
Loading…
Add table
Add a link
Reference in a new issue