From: Eric V. Smith Date: Wed, 4 Nov 2015 12:11:13 +0000 (-0500) Subject: For FORMAT_VALUE opcode, make it clear that the result of PyObject_Format is pushed... X-Git-Tag: v3.6.0a1~1125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3a3d732ec951e272a763f4539439f67d42ef38e;p=python For FORMAT_VALUE opcode, make it clear that the result of PyObject_Format is pushed on the stack. --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index ef601e6698..7222636545 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1005,7 +1005,8 @@ the more significant byte last. * ``(flags & 0x04) == 0x04``: pop *fmt_spec* from the stack and use it, else use an empty *fmt_spec*. - Formatting is performed using the :c:func:`PyObject_Format` function. + Formatting is performed using :c:func:`PyObject_Format`. The + result is pushed on the stack. .. versionadded:: 3.6