diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2022-12-12 14:22:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 14:22:15 (GMT) |
commit | e4ea33b17807d99ed737f800d9b0006957c008d2 (patch) | |
tree | 0e718bf367b6c305a58d2ef79fc69805b8d8b586 /Misc | |
parent | 158b8a07212cea6066afe8bb91f1cd542d922dba (diff) | |
download | cpython-e4ea33b17807d99ed737f800d9b0006957c008d2.zip cpython-e4ea33b17807d99ed737f800d9b0006957c008d2.tar.gz cpython-e4ea33b17807d99ed737f800d9b0006957c008d2.tar.bz2 |
gh-99955: standardize return values of functions in compiler's code-gen (#100010)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-12-12-11-27-54.gh-issue-99955.Ix5Rrg.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-12-12-11-27-54.gh-issue-99955.Ix5Rrg.rst b/Misc/NEWS.d/next/Core and Builtins/2022-12-12-11-27-54.gh-issue-99955.Ix5Rrg.rst new file mode 100644 index 0000000..e9867b3 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-12-12-11-27-54.gh-issue-99955.Ix5Rrg.rst @@ -0,0 +1 @@ +Internal compiler functions (in compile.c) now consistently return -1 on error and 0 on success. |