Browse Source

- Added ident string containing CVS version to all files that were


			
			main
		
Gregory Warnes 21 years ago
parent
commit
44f489b0c7
6 changed files with 17 additions and 2 deletions
  1. +3
    -0
      TimeoutSocket.py
  2. +2
    -0
      Utility.py
  3. +2
    -1
      WSDLTools.py
  4. +2
    -0
      XMLSchema.py
  5. +2
    -0
      XMLname.py
  6. +6
    -1
      __init__.py

+ 3
- 0
TimeoutSocket.py View File

@@ -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)


+ 2
- 0
Utility.py View File

@@ -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


+ 2
- 1
WSDLTools.py View File

@@ -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."""




+ 2
- 0
XMLSchema.py View File

@@ -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


+ 2
- 0
XMLname.py View File

@@ -13,6 +13,8 @@ Version 0.9.0


""" """


ident = "$Id$"

from re import * from re import *






+ 6
- 1
__init__.py View File

@@ -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


Loading…
Cancel
Save