diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-17 22:01:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-17 22:01:02 (GMT) |
commit | 6009ece0ede4a2a39b3cfe15d53fed9e33422276 (patch) | |
tree | 27ba04aa4e96c821062225a2f04c34541b26183d /Doc/c-api/bytes.rst | |
parent | f5be090bc3fafe10d699716cbe25800b5b69fa6d (diff) | |
download | cpython-6009ece0ede4a2a39b3cfe15d53fed9e33422276.zip cpython-6009ece0ede4a2a39b3cfe15d53fed9e33422276.tar.gz cpython-6009ece0ede4a2a39b3cfe15d53fed9e33422276.tar.bz2 |
Replace :func: by :cfunc:
To get links to the C functions
Diffstat (limited to 'Doc/c-api/bytes.rst')
-rw-r--r-- | Doc/c-api/bytes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/bytes.rst b/Doc/c-api/bytes.rst index b66047b..c1a82b2 100644 --- a/Doc/c-api/bytes.rst +++ b/Doc/c-api/bytes.rst @@ -114,7 +114,7 @@ called with a non-bytes parameter. .. cfunction:: PyObject* PyBytes_FromFormatV(const char *format, va_list vargs) - Identical to :func:`PyBytes_FromFormat` except that it takes exactly two + Identical to :cfunc:`PyBytes_FromFormat` except that it takes exactly two arguments. |