diff options
author | Tal Einat <taleinat@gmail.com> | 2015-05-16 11:12:15 (GMT) |
---|---|---|
committer | Tal Einat <taleinat@gmail.com> | 2015-05-16 11:12:15 (GMT) |
commit | 97fceee3b9c7037c1b2328fe96f58ec55eee6b85 (patch) | |
tree | 874ae8637a2e9b85f92d881d12ce86025b3ad28f /Doc/howto | |
parent | c784c6db6056729427b8e61161101e4bb5d73150 (diff) | |
download | cpython-97fceee3b9c7037c1b2328fe96f58ec55eee6b85.zip cpython-97fceee3b9c7037c1b2328fe96f58ec55eee6b85.tar.gz cpython-97fceee3b9c7037c1b2328fe96f58ec55eee6b85.tar.bz2 |
Argument Clinic: added missing bit of info in howto
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/clinic.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst index cb208d5..4ff475f 100644 --- a/Doc/howto/clinic.rst +++ b/Doc/howto/clinic.rst @@ -826,6 +826,7 @@ on the right is the text you'd replace it with. ``'I'`` ``unsigned_int(bitwise=True)`` ``'k'`` ``unsigned_long(bitwise=True)`` ``'K'`` ``unsigned_PY_LONG_LONG(bitwise=True)`` +``'l'`` ``long`` ``'L'`` ``PY_LONG_LONG`` ``'n'`` ``Py_ssize_t`` ``'O'`` ``object`` |