| Server IP : 61.19.30.66 / Your IP : 216.73.216.15 Web Server : Apache/2.2.22 (Ubuntu) System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 User : www-data ( 33) PHP Version : 5.3.10-1ubuntu3.48 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python2.7/ |
Upload File : |
ó
ÿ–|_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 e j ƒ Z d d d g Z d e
f d „ ƒ YZ d „ Z d d e d „ Z d d „ Z e d
k rÅ e j e ƒ ƒ n d S( s{ Routine to "compile" a .py file to a .pyc (or .pyo) file.
This module has intimate knowledge of the format of .pyc files.
iÿÿÿÿNt compilet maint PyCompileErrorc B s# e Z d Z d d „ Z d „ Z RS( s› 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'
t c C s¦ | j } | t k rI d j t j | | ƒ ƒ } | j d d | ƒ } n d | | f } t j | | pk | | | | ƒ | | _ | | _ | | _
| pœ | | _ d S( NR s File "<string>"s File "%s"s
Sorry: %s: %s( t __name__t SyntaxErrort joint tracebackt format_exception_onlyt replacet Exceptiont __init__t
exc_type_namet exc_valuet filet msg( t selft exc_typeR
R R R t tbtextt errmsg( ( s /usr/lib/python2.7/py_compile.pyR - s c C s | j S( N( R ( R ( ( s /usr/lib/python2.7/py_compile.pyt __str__<