Search Results

6
votes

XML-RPC: best way to handle 64-bit values?

Some libraries support 64 bits extensions, indeed, but there doesn't seem to be a standard. xmlrpc-c, for example, has a so called i8 b …
2
votes

How should I best emulate and/or avoid enum’s in Python?

The builtin way to do enums is: (FOO, BAR, BAZ) = range(3) which works fine for small sets, but has some drawbacks: you need to count the number of e …
0
votes

Report generation

You can build some fancy PDFs from Python with the ReportLab toolkit. …
1
vote

Substitutions inside links in reST / Sphinx

You can write a Sphinx extension that creates a role lik …