Charles Pritchard
Charles Pritchard
@LukasKastern I see you're also a contributor - looking for clarification on the license on the Sources folder - I think it's understood that the third-party libraries follow their own...
At this point -- I'd recommend that older papers receive special treatment in the process of digitization. They're likely to have aged differently in the way they present references, and...
Sure, I'd love to send in some improvements. Do I need to sign a contributor agreement? What's the status on opening the underlying UI library that this references? It's currently...
@Andarist I don't understand what you all mean by APIs -- isn't that just the React tag names and properties, as used in this widget? You'd said in #2 that...
Thanks for the update! This widget sample seems to be MIT licensed; would be nice if the UI widgets it calls on shared that license. I'm know that feeling, of...
Reopening as per #3 this may not occur this year.
Possibly related: https://github.com/cython/cython/blob/master/Cython/Includes/cpython/bytes.pxd#L77 Seems to suggest that arbitrary binary data would be converted to Unicode. EDIT: Doesn't seem to be an issue. Still, it seems that a direct cast to...
Not sure how safe it is, but this lets me pass in bytearray: ``` +++ b/rocksdb/_rocksdb.pyx cdef Slice bytes_to_slice(ob) except *: - return Slice(PyBytes_AsString(ob), PyBytes_Size(ob)) + return Slice(ob, len(ob)) ```
@stephan-hof What are your thoughts on this one? You could do an if(isinstance(ob, bytearray)) to support it.
I tried to support memoryview in another cython project -- I did not succeed. bytearray was easy, as it was just a raw char*. It seems like memoryview and buffer...