increased maximum difficulty multiplier to 30
[p2pool.git] / SOAPpy / SOAP.py
1 """This file is here for backward compatibility with versions <= 0.9.9 
2
3 Delete when 1.0.0 is released!
4 """
5
6 ident = '$Id: SOAP.py 541 2004-01-31 04:20:06Z warnes $'
7 from version import __version__
8
9 from Client      import *
10 from Config      import *
11 from Errors      import *
12 from NS          import *
13 from Parser      import *
14 from SOAPBuilder import *
15 from Server      import *
16 from Types       import *
17 from Utilities     import *
18 import wstools
19 import WSDL
20
21 from warnings import warn
22
23 warn("""
24
25 The sub-module SOAPpy.SOAP is deprecated and is only
26 provided for short-term backward compatibility.  Objects are now
27 available directly within the SOAPpy module.  Thus, instead of
28
29    from SOAPpy import SOAP
30    ...
31    SOAP.SOAPProxy(...)
32
33 use
34
35    from SOAPpy import SOAPProxy
36    ...
37    SOAPProxy(...)
38
39 instead.
40 """, DeprecationWarning)