diff options
| author | Stefan Behnel <stefan_ml@behnel.de> | 2012-07-30 22:41:30 +0200 |
|---|---|---|
| committer | Stefan Behnel <stefan_ml@behnel.de> | 2012-07-30 22:41:30 +0200 |
| commit | a656aa290fa61ff1ad89f82978033dbd33ac3015 (patch) | |
| tree | 557d7d03a1d8e98ef447b15a2d28386670f1c8e6 /src/lxml/lxml.objectify.pyx | |
| parent | 290fdc52a30164a46f349dd6b7d2a94b45bdc15b (diff) | |
| download | python-lxml-a656aa290fa61ff1ad89f82978033dbd33ac3015.tar.gz | |
use absolute imports in .pxd files to prevent interference with an installed lxml package
Diffstat (limited to 'src/lxml/lxml.objectify.pyx')
| -rw-r--r-- | src/lxml/lxml.objectify.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lxml/lxml.objectify.pyx b/src/lxml/lxml.objectify.pyx index f657f493..a2a8cbba 100644 --- a/src/lxml/lxml.objectify.pyx +++ b/src/lxml/lxml.objectify.pyx @@ -4,8 +4,8 @@ XML. It is based on `lxml.etree`. from lxml.includes.etreepublic cimport _Document, _Element, ElementBase, ElementClassLookup from lxml.includes.etreepublic cimport elementFactory, import_lxml__etree, textOf, pyunicode +from lxml.includes.tree cimport xmlChar, const_xmlChar, _xcstr from lxml.python cimport callable, _cstr -from lxml.tree cimport xmlChar, const_xmlChar, _xcstr from lxml cimport python from lxml.includes cimport tree |
