diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-24 00:06:44 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-24 00:06:44 (GMT) |
commit | 544ae59b8e7a282e9dc5edadbca68b263b3a67b7 (patch) | |
tree | 887dfccca47f02963f36df790e97c5a1e77f1584 | |
parent | 77e543c6cdd40debd215fa6e913fcc64c0748eb0 (diff) | |
download | cpython-544ae59b8e7a282e9dc5edadbca68b263b3a67b7.zip cpython-544ae59b8e7a282e9dc5edadbca68b263b3a67b7.tar.gz cpython-544ae59b8e7a282e9dc5edadbca68b263b3a67b7.tar.bz2 |
Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst
Patch by Corey Brune.
-rw-r--r-- | Doc/c-api/unicode.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 0b45958..a0672ca 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -613,8 +613,7 @@ APIs: This function checks that *unicode* is a Unicode object, that the index is not out of bounds, and that the object can be modified safely (i.e. that it - its reference count is one), in contrast to the macro version - :c:func:`PyUnicode_WRITE_CHAR`. + its reference count is one). .. versionadded:: 3.3 |