| @@ -12,6 +12,9 @@ | |||||
| Piers Lauder <piers@cs.su.oz.au> | Piers Lauder <piers@cs.su.oz.au> | ||||
| Radovan Garabik <garabik@melkor.dnp.fmph.uniba.sk> | Radovan Garabik <garabik@melkor.dnp.fmph.uniba.sk> | ||||
| """ | """ | ||||
| ident = "$Id$" | |||||
| import string, socket, select, errno | import string, socket, select, errno | ||||
| WSAEINVAL = getattr(errno, 'WSAEINVAL', 10022) | WSAEINVAL = getattr(errno, 'WSAEINVAL', 10022) | ||||
| @@ -7,6 +7,8 @@ | |||||
| # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||||
| # FOR A PARTICULAR PURPOSE. | # FOR A PARTICULAR PURPOSE. | ||||
| ident = "$Id$" | |||||
| from string import join, strip, split | from string import join, strip, split | ||||
| from UserDict import UserDict | from UserDict import UserDict | ||||
| from StringIO import StringIO | from StringIO import StringIO | ||||
| @@ -7,12 +7,13 @@ | |||||
| # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||||
| # FOR A PARTICULAR PURPOSE. | # FOR A PARTICULAR PURPOSE. | ||||
| ident = "$Id$" | |||||
| from Utility import DOM, Collection | from Utility import DOM, Collection | ||||
| from XMLSchema import XMLSchema | from XMLSchema import XMLSchema | ||||
| from StringIO import StringIO | from StringIO import StringIO | ||||
| import urllib | import urllib | ||||
| class WSDLReader: | class WSDLReader: | ||||
| """A WSDLReader creates WSDL instances from urls and xml data.""" | """A WSDLReader creates WSDL instances from urls and xml data.""" | ||||
| @@ -7,6 +7,8 @@ | |||||
| # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||||
| # FOR A PARTICULAR PURPOSE. | # FOR A PARTICULAR PURPOSE. | ||||
| ident = "$Id$" | |||||
| import string, types, base64, re | import string, types, base64, re | ||||
| from Utility import DOM, Collection | from Utility import DOM, Collection | ||||
| from StringIO import StringIO | from StringIO import StringIO | ||||
| @@ -13,6 +13,8 @@ Version 0.9.0 | |||||
| """ | """ | ||||
| ident = "$Id$" | |||||
| from re import * | from re import * | ||||
| @@ -1,4 +1,9 @@ | |||||
| #! /usr/bin/env python | #! /usr/bin/env python | ||||
| """WSDL parsing services package for Web Services for Python.""" | """WSDL parsing services package for Web Services for Python.""" | ||||
| import WSDLTools, ieee754, XMLname | |||||
| ident = "$Id$" | |||||
| import WSDLTools | |||||
| import ieee754 | |||||
| import XMLname | |||||