Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c94d53db0e54d919ed3d37b85bd8d6e7f5a64a9e authored by cvs2svn on 11 October 1994, 15:44:53 UTC
This commit was manufactured by cvs2svn to create tag 'release11'.
Tip revision: c94d53d
py_compile.py
# 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)
back to top