|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21572/root/usr/lib64/python2.4/ |
Upload File : |
mò
‚=5Dc @ sß d Z d k Z d k Z d k Z d k Z d k Z d k Z e i ƒ Z d d d g Z d e
f d „ ƒ YZ e i d j o d k
Z
d „ Z n
d „ Z d „ Z d d e d
„ Z d d „ Z e d j o 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.
Nt compilet maint PyCompileErrorc B s# t 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ª | i } | t j o5 d i t i | | ƒ ƒ } | i d d | ƒ } n d | | f } t i
| | p | | | | ƒ | | _ | | _ | | _
| p | | _ d S( NR s File "<string>"s File "%s"s
Sorry: %s: %s( t exc_typet __name__t
exc_type_namet SyntaxErrort joint tracebackt format_exception_onlyt exc_valuet tbtextt replacet filet errmsgt Exceptiont __init__t selft msg( R R R R R R R R ( ( t"