From 7ad765169c176ad9a0f26c28e06bcfd0156ff6f2 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sun, 9 Mar 2014 21:07:37 -0400 Subject: [PATCH] whatsnew: dis.stack_effect (#19722). --- Doc/whatsnew/3.4.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 45fc6540f8c..d2745f5c9f4 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -696,6 +696,10 @@ to ``distb(tb)``). (Contributed by Nick Coghlan, Ryan Kelly and Thomas Kluyver in :issue:`11816` and Claudiu Popa in :issue:`17916`) +New function :func:`~dis.stack_effect` computes the effect on the Python stack +of a given opcode and argument, information that is not otherwise available. +(Contributed by Larry Hastings in :issue:`19722`.) + doctest -------