Browse Source

added XSD_LIST to SCHEMA because it's absence broke wsdl2python.

main
Monte Goode 20 years ago
parent
commit
a315c51ba5
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      Namespaces.py

+ 2
- 0
Namespaces.py View File

@@ -14,9 +14,11 @@ except:
XSD1 = "http://www.w3.org/1999/XMLSchema" XSD1 = "http://www.w3.org/1999/XMLSchema"
XSD2 = "http://www.w3.org/2000/10/XMLSchema" XSD2 = "http://www.w3.org/2000/10/XMLSchema"
XSD3 = "http://www.w3.org/2001/XMLSchema" XSD3 = "http://www.w3.org/2001/XMLSchema"
XSD_LIST = [ XSD1, XSD2, XSD3 ]
XSI1 = "http://www.w3.org/1999/XMLSchema-instance" XSI1 = "http://www.w3.org/1999/XMLSchema-instance"
XSI2 = "http://www.w3.org/2000/10/XMLSchema-instance" XSI2 = "http://www.w3.org/2000/10/XMLSchema-instance"
XSI3 = "http://www.w3.org/2001/XMLSchema-instance" XSI3 = "http://www.w3.org/2001/XMLSchema-instance"
XSI_LIST = [ XSI1, XSI2, XSI3 ]
BASE = XSD3 BASE = XSD3


class WSDL: class WSDL:


Loading…
Cancel
Save