blip icon indicating copy to clipboard operation
blip copied to clipboard

A bytecode compiler for Python 3

Results 13 blip issues
Sort by recently updated
recently updated
newest added

I noticed it is trending, but I have no clue why the package is special. Perhaps update the readme to include why people should be excited over this, and some...

Is there a chance we could get an update that supports `language-python` version 0.5.0?

We do not currently generate the line number table (lnotab) for code objects.

Break/continue statements should only appear inside loops, otherwise we should generate an error message.

super and **class** are special cased in Python 3 classes. See: http://docs.python.org/3/reference/datamodel.html#creating-the-class-object "This class object is the one that will be referenced by the zero-argument form of super(). **class** is...

The readpyc program currently only supports Python 3.3 (and perhaps earlier 3.x). But when applied to pyc files from 2.x we get an error of the form: `bad object type:...

We do not currently support name mangling in classes as per: http://docs.python.org/3.2/reference/expressions.html#atom-identifiers

We support raw byte strings indicated by 'br' but not 'rb'. This is a bug in the parser.

bug

We do not currently support compilation of multidimensional slices e.g.: x[a:b, c:e] = rhs

We do not currently add all the flags to code objects, such as co_optimized, co_newlocals, co_nested, co_nofree.