STINNER Victor added the comment:

I accept hacks to speedup Python is the site module, but it becomes more 
surprising in the locale module. The issue #9548 proposes to a more generic 
solution for the locale module at startup.


-CONFIG_LINE = re.compile(r'^(?P<key>(\w|[-_])+)\s*=\s*(?P<value>.*)\s*$')
+CONFIG_LINE = None

If you set the constant to None, it's better to remove it completly (or make it 
private). It's a public variable, someone may try to read it. I don't know why 
it is public.

----------
nosy: +haypo

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19205>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to