summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2022-04-16 19:40:02 (GMT)
committerGitHub <noreply@github.com>2022-04-16 19:40:02 (GMT)
commit304f5b63e904c3ab0b746ef7ad58c5c2ff0154a8 (patch)
treee96285c27d9680793f36f286d2ab2ac05ef95a18 /Python/compile.c
parentd4c4a76ed1427c947fcbbe692625b3f644cf3aaf (diff)
downloadcpython-304f5b63e904c3ab0b746ef7ad58c5c2ff0154a8.zip
cpython-304f5b63e904c3ab0b746ef7ad58c5c2ff0154a8.tar.gz
cpython-304f5b63e904c3ab0b746ef7ad58c5c2ff0154a8.tar.bz2
Fix an out of date comment in compile.c (GH-91615)
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 3b91566..4108b89 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -71,7 +71,8 @@
/* Pseudo-instructions used in the compiler,
- * but turned into NOPs by the assembler. */
+ * but turned into NOPs or other instructions
+ * by the assembler. */
#define SETUP_FINALLY -1
#define SETUP_CLEANUP -2
#define SETUP_WITH -3