summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/winreg.rst4
-rw-r--r--Doc/whatsnew/3.6.rst3
2 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/winreg.rst b/Doc/library/winreg.rst
index adac775556..8f8cc680fc 100644
--- a/Doc/library/winreg.rst
+++ b/Doc/library/winreg.rst
@@ -661,10 +661,14 @@ For more information, see `Registry Value Types
A 64-bit number.
+ .. versionadded:: 3.6
+
.. data:: REG_QWORD_LITTLE_ENDIAN
A 64-bit number in little-endian format. Equivalent to :const:`REG_QWORD`.
+ .. versionadded:: 3.6
+
.. data:: REG_RESOURCE_LIST
A device-driver resource list.
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 93402a384d..3b1aee458d 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -424,8 +424,7 @@ The "Object allocated at" traceback is new and only displayed if
winreg
------
-The :func:`QueryValueEx <winreg.QueryValueEx>` function now returns
-integer values for registry type ``REG_QWORD``.
+Added the 64-bit integer type :data:`REG_QWORD <winreg.REG_QWORD>`.
(Contributed by Clement Rouault in :issue:`23026`.)