summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-11-23 12:47:30 (GMT)
committerGitHub <noreply@github.com>2017-11-23 12:47:30 (GMT)
commitbdb8315c21825487b54852ff0511fb4881ea2181 (patch)
tree4eed171f1a04b3742b63d4a2d34cd5ef063ff139 /Misc
parent5ce1069a6ff0d5443074d33ba1d403ccd2eaf3d3 (diff)
downloadcpython-bdb8315c21825487b54852ff0511fb4881ea2181.zip
cpython-bdb8315c21825487b54852ff0511fb4881ea2181.tar.gz
cpython-bdb8315c21825487b54852ff0511fb4881ea2181.tar.bz2
bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2017-11-19-09-46-27.bpo-1102.NY-g1F.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2017-11-19-09-46-27.bpo-1102.NY-g1F.rst b/Misc/NEWS.d/next/Windows/2017-11-19-09-46-27.bpo-1102.NY-g1F.rst
new file mode 100644
index 0000000..6a6618e
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2017-11-19-09-46-27.bpo-1102.NY-g1F.rst
@@ -0,0 +1,4 @@
+Return ``None`` when ``View.Fetch()`` returns ``ERROR_NO_MORE_ITEMS``
+instead of raising ``MSIError``.
+
+Initial patch by Anthony Tuininga.