diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-06-05 19:00:55 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-06-05 19:00:55 (GMT) |
commit | 1b50b43beee9944291f64bf911d471238c2cfcae (patch) | |
tree | 644bb2e85cf31d89e07b1d753b7005c54640f014 /Doc | |
parent | 2400e93057d284f65e062e03df92b2f5e57179ee (diff) | |
download | cpython-1b50b43beee9944291f64bf911d471238c2cfcae.zip cpython-1b50b43beee9944291f64bf911d471238c2cfcae.tar.gz cpython-1b50b43beee9944291f64bf911d471238c2cfcae.tar.bz2 |
[Bug #936837] Add missing word
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/abstract.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index 152f1a4..372e2a5 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -573,7 +573,7 @@ determination. \begin{cfuncdesc}{PyObject*}{PyNumber_InPlaceFloorDivide}{PyObject *o1, PyObject *o2} - Returns the mathematical of dividing \var{o1} by \var{o2}, or + Returns the mathematical floor of dividing \var{o1} by \var{o2}, or \NULL{} on failure. The operation is done \emph{in-place} when \var{o1} supports it. This is the equivalent of the Python statement \samp{\var{o1} //= \var{o2}}. |