Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 328 Bytes

code.rst

File metadata and controls

29 lines (23 loc) · 328 Bytes
co_code

Description

Returns a string representing the sequence of bytecode instructions.

Syntax

code.co_code

Return Value

#TODO

Time Complexity

#TODO

Example

>>> c = compile('2+2', '<string>', 'eval') >>> c.co_code 'dx01x00S'

See Also

#TODO