diff options
author | Batuhan Taskaya <isidentical@gmail.com> | 2022-05-16 12:38:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 12:38:06 (GMT) |
commit | f6fd8aac13714ce17650eb4a648d5c08f0be53b4 (patch) | |
tree | 22d3408fc5f2ed11091b4a394e21ec069c4dc33c /Misc | |
parent | ca0cc9c433830e14714a5cc93fb4e7254da3dd76 (diff) | |
download | cpython-f6fd8aac13714ce17650eb4a648d5c08f0be53b4.zip cpython-f6fd8aac13714ce17650eb4a648d5c08f0be53b4.tar.gz cpython-f6fd8aac13714ce17650eb4a648d5c08f0be53b4.tar.bz2 |
gh-92671: Don't omit parentheses when unparsing empty tuples (GH-92673)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-05-11-19-33-27.gh-issue-92671.KE4v6a.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-05-11-19-33-27.gh-issue-92671.KE4v6a.rst b/Misc/NEWS.d/next/Library/2022-05-11-19-33-27.gh-issue-92671.KE4v6a.rst new file mode 100644 index 0000000..b50677a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-05-11-19-33-27.gh-issue-92671.KE4v6a.rst @@ -0,0 +1 @@ +Fixed :func:`ast.unparse` for empty tuples in the assignment target context. |