[pywin32-checkins] pywin32/Pythonwin/pywin __init__.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-14 00:22:30
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24802/Pythonwin/pywin Modified Files: __init__.py Log Message: Various modernizations to .py code via the py3k branch. Index: __init__.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/__init__.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** __init__.py 26 Jan 2004 04:09:13 -0000 1.4 --- __init__.py 14 Nov 2008 00:22:25 -0000 1.5 *************** *** 1,5 **** # See if we run in Unicode mode. # This may be referenced all over the place, so we save it globally. ! import win32api, win32con, __builtin__ # This doesn't seem to work correctly on NT - see bug 716708 --- 1,5 ---- # See if we run in Unicode mode. # This may be referenced all over the place, so we save it globally. ! import win32api, win32con # This doesn't seem to work correctly on NT - see bug 716708 *************** *** 9,11 **** default_scintilla_encoding = "utf-8" # Scintilla _only_ supports this ATM ! del win32api, win32con, __builtin__ --- 9,11 ---- default_scintilla_encoding = "utf-8" # Scintilla _only_ supports this ATM ! del win32api, win32con |