From 44f489b0c7510701862f609e9486ea68e4caf454 Mon Sep 17 00:00:00 2001 From: Gregory Warnes Date: Tue, 20 May 2003 21:10:14 +0000 Subject: [PATCH] - Added ident string containing CVS version to all files that were lacking this. --- TimeoutSocket.py | 3 +++ Utility.py | 2 ++ WSDLTools.py | 3 ++- XMLSchema.py | 2 ++ XMLname.py | 2 ++ __init__.py | 7 ++++++- 6 files changed, 17 insertions(+), 2 deletions(-) diff --git a/TimeoutSocket.py b/TimeoutSocket.py index d643ead..48b898d 100755 --- a/TimeoutSocket.py +++ b/TimeoutSocket.py @@ -12,6 +12,9 @@ Piers Lauder Radovan Garabik """ + +ident = "$Id$" + import string, socket, select, errno WSAEINVAL = getattr(errno, 'WSAEINVAL', 10022) diff --git a/Utility.py b/Utility.py index 905692d..384ca6b 100755 --- a/Utility.py +++ b/Utility.py @@ -7,6 +7,8 @@ # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. +ident = "$Id$" + from string import join, strip, split from UserDict import UserDict from StringIO import StringIO diff --git a/WSDLTools.py b/WSDLTools.py index d19e12c..94d58df 100755 --- a/WSDLTools.py +++ b/WSDLTools.py @@ -7,12 +7,13 @@ # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. +ident = "$Id$" + from Utility import DOM, Collection from XMLSchema import XMLSchema from StringIO import StringIO import urllib - class WSDLReader: """A WSDLReader creates WSDL instances from urls and xml data.""" diff --git a/XMLSchema.py b/XMLSchema.py index 15357bf..9784da6 100755 --- a/XMLSchema.py +++ b/XMLSchema.py @@ -7,6 +7,8 @@ # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. +ident = "$Id$" + import string, types, base64, re from Utility import DOM, Collection from StringIO import StringIO diff --git a/XMLname.py b/XMLname.py index 7f88fe3..e15b3dc 100644 --- a/XMLname.py +++ b/XMLname.py @@ -13,6 +13,8 @@ Version 0.9.0 """ +ident = "$Id$" + from re import * diff --git a/__init__.py b/__init__.py index 34b9a01..36e67f4 100644 --- a/__init__.py +++ b/__init__.py @@ -1,4 +1,9 @@ #! /usr/bin/env python """WSDL parsing services package for Web Services for Python.""" -import WSDLTools, ieee754, XMLname +ident = "$Id$" + +import WSDLTools +import ieee754 +import XMLname +