forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bpo-40355: Improve error messages in ast.literal_eval with malformed …
…Dict nodes (pythonGH-19868) Co-authored-by: Pablo Galindo <[email protected]> (cherry picked from commit c21c512) Co-authored-by: Curtis Bucher <[email protected]>
- Loading branch information
1 parent
a6a116c
commit 2ceb5f0
Showing
3 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
Misc/NEWS.d/next/Library/2020-05-02-14-24-48.bpo-40355.xTujaB.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Improve error reporting in :func:`ast.literal_eval` in the presence of malformed :class:`ast.Dict` | ||
nodes instead of silently ignoring any non-conforming elements. Patch by Curtis Bucher. |