diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-14 12:50:24 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-14 12:50:24 -0230 |
commit | 0d3f5c27312df723bb6682cca48dbb18c9f874b9 (patch) | |
tree | f9ad7e4126cbfd50c698a1d73fc6fd14e33a15bc /py/python/Ice.py | |
parent | Merge branch 'master' of ssh://git.zeroc.com/home/git/ice (diff) | |
download | ice-0d3f5c27312df723bb6682cca48dbb18c9f874b9.tar.bz2 ice-0d3f5c27312df723bb6682cca48dbb18c9f874b9.tar.xz ice-0d3f5c27312df723bb6682cca48dbb18c9f874b9.zip |
Fixed py and rb to compile again with Enpoint changes
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 7af0b3de01e..39ca9d6ef50 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -252,16 +252,16 @@ import Ice_Router_ice import Ice_ServantLocator_ice # -# Replace Endpoint with our implementation. +# Replace EndpointInfo with our implementation. # -del Endpoint -Endpoint = IcePy.Endpoint -del TcpEndpoint -TcpEndpoint = IcePy.TcpEndpoint -del UdpEndpoint -UdpEndpoint = IcePy.UdpEndpoint -del OpaqueEndpoint -OpaqueEndpoint = IcePy.OpaqueEndpoint +#del EndpointInfo +#Endpoint = IcePy.EndpointInfo +#del TcpEndpointInfo +#TcpEndpointInfo = IcePy.TcpEndpointInfo +#del UdpEndpointInfo +#UdpEndpointInfo = IcePy.UdpEndpointInfo +#del OpaqueEndpointInfo +#OpaqueEndpointInfo = IcePy.OpaqueEndpointInfo class ThreadNotification(object): '''Base class for thread notification callbacks. A subclass must |