summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-09-13 05:40:36 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-09-13 05:40:36 (GMT)
commita7672baa734a955fe0bec47d050dffb5ecbb4fff (patch)
treec468a71b8a41779e14c41f4125f01e85ebe0be76 /Doc/whatsnew/3.5.rst
parent72dab131054093ed1b93fcbe0d88ab2e59d4a267 (diff)
downloadcpython-a7672baa734a955fe0bec47d050dffb5ecbb4fff.zip
cpython-a7672baa734a955fe0bec47d050dffb5ecbb4fff.tar.gz
cpython-a7672baa734a955fe0bec47d050dffb5ecbb4fff.tar.bz2
whatsnew/3.5: Fix formatting
Diffstat (limited to 'Doc/whatsnew/3.5.rst')
-rw-r--r--Doc/whatsnew/3.5.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 5d46eb5..4b98ca2 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -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`.)