diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-24 00:07:03 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-24 00:07:03 (GMT) |
commit | 78de0b10479a95c359ee48a4cce661df9cb97c6d (patch) | |
tree | 3e6e90f3b66c21d91f3ce826ccd2f938b24d0664 /Doc/c-api | |
parent | ae7e8c44ac158d25bb5e88070a5db3fd68e60255 (diff) | |
parent | 544ae59b8e7a282e9dc5edadbca68b263b3a67b7 (diff) | |
download | cpython-78de0b10479a95c359ee48a4cce661df9cb97c6d.zip cpython-78de0b10479a95c359ee48a4cce661df9cb97c6d.tar.gz cpython-78de0b10479a95c359ee48a4cce661df9cb97c6d.tar.bz2 |
Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst
Patch by Corey Brune.
Diffstat (limited to 'Doc/c-api')
-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 |