Tom Dunham

928
Reputation
84 views

Registered User

Name Tom Dunham
Member for 1 year
Seen Nov 26 at 12:51
Website
Location GB
Age 31
Nov
30
awarded  Enlightened
Nov
30
awarded  Nice Answer
Nov
30
awarded  Nice Answer
Oct
4
asked Meta and # in a UK mac terminal
Sep
22
accepted Copy constructor in python
Sep
16
awarded  Yearling
Sep
7
awarded  Notable Question
Sep
4
answered How can I set up an editor to work with Git on Windows?
Aug
13
comment how can I force division to be floating point in Python?
whoops - yes I did mean 1.0; thanks Brian.
Aug
12
comment how can I force division to be floating point in Python?
float(b) is not better if b == 1j (or some other complex number). In that case float(b) would raise a TypeError. The question does say a and b are integers so it won't matter in this case - but the correct workaround in the general case is to multiply one of the arguments by 0.1, see pep 238 - python.org/dev/peps/pep-0238.
Aug
11
accepted Python : Assert that variable is instance method?
Aug
11
answered Python : Assert that variable is instance method?
Aug
6
answered Copy constructor in python
Jul
28
revised Python 2.x gotcha’s and landmines
added link to history of python
Jul
28
comment Python 2.x gotcha’s and landmines
"The correct work-around is subtle: casting an argument to float() is wrong if it could be a complex number; adding 0.0 to an argument doesn't preserve the sign of the argument if it was minus zero. The only solution without either downside is multiplying an argument (typically the first) by 1.0. This leaves the value and sign unchanged for float and complex, and turns int and long into a float with the corresponding value." (PEP 238 - python.org/dev/peps/pep-0238)
Jul
8
answered what next after ‘dive into python’
Jul
7
awarded  Nice Question