summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2012-01-04 02:59:16 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2012-01-04 02:59:16 (GMT)
commit606e19dda3da637783e8b76b5919e0c57808bddd (patch)
tree1de6415348466544420e58b56cd7b21849eb4e41 /Doc/whatsnew
parent8f746d83e201231a5a86af95686408e959b86900 (diff)
downloadcpython-606e19dda3da637783e8b76b5919e0c57808bddd.zip
cpython-606e19dda3da637783e8b76b5919e0c57808bddd.tar.gz
cpython-606e19dda3da637783e8b76b5919e0c57808bddd.tar.bz2
Fix PyUnicode_Fill() doc: return type is Py_ssize_t, not int
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 86daa87..f458ae0 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -828,7 +828,7 @@ Functions and macros manipulating Py_UNICODE* strings:
* :c:macro:`Py_UNICODE_strncmp`: use :c:func:`PyUnicode_Tailmatch`
* :c:macro:`Py_UNICODE_strchr`, :c:macro:`Py_UNICODE_strrchr`: use
:c:func:`PyUnicode_FindChar`
- * :c:macro:`Py_UNICODE_FILL`
+ * :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`
* :c:macro:`Py_UNICODE_MATCH`
Encoders: