Reto Schüttel added the comment:
Hey Mark, Stefan
I've got the example working again with 3.1 and it appears like the behaviour
has been reverted to the pre-3.0 days. So the problem is fixed for me :)!
with 3.1 (and 2.6) atof only accepts a '.' as a decimal delimiter, reg
New submission from Reto Schüttel :
Hi
While helping Brandon Rhodes to port PyEphem[1] to Python 3 we struggled
over a
strange locale-related problem on OS X. PyEphem is a library which can do
astronomical computations like tracking the position of stars, planets and
earth satellites relative
Reto Schüttel <[EMAIL PROTECTED]> added the comment:
This is even worse in case of attributes (like in pyephem for the
observer object):
class Foo(object):
def __init__(self):
self.long = 1
x = Foo()
print x.long
2to3 produces:
--- attr.py (or