diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-08-11 13:02:09 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-08-11 13:02:09 +0000 |
commit | c078a3026caeffeb84be7ec1c81d8d13f508c7c3 (patch) | |
tree | 295cf73efda5a5aaae57cd14c586d931ec6efca3 /py/python/Ice.py | |
parent | - Removed latency oneway batch with 2k and 10k tests because there is no (diff) | |
download | ice-c078a3026caeffeb84be7ec1c81d8d13f508c7c3.tar.bz2 ice-c078a3026caeffeb84be7ec1c81d8d13f508c7c3.tar.xz ice-c078a3026caeffeb84be7ec1c81d8d13f508c7c3.zip |
partial solution for bug 943
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index d39d26dd078..1fc0f3713f1 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -124,6 +124,14 @@ IcePy._t_ObjectPrx = IcePy.declareProxy('::Ice::Object') IcePy._t_LocalObject = IcePy.declareClass('::Ice::LocalObject') # +# Sequence mappings. +# +IcePy.SEQ_DEFAULT = 0 +IcePy.SEQ_TUPLE = 1 +IcePy.SEQ_LIST = 2 +#IcePy.SEQ_ARRAY = 3 + +# # Slice checksum dictionary. # sliceChecksums = {} |