mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +01:00
41 lines
795 B
Python
41 lines
795 B
Python
|
"""This file is here for backward compatibility with versions <= 0.9.9
|
||
|
|
||
|
Delete when 1.0.0 is released!
|
||
|
"""
|
||
|
|
||
|
ident = '$Id$'
|
||
|
from version import __version__
|
||
|
|
||
|
from Client import *
|
||
|
from Config import *
|
||
|
from Errors import *
|
||
|
from NS import *
|
||
|
from Parser import *
|
||
|
from SOAPBuilder import *
|
||
|
from Server import *
|
||
|
from Types import *
|
||
|
from Utilities import *
|
||
|
import wstools
|
||
|
import WSDL
|
||
|
|
||
|
from warnings import warn
|
||
|
|
||
|
warn("""
|
||
|
|
||
|
The sub-module SOAPpy.SOAP is deprecated and is only
|
||
|
provided for short-term backward compatibility. Objects are now
|
||
|
available directly within the SOAPpy module. Thus, instead of
|
||
|
|
||
|
from SOAPpy import SOAP
|
||
|
...
|
||
|
SOAP.SOAPProxy(...)
|
||
|
|
||
|
use
|
||
|
|
||
|
from SOAPpy import SOAPProxy
|
||
|
...
|
||
|
SOAPProxy(...)
|
||
|
|
||
|
instead.
|
||
|
""", DeprecationWarning)
|