[pywin32-checkins] pywin32 CHANGES.txt,1.2,1.3 MANIFEST.in,1.9,1.10 setup.py,1.29,1.30
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-01-10 06:53:44
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3189 Modified Files: CHANGES.txt MANIFEST.in setup.py Log Message: Build 206 Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** setup.py 3 Dec 2005 03:46:15 -0000 1.29 --- setup.py 10 Jan 2006 06:53:36 -0000 1.30 *************** *** 1,3 **** ! build_id="205.1" # may optionally include a ".{patchno}" suffix. # Putting buildno at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) --- 1,3 ---- ! build_id="206" # may optionally include a ".{patchno}" suffix. # Putting buildno at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) Index: MANIFEST.in =================================================================== RCS file: /cvsroot/pywin32/pywin32/MANIFEST.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MANIFEST.in 2 May 2005 12:10:45 -0000 1.9 --- MANIFEST.in 10 Jan 2006 06:53:36 -0000 1.10 *************** *** 17,20 **** --- 17,22 ---- include win32/test/*.py include win32/Demos/*.py + include win32/Demos/security/*.py + include win32/Demos/security/sspi/*.py include win32/src/*.h include win32/src/*.manifest Index: CHANGES.txt =================================================================== RCS file: /cvsroot/pywin32/pywin32/CHANGES.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CHANGES.txt 2 Dec 2005 07:55:13 -0000 1.2 --- CHANGES.txt 10 Jan 2006 06:53:36 -0000 1.3 *************** *** 6,9 **** --- 6,40 ---- However contributors are encouraged to add their own entries for their work. + Build 206 + -------- + * Prevent the "display name" of a COM object ever being Unicode and + therefore a possible cause of unexpected Unicode decode errors. + * Correct and document behaviour of CoInitializeEx/CoInitialize exception + throwing behaviour - previously a failure would leave a stale Python + exception. + * Fix memory leak when doing str(PySID) (Roger Upole) + * New IE Toolbar demo contributed by Leonard Ritter, plus a few new + AXControl related interfaces that were necessary. + * win32timezone now works in non-English Windows versions. timezone + objects can now be pickled (Jason Coombs) + * Prevent stale Windows errors causing win32api.GetConsoleTitle() to fail. + * Remove workaround for Python bug so we again write a file encoding to + makepy generated files in all Python versions. + * New win32gui function CreateIconFromResource. + * Add win32file.QueryDosDevice (Roger Upole) + * Fix error when using win32pipe in a "bundled" py2exe app. + * Better support for py2exe based services, including debugging support. + * Add support for all VARIANT types in COM arrays (a few were missing) + * GetBitmapBits() can return a string or a list (a string being *much* + faster) + * Fix win32gui taskbar demo to handle the fact explorer may not (yet) be + running. + * win32 directory should again build on Windows CE (Luke Dunstan) + * Support for IGlobalInterfaceTable (Stefan Schukat) + * A number of pythonwin framework enhancements (Adal Chiriliuc) + * Better Auto-Complete list in pythonwin for COM objects (Jerry Gamache) + * win32api.GetVersionEx takes an optional param - if 1, we return a longer + tuple representing the OSVERSIONINFOEX structure. + Build 205 --------- |