[pywin32-checkins] pywin32/com/win32comext/adsi/demos search.py,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-05-31 12:43:42
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/adsi/demos In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30592 Modified Files: search.py Log Message: Close the search handle (should be a PyHANDLE - one day!) Index: search.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/adsi/demos/search.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** search.py 6 Oct 2004 02:04:49 -0000 1.2 --- search.py 31 May 2005 12:43:16 -0000 1.3 *************** *** 92,95 **** --- 92,96 ---- print_attribute( (a, None, None) ) hr = gc.GetNextRow(h) + gc.CloseSearchHandle(h) def main(): |