compile ( self, file )
Private method to compile one Python source file to Python bytecode.
Arguments
- file
- source filename (string)
Returns
A tuple indicating status (1 = an error was found), the
filename, the linenumber, the code string and the error message
(boolean, string, string, string, string). The values are only
valid, if the status equals 1.
|