]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/samples/stxview/StructuredText/STletters.py
Got a new version of StructuredText from Zope's CVS.
[wxWidgets.git] / 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 (file)
index 0000000..5168b01
--- /dev/null
@@ -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