Joe Jevnik

Results 60 comments of Joe Jevnik

Thanks for working on this! I will try to look at this either tonight or tomorrow after work.

Python 3.6 bytecode is very different. It uses two bytes for every instruction instead of a mix of one and three byte instructions. For more info on this change see:...

Thank you for deciding to add documentation! If you open pull requests with documentation I will review them. I have been meaning to get to the older prs but it...

The reason those links are not rendering correctly is because the readme is restructured text instead of markdown. The syntax for links in ReST is: ```rest `link text `_ ```...

Thanks for catching these! For the docstring we can use something that is very similar to the `repr` code, I can add a `tp_getset` for `__doc__` which computes that value....

While it is pure python, many pure python implementations of `namedtuple` could produce a signature of just `__new__(*args, **kwargs)`. Creating a useful signature is not a given and should probably...

`__text_signature__` appears to be an internal API that only works with static types. This library creates heaptypes so we are out of luck. That said, we could write a descriptor...

What version of `perf` are you using? I have tested with 0.9.4.