[pywin32-checkins] pywin32/Pythonwin/pywin/tools browser.py, 1.10.2.1, 1.10.2.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-08-31 18:14:53
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30324/tools Modified Files: Tag: py3k browser.py Log Message: Use 0 instead of None for extended style in dialog tuples Index: browser.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/tools/browser.py,v retrieving revision 1.10.2.1 retrieving revision 1.10.2.2 diff -C2 -d -r1.10.2.1 -r1.10.2.2 *** browser.py 29 Aug 2008 06:16:42 -0000 1.10.2.1 --- browser.py 31 Aug 2008 18:15:01 -0000 1.10.2.2 *************** *** 329,333 **** dt = [ ! ["Python Object Browser", (0, 0, 200, 200), style, None, (8, "MS Sans Serif")], ["SysTreeView32", None, win32ui.IDC_LIST1, (0, 0, 200, 200), cs] ] --- 329,333 ---- dt = [ ! ["Python Object Browser", (0, 0, 200, 200), style, 0, (8, "MS Sans Serif")], ["SysTreeView32", None, win32ui.IDC_LIST1, (0, 0, 200, 200), cs] ] |