summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2021-12-05 17:03:58 (GMT)
committerGitHub <noreply@github.com>2021-12-05 17:03:58 (GMT)
commit605f4bf7838dbef86b52c955dc21ab489219490f (patch)
treef766d284b93a25856b9fc6d51157d35678fb8dd3 /Python
parentd15cdb2f32f572ce56d7120135da24b9fdce4c99 (diff)
downloadcpython-605f4bf7838dbef86b52c955dc21ab489219490f.zip
cpython-605f4bf7838dbef86b52c955dc21ab489219490f.tar.gz
cpython-605f4bf7838dbef86b52c955dc21ab489219490f.tar.bz2
Delete orphaned comment (#29917)
(The function this described was deleted by PR #23743, the comment was accidentally retained.)
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 87de7ba..6138031 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -5064,11 +5064,6 @@ compiler_visit_keyword(struct compiler *c, keyword_ty k)
return 1;
}
-/* Test whether expression is constant. For constants, report
- whether they are true or false.
-
- Return values: 1 for true, 0 for false, -1 for non-constant.
- */
static int
compiler_with_except_finish(struct compiler *c, basicblock * cleanup) {