Comment 3 for bug 1880251

Revision history for this message
Oleg Hoefling (hoefling) wrote :

Hi scoder, thank you for the fast response! The fix does indeed resolve the original example, but if I change the imports order, the error still persists:

```python
import ctypes

xmlsec = ctypes.CDLL('/usr/lib/libxmlsec1.so')
xmlsec.xmlSecInit()

from lxml import etree

etree.parse('doc.xml')
etree.parse('doc.xml')
```