Critics have remarked that those four worthies were truly peerless throughout the ages; yet the present falls short of the pastβ€”the ancients favored unadorned simplicity, whereas the moderns prefer refined elegance. Styles of substance and ornament rise and fall in succession, shifting with the changing mores of the times; such evolution is simply the natural order of things. The ideal lies in honoring antiquity without clashing with the present, and embracing modernity without succumbing to its flawsβ€”embodying that perfect balance of substance and refinement that defines the true gentleman. There is surely no need to abandon a carved palace in favor of a cave dwelling, or to trade a jade carriage for a primitive cart with solid wooden wheels.🌌 SpectraShell

🌌 SpectraShell

Current path: lib64/python3.6/__pycache__/



⬆️ Go up: /lib64/python3.6

πŸ“„ Viewing: codeop.cpython-36.pyc

3


 \jοΏ½@sddZddlZddοΏ½ejDοΏ½ZdddgZdZd	d
οΏ½ZddοΏ½ZdddοΏ½ZGddοΏ½dοΏ½Z	GddοΏ½dοΏ½Z
dS)a[Utilities to compile possibly incomplete Python source code.

This module provides two interfaces, broadly similar to the builtin
function compile(), which take program text, a filename and a 'mode'
and:

- Return code object if the command is complete and valid
- Return None if the command is incomplete
- Raise SyntaxError, ValueError or OverflowError if the command is a
  syntax error (OverflowError and ValueError can be produced by
  malformed literals).

Approach:

First, check if the source consists entirely of blank lines and
comments; if so, replace it with 'pass', because the built-in
parser doesn't always do the right thing for these.

Compile three times: as is, with \n, and with \n\n appended.  If it
compiles as is, it's complete.  If it compiles with one \n appended,
we expect more.  If it doesn't compile either way, we compare the
error we get when compiling with \n or \n\n appended.  If the errors
are the same, the code is broken.  But if the errors are different, we
expect more.  Not intuitive; not even guaranteed to hold in future
releases; but this matches the compiler's behavior from Python 1.4
through 2.2, at least.

Caveat:

It is possible (but not likely) that the parser stops parsing with a
successful outcome before reaching the end of the source; in this
case, trailing symbols may be ignored instead of causing an error.
For example, a backslash followed by two newlines may be followed by
arbitrary garbage.  This will be fixed once the API for the parser is
better.

The two interfaces are:

compile_command(source, filename, symbol):

    Compiles a single command in the manner described above.

CommandCompiler():

    Instances of this class have __call__ methods identical in
    signature to compile_command; the difference is that if the
    instance compiles program text containing a __future__ statement,
    the instance 'remembers' and compiles all subsequent program texts
    with the statement in force.

The module also provides another class:

Compile():

    Instances of this class act like the built-in function compile,
    but with 'memory' in the sense described above.
οΏ½NcCsg|]}tt|οΏ½οΏ½qSοΏ½)οΏ½getattrοΏ½
__future__)οΏ½.0ZfnamerrοΏ½/usr/lib64/python3.6/codeop.pyοΏ½
<listcomp>=srοΏ½compile_commandοΏ½CompileοΏ½CommandCompileric-Cs*x8|jdοΏ½D]}|jοΏ½}|r|ddkrPqW|dkr:d}d}}}d}}	}
y||||οΏ½}Wn"tk
rοΏ½}zWYdd}~XnXy||d||οΏ½}	Wn&tk
rοΏ½}z
|}WYdd}~XnXy||d||οΏ½}
Wn&tk
rοΏ½}z
|}WYdd}~XnX|οΏ½r|S|	οΏ½r&t|οΏ½t|οΏ½kοΏ½r&|οΏ½dS)NοΏ½
rοΏ½#οΏ½evalοΏ½passz

)οΏ½splitοΏ½stripοΏ½SyntaxErrorοΏ½repr)οΏ½compilerοΏ½sourceοΏ½filenameοΏ½symbolοΏ½lineοΏ½errZerr1Zerr2οΏ½codeοΏ½code1οΏ½code2οΏ½errrοΏ½_maybe_compileDs0rcCst|||tοΏ½S)N)οΏ½compileοΏ½PyCF_DONT_IMPLY_DEDENT)rrrrrrοΏ½_compileesr οΏ½<input>οΏ½singlecCstt|||οΏ½S)asCompile a command and determine whether it is incomplete.

    Arguments:

    source -- the source string; may contain \n characters
    filename -- optional filename from which source was read; default
                "<input>"
    symbol -- optional grammar start symbol; "single" (default) or "eval"

    Return value / exceptions raised:

    - Return a code object if the command is complete and valid
    - Return None if the command is incomplete
    - Raise SyntaxError, ValueError or OverflowError if the command is a
      syntax error (OverflowError and ValueError can be produced by
      malformed literals).
    )rr )rrrrrrrhsc@s eZdZdZddοΏ½ZddοΏ½ZdS)r	zοΏ½Instances of this class behave much like the built-in compile
    function, but if one is used to compile text containing a future
    statement, it "remembers" and compiles all subsequent program texts
    with the statement in force.cCs
t|_dS)N)rοΏ½flags)οΏ½selfrrrοΏ½__init__οΏ½szCompile.__init__cCs@t||||jdοΏ½}x(tD] }|j|j@r|j|jO_qW|S)NοΏ½)rr#οΏ½	_featuresοΏ½co_flagsZ
compiler_flag)r$rrrZcodeobZfeaturerrrοΏ½__call__οΏ½s

zCompile.__call__N)οΏ½__name__οΏ½
__module__οΏ½__qualname__οΏ½__doc__r%r)rrrrr	|sc@s"eZdZdZddοΏ½Zd	ddοΏ½ZdS)
r
a(Instances of this class have __call__ methods identical in
    signature to compile_command; the difference is that if the
    instance compiles program text containing a __future__ statement,
    the instance 'remembers' and compiles all subsequent program texts
    with the statement in force.cCstοΏ½|_dS)N)r	r)r$rrrr%οΏ½szCommandCompiler.__init__οΏ½<input>r"cCst|j|||οΏ½S)aοΏ½Compile a command and determine whether it is incomplete.

        Arguments:

        source -- the source string; may contain \n characters
        filename -- optional filename from which source was read;
                    default "<input>"
        symbol -- optional grammar start symbol; "single" (default) or
                  "eval"

        Return value / exceptions raised:

        - Return a code object if the command is complete and valid
        - Return None if the command is incomplete
        - Raise SyntaxError, ValueError or OverflowError if the command is a
          syntax error (OverflowError and ValueError can be produced by
          malformed literals).
        )rr)r$rrrrrrr)οΏ½szCommandCompiler.__call__N)r.r")r*r+r,r-r%r)rrrrr
οΏ½s)r!r")r-rZall_feature_namesr'οΏ½__all__rrr rr	r
rrrrοΏ½<module>9s

!



πŸ“