def dump_long(self, value, write): #if value > MAXINT or value <> # raise OverflowError, "long int exceeds XML-RPC limits" write("") write(str(int(value))) write("\n") dispatch[LongType] = dump_long
Tuesday, February 13, 2007
python xml-rpc, supporting 64-bit ints
xml-rpc is nice, but brain-dead in that it doesn't support 64-bit integers. (Update: I was just being polite. xml-rpc is brain-dead all around). There are a couple of extensions to the xml-rpc standard that suggest a new tag for this. If you're using the python xml-rpc library and wish to have 64-bit int support, you can comment out the two lines below in xmlrpclib.py:
Subscribe to:
Posts (Atom)
-
A while back I answered a question on Stack Overflow asking about the relative popularity of The Art of Computer Programming . I replied wit...
-
I learned a lot from Laurens Kuiper's blog post Testing out DuckDB's Full Text Search Extension , but unfortunately couldn't fin...
-
First, let's draw a cube: cube(10,true); Now, let's animate a 360 degree turntable view of the cube: rotate([0,0,$...