jbarlow83

Results 350 comments of jbarlow83

Works fine: ``` In [1]: from sys import version ...: print(version) ...: import asyncio ...: asyncio.set_event_loop(asyncio.new_event_loop()) 3.9.2 (default, Mar 26 2021, 22:33:29) [Clang 11.0.0 (clang-1100.0.33.17)] ```

It needs `extra_args=-net nic,macaddr=52:54:00:AB:7E:94` to proceed from the current error message to the next error message. The quotes in `extra_args` produce the wrong command line. The next error message is...

I read your comment and examined the code for PyErr_NormalizeException in both [CPython](https://github.com/python/cpython/blob/07aeb7405ea42729b95ecae225f1d96a4aea5121/Python/errors.c#L309) and PyPy. In CPython, PyErr_NormalizeException permits an exception to change its class when normalizing. Nothing about it...

Apologies about the "fatal error" comment - I mistook pybind_fail for meaning that the interpreter is terminated. For pybind11 2.10 replaces an OSError from PyPy with an RuntimeError - I...

Sorry for delay in respond. LGTM. I'll submit a quick PR to clarify the comments many types of OSError may do this, not just FileNotFoundError.

smart_open dumps the read buffer after every seek: https://github.com/RaRe-Technologies/smart_open/blob/f8e60da5a53e1e7ead9d8ca4d3f09cbea04fc337/smart_open/s3.py#L668 pikepdf (actually, its C++ library QPDF) seeks very often. When combined with smart_open, the entire file will be downloaded hundreds of...

I'm afraid not. Someone who knows this project's codebase (i.e. not me) should check for the same issue in other storage types and decide how to solve it project wide.

Check that you have the latest pikepdf. 5.6.1 introduced a possible fix to some black/white inversion issues.