diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-03-24 16:38:29 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-03-24 16:38:29 (GMT) |
commit | fcf37c1896a39a045d4ffeee3b98902923dde3ec (patch) | |
tree | b0a1c2ce1415e834f2297631065bd2aedf74e7d1 | |
parent | 50d6f54b1aae4aadf6f080148ec2858663312cd7 (diff) | |
download | cpython-fcf37c1896a39a045d4ffeee3b98902923dde3ec.zip cpython-fcf37c1896a39a045d4ffeee3b98902923dde3ec.tar.gz cpython-fcf37c1896a39a045d4ffeee3b98902923dde3ec.tar.bz2 |
Issue #14400: Fix typo.
-rw-r--r-- | Doc/howto/cporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst index bea2153..6dd0765 100644 --- a/Doc/howto/cporting.rst +++ b/Doc/howto/cporting.rst @@ -257,7 +257,7 @@ behave slightly differently from real Capsules. Specifically: returns failure. (Since there's no way to store a name in a CObject, noisy failure of :c:func:`PyCapsule_SetName` was deemed preferable to silent failure here. If this is - inconveient, feel free to modify your local + inconvenient, feel free to modify your local copy as you see fit.) You can find :file:`capsulethunk.h` in the Python source distribution |