summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2017-01-16 08:23:30 (GMT)
committerINADA Naoki <songofacandy@gmail.com>2017-01-16 08:23:30 (GMT)
commit015bce64b35fb9de199f41eb5a3e5b7d9d20e3c1 (patch)
tree374e77e17b8325e6db020a4ed21ceeae1bb6de71 /Doc/whatsnew
parent510df6f2721bd6ed69716938c45cea03b2b84c99 (diff)
downloadcpython-015bce64b35fb9de199f41eb5a3e5b7d9d20e3c1.zip
cpython-015bce64b35fb9de199f41eb5a3e5b7d9d20e3c1.tar.gz
cpython-015bce64b35fb9de199f41eb5a3e5b7d9d20e3c1.tar.bz2
Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode.
Changed stack layout bit for "easy to explain."
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index ca7c2c5..fe03def 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -170,3 +170,10 @@ Changes in the Python API
Assigning to them was deprecated in Python 3.5.
Use the :meth:`~http.cookies.Morsel.set` method for setting them.
(Contributed by Serhiy Storchaka in :issue:`29192`.)
+
+
+CPython bytecode changes
+------------------------
+
+* Added two new opcodes: :opcode:`LOAD_METHOD`` and :opcode:`CALL_METHOD`.
+ (Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.)