Commit f4843d48 authored by Andreas Jung's avatar Andreas Jung

Locale support for STXNG has been broken. Resetting the locale

settings is not a good idea. string.letters delivers also locale
base characters when the locale module is not included.
parent dc0399bb
import string
try:
del string
import locale
locale.setlocale(locale.LC_ALL,"")
except:
pass
import string
def punc_func(exclude):
punc = r''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment