diff options
author | Eric Smith <eric@trueblade.com> | 2010-01-27 00:28:29 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2010-01-27 00:28:29 (GMT) |
commit | ee931b7253fe332125dad0b7ba1681bdebb0a575 (patch) | |
tree | 554ff3645e00dd0d7dcb90992eefd3fcc8d2ab26 /Misc | |
parent | 92e68af56a2b95627c2220c3e190d7e3c2d4643e (diff) | |
download | cpython-ee931b7253fe332125dad0b7ba1681bdebb0a575.zip cpython-ee931b7253fe332125dad0b7ba1681bdebb0a575.tar.gz cpython-ee931b7253fe332125dad0b7ba1681bdebb0a575.tar.bz2 |
Issue #7766: Change sys.getwindowsversion() return value to a named tuple and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 2.7 alpha 3? Core and Builtins ----------------- +- Issue #7766: Change sys.getwindowsversion() return value to a named + tuple and add the additional members returned in an OSVERSIONINFOEX + structure. The new members are service_pack_major, service_pack_minor, + suite_mask, and product_type. + - Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) could crash in many places because of the PyByteArray_AS_STRING() macro returning NULL. The macro now returns a statically allocated empty |