6
votes
6answers
2k views
Tutorial for Python - Should I use 2.x or 3.0?
Python 3.0 is in beta with a final release coming shortly. Obviously it will take some significant time for general adoption and for it to eventually replace 2.x.
I am writing a tutorial about …
4
votes
4answers
123 views
Default encoding of exception messages
The following code examines the behaviour of the float() method when fed a non-ascii symbol:
import sys
try:
float(u'\xbd')
except ValueError as e:
print sys.getdefaultencoding() # in my system, …
3
votes
4answers
92 views
how to print number with commas as thousands separators in Python 2.x
I am trying to print an integer in Python 2.6.1 with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? I have seen many …
3
votes
3answers
103 views
making python 2.6 exception backward compatible
I have the following python code:
try:
pr.update()
except ConfigurationException as e:
returnString=e.line+' '+e.errormsg
This works under python 2.6, but the "as e" syntax fails …
1
vote
3answers
78 views
python modify __metaclass__ for whole program
EDIT: Note that this is a REALLY BAD idea to do in production code. This was just an interesting thing for me. Don't do this at home!
Is it possible to modify __metaclass__ variable for whole program …
0
votes
1answer
15 views
Error while installing Poster (Python Module)
I'm trying to install Chris Atlee's python Poster library so I can upload a file using a HTTP POST query from within my script.
On python 2.3, when I type # python setup.py install, I get the …
