Amaury Forgeot d'Arc
Amaury Forgeot d'Arc
Coming from a Python background, I was surprised by the backtick syntax. Then I read about the JavaScript Template Strings. But wouldn't it be confusing for users, since this is...
The error messages seem to indicate a different version of libxml, PyPy's version is not relevant here. Can you check which version of libxml you are using?
2015-06-21 22:41 GMT+02:00 Aleksandr Glyzov [email protected]: > And while we're at it, in my tests I noticed it took the cffi+pypy lxml > ~3-5 times more time than cpython lxml...
This is strange. Can you check whether `XML_ATTRIBUTE_IDREF` appears multiple times in your copy of the `src/lxml-cffi` directory?
This is not what I saw. With pypy-c-jit-70319-c77678f05b18-linux-64 (cffi 0.8.2), XML_ATTRIBUTE_IDREF is present in only one .c file. And I don't get any warning.
Hi, in your script `del foo` is not enough. You should also `del bar` and `del x` to ensure that there is no reference to the data. Or move the...
To explain the two levels of memory usage: ParseFromString completely works in C++ land, the message itself takes memory, but there is still a single Python object. When iterating over...
Indeed, this API has been added to version 3.18.0. You need this version of protobuf to compile pybind11_protobuf as is. But, it appears that this call is only needed to...