bpo-46920: Remove code that has explainers why it was disabled (GH-31813)

This commit is contained in:
Oleg Iarygin 2022-03-14 19:04:22 +03:00 committed by GitHub
parent a52f82baf2
commit 13b0412223
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 64 deletions

View file

@ -6997,12 +6997,6 @@ PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
result = 1;
cf->cf_flags |= compilerflags;
}
#if 0 /* future keyword */
if (codeflags & CO_GENERATOR_ALLOWED) {
result = 1;
cf->cf_flags |= CO_GENERATOR_ALLOWED;
}
#endif
}
return result;
}