aboutsummaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorIrit Katriel <iritkatriel@yahoo.com>2021-01-26 10:17:13 +0000
committerGitHub <noreply@github.com>2021-01-26 10:17:13 +0000
commitdea5bf9d15999bfcc58095b157c0678d45b00bdd (patch)
tree026c0c7cd0b1c05213b350801bec7c24ae4edbbb /Python
parentFix minor typo in the rest format in the enum docs (GH-24335) (diff)
downloadcpython-dea5bf9d15999bfcc58095b157c0678d45b00bdd.tar.gz
cpython-dea5bf9d15999bfcc58095b157c0678d45b00bdd.tar.bz2
cpython-dea5bf9d15999bfcc58095b157c0678d45b00bdd.zip
bpo-33387: update documentation for exception handling opcode changes (GH-24334)
* bpo-33387: remove obsolete comment * bpo-33387: update SETUP_WITH opcode documentation
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 6aa74cc2d67..223c63637ff 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -898,8 +898,6 @@ compiler_next_instr(basicblock *b)
* 1 -- when jump
* -1 -- maximal
*/
-/* XXX Make the stack effect of WITH_CLEANUP_START and
- WITH_CLEANUP_FINISH deterministic. */
static int
stack_effect(int opcode, int oparg, int jump)
{