[pywin32-checkins] pywin32 CHANGES.txt,1.35,1.36
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-10 11:13:57
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9900 Modified Files: CHANGES.txt Log Message: Modernization of win32wnet, via the py3k branch: * Move to getattro/setattro * Add support for WNetAddConnection2 taking a NETRESOURCE as the first param. * Add tp_new slots for the type, so the type can be used in-place of global functions. * Replace NCB and NETRESOURCE methods with the actual types. * Treat CallName and Name attributes as true strings. * Many more tests. Index: CHANGES.txt =================================================================== RCS file: /cvsroot/pywin32/pywin32/CHANGES.txt,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** CHANGES.txt 8 Dec 2008 12:37:50 -0000 1.35 --- CHANGES.txt 10 Dec 2008 11:13:51 -0000 1.36 *************** *** 9,12 **** --- 9,21 ---- ---------------- + * "Modernization" changes, instigated by py3k: + + - Many older modules now accept unicode arguments where previously they + only accepted strings - notably, win32ui, win32wnet ... + + - win32wnet: NCB and NETRESOURCE attributes are now types rather than + methods. NETRESOURCE string attributes may return None if the win32 + structure has a NULL pointer (previously an empty string was returned) + * Added win32inet.WinHttpGetDefaultProxyConfiguration() |