X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e42c7b856732d0f7c3a209a42c269c613d40578a..ddfc587a2ea899f654d940c21f102316a39985bd:/wxPython/samples/stxview/StructuredText/STletters.py diff --git a/wxPython/samples/stxview/StructuredText/STletters.py b/wxPython/samples/stxview/StructuredText/STletters.py new file mode 100644 index 0000000000..5168b01e47 --- /dev/null +++ b/wxPython/samples/stxview/StructuredText/STletters.py @@ -0,0 +1,15 @@ +import string + +try: + del string + import locale + locale.setlocale(locale.LC_ALL,"") +except: + pass + +import string + +letters = string.letters +punctuations = string.punctuation + +lettpunc = letters + punctuations