[pywin32-checkins] pywin32/Pythonwin/pywin/framework/editor document.py, 1.14, 1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2010-06-18 17:25:59
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/editor In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv29079 Modified Files: document.py Log Message: Close change notification handle when FileWatchingThread exits Index: document.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/editor/document.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** document.py 6 May 2010 16:30:03 -0000 1.14 --- document.py 18 Jun 2010 17:25:51 -0000 1.15 *************** *** 318,319 **** --- 318,321 ---- # close a circular reference self.doc = None + if self.watchEvent: + win32api.FindCloseChangeNotification(self.watchEvent) |