diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-25 11:23:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-25 11:23:05 (GMT) |
commit | b2a5be0763ee572bed431335eb4712fac94f5a7b (patch) | |
tree | 9960001b9d6da0e974b3af426d2a1a16b5d8829e /Misc/NEWS | |
parent | 07a1f65a9362810e186059ef96e5b9cb19cb9e44 (diff) | |
download | cpython-b2a5be0763ee572bed431335eb4712fac94f5a7b.zip cpython-b2a5be0763ee572bed431335eb4712fac94f5a7b.tar.gz cpython-b2a5be0763ee572bed431335eb4712fac94f5a7b.tar.bz2 |
Issue #27867: Function PySlice_GetIndicesEx() is 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.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -40,6 +40,10 @@ Library C API ----- +- Issue #27867: Function PySlice_GetIndicesEx() is 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. + - 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 |