Meta icon indicating copy to clipboard operation
Meta copied to clipboard

Python Meta Programming

Results 24 Meta issues
Sort by recently updated
recently updated
newest added

The original URL is 404: > If you're the owner of this site, please update your links to use srossross.github.io instead. Subdomains of github.com are deprecated for GitHub Pages. They...

When looking through the forks of this project, I found that Numba had created a fork with 11 commits. So, I thought it might be good to merge the two...

Hi Sean, I have added some additional python versions, pytest and coverage.py and submit to code coverage results to coveralls.io in your .travis.yml file. Please visit my [Travis CI page](https://travis-ci.org/viralogic/Meta)...

With these fixes, depyc works on itself on Python 3.4. - `MAKE_FUNCTION` now expects a name on the top of the stack, then the code object. The name appears to...

The following code tries to return a value from an `except` block but fails with an assertion. ``` python import meta def f(x): try: return x except: return x +...

Hey, I'm a bit confused, on [pypi](http://pypi.python.org/pypi/meta) the license is BSD, here on github there is some enthought disclaimer. Under which one should i use it? Thanks

Hi, Similar to issue #41, the list comprehension is not decompiled: ```python3 >>> import meta.decompiler >>> meta.decompiler.decompile_func(lambda x: [i for i in range(x)]) ``` This gives me a traceback: ```...

Hi, I've just encountered a serious bug with Python 3. Namely, the byte constants are not decompiled correctly. The string constants are decompiled correctly: ```python3 >>> import ast >>> import...

Hi, I tried the following snippet: ```python3 >>> import meta.decompiler >>> f = lambda: (lambda: 4).__call__() >>> f >>> meta.decompiler.decompile_func(f) ``` Unfortunately, this raises an exception: ``` Traceback (most recent...