Íúf= c @ sí d Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z e j Z
d d d g Z Gd d d e Z
d d Z d d d
d d
d Z d d d Z e d k ré e j e n d S( u{ Routine to "compile" a .py file to a .pyc (or .pyo) file.
This module has intimate knowledge of the format of .pyc files.
i Nu compileu mainu PyCompileErrorc B s5 | Ee Z d Z d Z d d d Z d d Z d S( u PyCompileErroruŻ Exception raised when an error occurs while attempting to
compile the file.
To raise this exception, use
raise PyCompileError(exc_type,exc_value,file[,msg])
where
exc_type: exception type to be used in error message
type name can be accesses as class variable
'exc_type_name'
exc_value: exception value to be used in error message
can be accesses as class variable 'exc_value'
file: name of file being compiled to be used in error message
can be accesses as class variable 'file'
msg: string message to be written as error message
If no value is given, a default exception message will be
given, consistent with 'standard' py_compile output.
message (or default) can be accesses as class variable
'msg'
u c C sŚ | j } | t k rI d j t j | | } | j d d | } n d | | f } t j | | pk | | | | | | _ | | _ | | _
| p | | _ d S( Nu u File "