commit | 82864d1ab101d971e77b73cac9e994fd09cd796b | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sun Nov 15 16:18:58 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sun Nov 15 16:18:58 2009 +0000 |
tree | 65335906c1a5f330660bb1f64d698198d50856d3 | |
parent | d5b34d4597a7163edf20f831db620b0a4fe57d5d [diff] [blame] |
Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, PyFormat_FromStringV and PyErr_Format.
diff --git a/Misc/NEWS b/Misc/NEWS index 051bff8..1e406f0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -1462,6 +1462,9 @@ C-API ----- +- Issue #Add '%lld' and '%llu' support to PyString_FromFormat(V) + and PyErr_Format, on machines with HAVE_LONG_LONG defined. + - Add new C-API function PyOS_string_to_double, and deprecated PyOS_ascii_atof and PyOS_ascii_strtod.