summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-11-24 15:11:18 (GMT)
committerGitHub <noreply@github.com>2017-11-24 15:11:18 (GMT)
commit19fb134185ce155bc53f517116fca73093ba55e9 (patch)
treee38accbe5c87a8c93a40ef649e2a07cd9cee79df /Misc
parent9e87e7776f7ace66baaf7247233afdabd00c2b44 (diff)
downloadcpython-19fb134185ce155bc53f517116fca73093ba55e9.zip
cpython-19fb134185ce155bc53f517116fca73093ba55e9.tar.gz
cpython-19fb134185ce155bc53f517116fca73093ba55e9.tar.bz2
bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)
The previous behavior was to raise an exception NotImplementedError: result of type 0 when the value of the property is VT_EMPTY.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-11-24-14-07-55.bpo-12239.Nj3A0x.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-24-14-07-55.bpo-12239.Nj3A0x.rst b/Misc/NEWS.d/next/Library/2017-11-24-14-07-55.bpo-12239.Nj3A0x.rst
new file mode 100644
index 0000000..20d9477
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-11-24-14-07-55.bpo-12239.Nj3A0x.rst
@@ -0,0 +1,2 @@
+Make :meth:`msilib.SummaryInformation.GetProperty` return ``None`` when the
+value of property is ``VT_EMPTY``. Initial patch by Mark Mc Mahon.