4
votes
Continuous Integration System for a Python Codebase
We use both Buildbot and Hudson for Jython development. Both are useful, but have different strengths and weaknesses.
Buildbot's configuration is pure Python and quite simple once you get …
0
votes
0
votes
5
votes
How to parse ISO formatted date in python?
Try the iso8601 module; it does exactly this.
There are several other options mentioned on the …
11
votes
Django vs other Python web frameworks?
I'd say you're being a bit too pessimistic about "not learning anything" using Django or a similar full-stack framework, and underestimating the value of documentation and a large community. Even …
1
vote
Preserving the Java-type of an object when passing it from Java to Jython
You appear to be using an old version of Jython. In current Jython versions, the Python bool type corresponds to a Java Boolean.
Jython is not transforming the Ja …
2
votes
Why Jython behaves inconsistently when tested with PyStone?
Benchmarking a runtime environment as complex as the JVM is hard. Even excluding the JIT and GC, you've got a big heap, memory layout and cache variation between runs.
One thing that helps …
1
vote
creating presentations with python
There's always Bruce, The Presentation Tool. It uses reStructuredText input, which is a lot simpler than LaTeX - shouldn't ta …
0
votes
How to make pdb recognize that the source has changed between runs?
What do you mean by "rerun the program in pdb?" If you've imported a module, Python won't reread it unless you explicitly ask to do so, i.e. with reload(module). However, reload …
13
votes
String manipulation in Python
Assuming you're not using a variable-length text encoding such as UTF-8, you can use array.array:
>>> import array
>>> a = array.array('c', 'foo')
> …
1
vote
3
votes
How do you automate the launching/debugging of large scale projects?
Instead of forwarding the signal to the debuggee from Python, you could try just ignoring it. The following worked for me:
import signal
signal.signal(signal.SIGINT, signal.SIG_IGN …
4
votes
For each function in class within python
Depends what you mean by "function". Something like this could work, though:
import inspect
def methods(c):
return (m for m in (getattr(c, d) for d in dir(c))
if i …
3
votes
Matplotlib suddenly crashes after reinstalling Xcode?
You're using Python from Fink, so Xcode doesn't have anything to do with it. from numpy.core.ma import * works fine with Apple's bundled Python and NumPy too.
…
2
votes
Creating a tree from a list of tuples
Python sorts tuples from left to right, so if you arrange your tuples so the first sort key is the first item and so forth, it'll be reasonably efficient.
The mapping from a list of tuples …
