]> granicus.if.org Git - python/commitdiff
whatsnew/3.5: Fix formatting
authorYury Selivanov <yselivanov@sprymix.com>
Sun, 13 Sep 2015 05:40:36 +0000 (01:40 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Sun, 13 Sep 2015 05:40:36 +0000 (01:40 -0400)
Doc/whatsnew/3.5.rst

index 5d46eb5d234f14a158a899e8910bc5abc4d6bfeb..4b98ca23dbf6bee370922f27e67d18237f6504cd 100644 (file)
@@ -2102,17 +2102,17 @@ Build and C API Changes
 
 New ``calloc`` functions were added:
 
-  * :c:func:`PyMem_RawCalloc`,
-  * :c:func:`PyMem_Calloc`,
-  * :c:func:`PyObject_Calloc`,
-  * :c:func:`_PyObject_GC_Calloc`.
+* :c:func:`PyMem_RawCalloc`,
+* :c:func:`PyMem_Calloc`,
+* :c:func:`PyObject_Calloc`,
+* :c:func:`_PyObject_GC_Calloc`.
 
 (Contributed by Victor Stinner in :issue:`21233`.)
 
 New encoding/decoding helper functions:
 
-  * :c:func:`Py_DecodeLocale` (replaced ``_Py_char2wchar()``),
-  * :c:func:`Py_EncodeLocale` (replaced ``_Py_wchar2char()``).
+* :c:func:`Py_DecodeLocale` (replaced ``_Py_char2wchar()``),
+* :c:func:`Py_EncodeLocale` (replaced ``_Py_wchar2char()``).
 
 (Contributed by Victor Stinner in :issue:`18395`.)