Paul Tagliamonte
Paul Tagliamonte
We need an audit of how this will break if we multithreaded this. Not that anyone ever multithreads python (cough)
@nedbat mentioned something about coverage plugins so we can get pretty html reports by writing functions to do line alignment and a pygments lexer def. (not looked into it) This...
Allow for a curses base debugger that allows debugging of Hy code via an interactive pane-based explorer -- allow "stepping" through Hy code, and highlighting portions of HST, AST and...
Lawl. Thanks @shanear!
When inserting, I get the following internal error from aiopg ``` File "/usr/local/lib/python3.4/dist-packages/aiopg/sa/connection.py", line 115, in scalar res = yield from self.execute(query, *multiparams, **params) File "/usr/local/lib/python3.4/dist-packages/aiopg/sa/connection.py", line 102, in execute...
Simple tool to set up a token: - [ ] Reset the applet if the PIN isn't known or stock - [ ] Set the PIN, PUK and Management Key...
Right now it's not possible to use `go-ykpiv` to set the Management key to the derived key, since there's no helper to write and store the pivman tokens. The interface...
I plan on adding some asyncio support to pyley
`__import__` is a pretty low level guy (also, on 3.x, it's a wrapper around importlib anyway), and in general, the common practice is to use `importlib.import_module`. I'll send in a...