This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
wstools-py3
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
- Added ident string containing CVS version to all files that were
main
Gregory Warnes
21 years ago
parent
0b20903c8e
commit
44f489b0c7
6 changed files
with
17 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
TimeoutSocket.py
+2
-0
Utility.py
+2
-1
WSDLTools.py
+2
-0
XMLSchema.py
+2
-0
XMLname.py
+6
-1
__init__.py
+ 3
- 0
TimeoutSocket.py
View File
@@ -12,6 +12,9 @@
Piers Lauder <piers@cs.su.oz.au>
Radovan Garabik <garabik@melkor.dnp.fmph.uniba.sk>
"""
ident = "$Id$"
import string, socket, select, errno
WSAEINVAL = getattr(errno, 'WSAEINVAL', 10022)
+ 2
- 0
Utility.py
View File
@@ -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
+ 2
- 1
WSDLTools.py
View File
@@ -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."""
+ 2
- 0
XMLSchema.py
View File
@@ -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
+ 2
- 0
XMLname.py
View File
@@ -13,6 +13,8 @@ Version 0.9.0
"""
ident = "$Id$"
from re import *
+ 6
- 1
__init__.py
View File
@@ -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
Write
Preview
Loading…
Cancel
Save