Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6501
Modified Files:
CHANGES.txt setup.py
Log Message:
Build 208
Index: setup.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** setup.py 20 Mar 2006 01:17:24 -0000 1.39
--- setup.py 20 Mar 2006 03:08:35 -0000 1.40
***************
*** 1,3 ****
! build_id="207.9" # 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="208" # 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: CHANGES.txt
===================================================================
RCS file: /cvsroot/pywin32/pywin32/CHANGES.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** CHANGES.txt 11 Jan 2006 01:31:41 -0000 1.4
--- CHANGES.txt 20 Mar 2006 03:08:34 -0000 1.5
***************
*** 6,9 ****
--- 6,39 ----
However contributors are encouraged to add their own entries for their work.
+ Build 208
+ ---------
+ * pywintypes: fix reference leak in PyOVERLAPPED objects.
+ * isapi: fix memory leak; filter "load order" handling; error
+ rendering.
+ * pythonwin: Disable some old DDE hacks to prevent Data Execution Prevention
+ (DEP) errors in Pythonwin.
+ * odbc: gets support for Unicode, corrects support for BIT, and
+ SQLDataSources() method.
+ * win32job: New win32job module for access to the win32 "job" functions
+ * win32inet: Add WinHttpGetIEProxyConfigForCurrentUser()
+ * pythoncom.Empty now does what it implies - passes a variant with VT_EMPTY.
+ New pythoncom.ArgNotFound supports the old behaviour (of VT_ERROR with
+ DISP_E_PARAMNOTFOUND); CoInitializeEx change described in Build 206 was
+ not implemented - now it is!
+ * win32com: large unsigned ints may previously have been returned as negative
+ Python integers; makepy no longer displays a GUI progress dialog by default.
+ * win32com.authorization: New package from Roger Upole.
+ * win32com.mapi: New IProviderAdmin support from John Nielsen; add
+ IMAPIStatus support
+ * win32com.shell: Allow SHFileOperation to accept a string containing
+ multiple file names, prevent Windows handle leak in IQueryAssociations.
+ * win32com.adsi: Always return extended error info when available, and expose
+ ADsGetLastError explicitly.
+ * Leonard Ritter and Robert Förtsch contributed some IE extension samples
+ (see win32com\demos)
+ * .chm documentation now includes a link to search MSDN and google for many
+ API functions
+ * Many other minor fixes and enhancements.
+
Build 207
--------
|