0
votes
How do I deploy a Python desktop application?
Maybe IronPython can provide something for you? I bet those .exe/.dll-files can be pretty locked down. Not sure how such features work on mono, thus no idea how this works on Linux/OS X...
…
2
votes
Python imports: importing a module without .py extension?
The imp module is used for this:
daniel@purplehaze:/tmp/test$ cat mymodule
print "woho!"
daniel@purplehaze:/tmp …
2
votes
Python: defaultdict became unmarshallable object in 2.6?
wrt performance issues.. encoding a list of ~600000 dicts, each with 4 key/values, one of the values has a list (around 1-3 length) of 2 key/val dicts:
In [27]: timeit(cjson.encode, …
