Update of /cvsroot/happydoc/HappyDoc
In directory usw-pr-cvs1:/tmp/cvs-serv24396
Modified Files:
test_happydoc.py
Log Message:
Call setlocale() on startup so that string.letters is properly initialized.
Index: test_happydoc.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/test_happydoc.py,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -d -r1.88 -r1.89
*** test_happydoc.py 24 Aug 2002 17:54:02 -0000 1.88
--- test_happydoc.py 25 Aug 2002 18:33:29 -0000 1.89
***************
*** 51,54 ****
--- 51,57 ----
__version__ = '0.0'
+ import locale
+ locale.setlocale(locale.LC_ALL, '')
+
#
# Import system modules
|