Is there a reason you depend on elementtree, since it has been included in the standard library in Python 2.5 and you use relative imports which are available only in 2.6 (well, 2.5 with a future import) ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
ah, the incredible force of habit!... i've converted pysyncml to use xml.etree and removed the dependency (checked-in as r47). note that i have not pushed r47 into a distro egg yet - there are some issues with the new hierarchical sync support that i'd like to resolve first.
thanks for the heads-up!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there a reason you depend on elementtree, since it has been included in the standard library in Python 2.5 and you use relative imports which are available only in 2.6 (well, 2.5 with a future import) ?
ah, the incredible force of habit!... i've converted pysyncml to use xml.etree and removed the dependency (checked-in as r47). note that i have not pushed r47 into a distro egg yet - there are some issues with the new hierarchical sync support that i'd like to resolve first.
thanks for the heads-up!
You're welcome. I'll try out your module soon to replace my own C wrapper around the funambol C++ API in Task Coach. Expect more feedback :)