[pywin32-checkins] pywin32/win32/test test_win32file.py,1.10,1.11
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-09-22 14:31:35
|
Update of /cvsroot/pywin32/pywin32/win32/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21985/test Modified Files: test_win32file.py Log Message: [ 1408485 ] OVERLAPPED not hashable Index: test_win32file.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/test/test_win32file.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** test_win32file.py 21 Jun 2006 12:08:06 -0000 1.10 --- test_win32file.py 22 Sep 2006 14:31:32 -0000 1.11 *************** *** 248,251 **** --- 248,255 ---- self.testCompletionPortsNonQueued(True) + def testHashable(self): + overlapped = pywintypes.OVERLAPPED() + d = {} + d[overlapped] = "hello" class TestFindFiles(unittest.TestCase): |