This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for unsorted XML generation and flat lists.
If there's a XML schema definition that requires a certain order of elements, you can now use a collection.OrderedDict together with the keyword parameter sort=False. Another new feature are flat lists which can be generated by explictly setting the itemname to None.
- Loading branch information
Christian Klein
committed
Jun 18, 2013
1 parent
99f0cd0
commit af745ae
Showing
3 changed files
with
35 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
from distutils.core import setup | ||
|
||
version = '0.63' | ||
version = '0.64' | ||
|
||
setup( | ||
name='huTools', | ||
|