-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix reodering, add TypeError missing required positional argument
- Loading branch information
Pierre Delaunay
committed
May 22, 2024
1 parent
2482621
commit 6606dc7
Showing
7 changed files
with
179 additions
and
121 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
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# >>> case: 0 | ||
# >>> code | ||
a = 2; b = c; d = e# <<< | ||
|
||
# >>> error | ||
NameError: name 'c' is not defined# <<< | ||
# >>> error | ||
NameError: name 'e' is not defined# <<< | ||
# >>> case: 0 | ||
# >>> code | ||
a = 2; b = c; d = e# <<< | ||
|
||
# >>> error | ||
NameError: name 'c' is not defined# <<< | ||
# >>> error | ||
NameError: name 'e' is not defined# <<< | ||
|
Oops, something went wrong.