0
votes
Python’s unittest logic
If I recall correctly in that test framework the setUp method is run before each test
…
1
vote
Python and “re”
You are probably being tripped up by the different methods re.search and re.match.
…
3
votes
Is there a difference between `==` and `is` in python?
http://docs.python.org/lib/comparisons.html
is tests for identity
== tests for equality
Each (small) integer …
0
votes
How to build and deploy Python web applications
Would SCons do what you want?
http://www.scons.org/
…
1
vote
What is a good PDF report generator tool for python?
If you don't like ReportLab I would suggest generating HTML - there are dozens of ways to do this and converting to PDF for final output (html2pdf for example).
…
