[Zope] language environment changes after a while
Dieter Maurer
dieter@handshake.de
Sun, 27 Oct 2002 19:06:48 +0100
Dirk Datzert writes:
> I have detected a problem I can't find rational:
>
> I integrated PublisherProfile product from cvs.zope.org and after zope
> starts it writes the time values with formating value %.3f as dotted
> values of 0.789 . After a while the format changes to comma values 0,789
> .
>
> Where should I search for a bug ? I don't thing that it is a problem of
> PublisherProfile product.
Either one of your Python modules or one of the external C implementations
sets the locale. This is a very bad idea, as the locale setting is global...
Dieter