summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-25 11:27:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-25 11:27:44 (GMT)
commit6e08baf12da60950561d50273799df93d120c127 (patch)
tree47c83df77e52659776a270fe29509c21b9174af5 /Misc
parenta8df8471d254086548325ffc451cdb73111bce83 (diff)
parent512c57cb72e108d0f68ceecbc88dfe3b2eb56371 (diff)
downloadcpython-6e08baf12da60950561d50273799df93d120c127.zip
cpython-6e08baf12da60950561d50273799df93d120c127.tar.gz
cpython-6e08baf12da60950561d50273799df93d120c127.tar.bz2
Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with
a macro if Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher. Added functions PySlice_Unpack() and PySlice_AdjustIndices().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 34d4565..137de9d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -623,6 +623,11 @@ Windows
C API
-----
+- Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with
+ a macro if Py_LIMITED_API is not set or set to the value between 0x03050400
+ and 0x03060000 (not including) or 0x03060100 or higher. Added functions
+ PySlice_Unpack() and PySlice_AdjustIndices().
+
- Issue #29083: Fixed the declaration of some public API functions.
PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in
limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and