dict2xml icon indicating copy to clipboard operation
dict2xml copied to clipboard

Port to Python 2.4~2.6 and 3.0~3.3

Open lucasicf opened this issue 12 years ago • 0 comments

Known bug: different indentation in Python 2.6:

{'root': {
    'test': 'test'
}}

generates:

<?xml version="1.0" ?>
<root>
  <test>
    test
  </test>
</root>

instead of:

<?xml version="1.0" ?>
<root>
  <test>test</test>
</root>

lucasicf avatar May 29 '13 17:05 lucasicf