diff options
author | Guido van Rossum <guido@python.org> | 2021-12-05 17:03:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-05 17:03:58 (GMT) |
commit | 605f4bf7838dbef86b52c955dc21ab489219490f (patch) | |
tree | f766d284b93a25856b9fc6d51157d35678fb8dd3 /Python | |
parent | d15cdb2f32f572ce56d7120135da24b9fdce4c99 (diff) | |
download | cpython-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.c | 5 |
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) { |