xmlclass/xsdschema.py
changeset 1853 47a3f39bead0
parent 1852 70c1cc354a8f
child 1856 c2cba67145eb
equal deleted inserted replaced
1852:70c1cc354a8f 1853:47a3f39bead0
    21 # You should have received a copy of the GNU General Public License
    21 # You should have received a copy of the GNU General Public License
    22 # along with this program; if not, write to the Free Software
    22 # along with this program; if not, write to the Free Software
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    24 
    24 
    25 
    25 
       
    26 from __future__ import absolute_import
    26 from __future__ import print_function
    27 from __future__ import print_function
    27 import os
    28 import os
    28 import re
    29 import re
    29 import datetime
    30 import datetime
    30 from xml.dom import minidom
    31 from xml.dom import minidom
    31 from types import *
    32 from types import *
    32 
    33 
    33 from xmlclass import *
    34 from xmlclass.xmlclass import *
    34 
    35 
    35 
    36 
    36 def GenerateDictFacets(facets):
    37 def GenerateDictFacets(facets):
    37     return dict([(name, (None, False)) for name in facets])
    38     return dict([(name, (None, False)) for name in facets])
    38 
    39