diff options
author | Michi Henning <michi@zeroc.com> | 2005-07-04 02:06:23 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-07-04 02:06:23 +0000 |
commit | 11440f12c77b43a7d43e948e15df35c4b71c7e00 (patch) | |
tree | a93bf57b23a16939e6e1c99f42b9263191247704 /py/demo/Ice/value/Client.py | |
parent | Made Ice.ObjectImpl abstract. (diff) | |
download | ice-11440f12c77b43a7d43e948e15df35c4b71c7e00.tar.bz2 ice-11440f12c77b43a7d43e948e15df35c4b71c7e00.tar.xz ice-11440f12c77b43a7d43e948e15df35c4b71c7e00.zip |
Made Ice::Object abstract.
Diffstat (limited to 'py/demo/Ice/value/Client.py')
-rw-r--r-- | py/demo/Ice/value/Client.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/py/demo/Ice/value/Client.py b/py/demo/Ice/value/Client.py index a702095d55d..155849430cf 100644 --- a/py/demo/Ice/value/Client.py +++ b/py/demo/Ice/value/Client.py @@ -53,17 +53,6 @@ class Client(Ice.Application): print "==> " + simple.message print '\n'\ - "Ok, this worked. Now let's try to transfer an object for a class\n"\ - "with operations as type ::Ice::Object. Because no factory is installed,\n"\ - "the class will be sliced to ::Ice::Object.\n"\ - "[press enter]" - raw_input() - - obj = initial.getPrinterAsObject() - print "==> The type ID of the received object is \"" + obj.ice_id() + "\"" - assert(obj.ice_id() == "::Ice::Object") - - print '\n'\ "Yes, this worked. Now let's try to transfer an object for a class\n"\ "with operations as type ::Demo::Printer, without installing a factory\n"\ "first. This should give us a `no factory' exception.\n"\ |