[pywin32-checkins] pywin32/AutoDuck makedfromi.py,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-07-11 06:58:54
|
Update of /cvsroot/pywin32/pywin32/AutoDuck In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15527 Modified Files: makedfromi.py Log Message: Roger notes that once he rearranged win32gui, we stopped crashing after 90 methods - so no longer need to 'split' win32gui in the chm Index: makedfromi.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/AutoDuck/makedfromi.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** makedfromi.py 30 Jan 2005 13:37:24 -0000 1.7 --- makedfromi.py 11 Jul 2006 06:58:52 -0000 1.8 *************** *** 86,90 **** # autoduck seems to crash when > ~97 methods. Loop multiple times, # creating a synthetic module name when this happens. ! max_methods = 90 method_num = 0 chunk_number = 0 --- 86,92 ---- # autoduck seems to crash when > ~97 methods. Loop multiple times, # creating a synthetic module name when this happens. ! # Hrmph - maybe this was related to the way we generate - ! # see rev 1.80 of win32gui.i for a change that prevents this! ! max_methods = 999 method_num = 0 chunk_number = 0 |