[pywin32-checkins] pywin32 setup.py, 1.77, 1.78 CHANGES.txt, 1.22, 1.23
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-07-31 09:30:45
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24031 Modified Files: setup.py CHANGES.txt Log Message: build 212 Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** setup.py 26 Jul 2008 07:02:34 -0000 1.77 --- setup.py 31 Jul 2008 09:30:53 -0000 1.78 *************** *** 1,3 **** ! build_id="211.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="212" # 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.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** CHANGES.txt 7 Jun 2008 07:23:54 -0000 1.22 --- CHANGES.txt 31 Jul 2008 09:30:53 -0000 1.23 *************** *** 9,15 **** ---------------- ! * Add win32net.NetValidatePasswordPolicy, including a demo. - * Add win32pipe.TransactNamedPipe, including tests. Since build 210: --- 9,40 ---- ---------------- ! * Remove warning about VARDESCs in obscure circumstances when using ! COM objects. ! ! * Add winapi.SetSystemPowerState(), win32pipe.TransactNamedPipe(), ! win32net.NetValidatePasswordPolicy(), ! ! * win32api.GetConsoleTitle() could raise win32api.error with an error ! code of 0 when the title was > 64 characters. It now returns the ! full title. ! ! * New IExplorerPaneVisibility interface, minor shell bugfixes. ! ! * Fix a couple of makepy related unicode issues, and generate to ! a .temp file so an error doesn't leave a 1/2 generated module. ! ! * Fix so makepy works in IDLE in non-English locales. ! ! * Pythonwin changes from Roger: ! - Right-click menu gets "Copy code without prompts" and "Execute ! code from clipboard" options. ! - If text is selected when period key is pressed, replace text ! instead of doing autocomplete ! - Add a keyboard shortcut to fold up second level indents ! - Allow keypad keys to perform original function when folding ! is disabled (feature req 1798328) ! ! * Add some extra service configuration parameters introduced with Vista Since build 210: |