Jason Madden

Results 44 issues of Jason Madden

Possibly related to #29 (?), gevent got a report in gevent/gevent#789 about bad unicode symbols from the wheel downloaded from PyPI. The 1.1.0 wheels worked, but the 1.1.1 wheels, built...

bug

In https://github.com/pypa/warehouse/issues/6413, another user has requested to take ownership of the PyPI name `PyTeaser` to continue maintenance of this project. Could you please respond to that request?

In ZODB 5.6 (and almost certainly previous versions), or any version of Python, `FileStorage.iterator` gracefully handles an empty storage, while `record_iternext` raises an exception. ```pycon >>> from ZODB import config...

For BWC, for both read and write, it would probably need to check its dictionary data first. See https://github.com/zopefoundation/ZODB/issues/292#issuecomment-569545145

Currently it silently fails even if the underlying storage supports it. Is there a reason not to just add `prefetch` to the list of methods `TmpStore` copies? Use case: processing...

enhancement

Right now, in a multi-database, if a user has an iterable of ghost objects, it's up to them to split it up by database so that it gets to the...

enhancement

Now that https://github.com/zopefoundation/persistent/issues/11 has been implemented by https://github.com/zopefoundation/persistent/pull/84, the default repr for a persistent object includes the repr for its `_p_jar`. The repr for a connection is explicitly defined to...

enhancement

Should it be? Or in an extension interface? Note that BaseStorage.copyTransactionsFrom is implemented in terms of an external `copy` helper, which in turn uses IStorageRestorable.restore().

Replaces `PyObject_Malloc/Free` with their `PyMem` counterparts; PyPy does not support the `PyObject` variants. Arguably, based on [the documents for PyMalloc](https://docs.python.org/2.3/whatsnew/section-pymalloc.html) the PyMem variants are a better fit for this use...

(This may be related to #34.) In some cases, it was possible for the buffer to be reported as full when in fact it wasn't; it had lots of space...