[pywin32-checkins] /hgrepo/p/py/pywin32/pywin32: Fix build error on Python 2.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2011-06-18 11:09:51
|
changeset 3cc6365d7461 in /hgrepo/p/py/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgrepo/p/py/pywin32/pywin32?cmd=changeset;node=3cc6365d7461 summary: Fix build error on Python 2.3 diffstat: com/win32comext/shell/src/shell.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diffs (17 lines): diff -r 7176ed5cdddc -r 3cc6365d7461 com/win32comext/shell/src/shell.cpp --- a/com/win32comext/shell/src/shell.cpp Tue Jun 07 00:21:07 2011 -0400 +++ b/com/win32comext/shell/src/shell.cpp Sat Jun 18 07:08:30 2011 -0400 @@ -3216,11 +3216,11 @@ goto done; if (!PyObject_AsPIDL(obitem, &item, FALSE)) goto done; - + { PY_INTERFACE_PRECALL; hr = (*pfnSHCreateShellItem)(parent_pidl, parent_folder, item, &isi); PY_INTERFACE_POSTCALL; - + } if (FAILED(hr)) { PyCom_BuildPyException(hr); goto done; |