Nat Picker
Nat Picker
shouldn't Hand.extend() call otherhand.clear()? Otherwise there'd be duplicate cards around? Just curious...
(V3.5) dcortesi@Ubuntu-16:~/V3.5$ dist/chip8ide Segmentation fault (core dumped) Only Ubuntu, others are fine. Low priority.
I'm pretty sure this is addressed somewhere in the pyinstaller docs or old issues. When bundled to a .app by PyInstaller, command-o brings up a very ugly file-choose dialog with...
http://doc.qt.io/qt-5/qtwidgets-widgets-codeeditor-example.html assembled value, possibly breakpoint indicator
In the general Python documentation, a heading of the form "class modulename.CamelCase(blah)" indicates that CamelCase is a class that can be instantiated with statements such as ``` import modulename camel...
When pyi-archive_viewer is applied to a .pyz archive, for example `pyi-archive_viewer build\MYAPP\out00-PYZ.pyz` it operates correctly displaying all elements. Also when applied to a frozen executable, it correctly shows the top...
turns out, ast.parse() can raise a syntax error, so the try at line 50 should have a second except to catch errors other than IO error. In the following, the...
``` python -m blackwidow.web setuptools Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/runpy.py", line 170, in _run_module_as_main "__main__", mod_spec) File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/runpy.py", line 85, in _run_code exec(code, run_globals) File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/blackwidow/web.py", line 99,...
Just a possibly ignorant query regarding the method _readline() in hunspell.py: your comment indicates a lack of buffering, but is this not affected by the `bufsize=` parameter of popen (which...