]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix an out of date comment in compile.c (GH-91615)
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>
Sat, 16 Apr 2022 19:40:02 +0000 (20:40 +0100)
committerGitHub <noreply@github.com>
Sat, 16 Apr 2022 19:40:02 +0000 (20:40 +0100)
Python/compile.c

index 3b91566efba2942e46c03e725dfe6aa216da230e..4108b896ade46d18d55c2182f03ce76ddd069c00 100644 (file)
@@ -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