forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…24099) Reverts #23977 Have to revert #23977 with issue: #23743 due to #24069 Will revisit why #23743 is breaking if contained inside other top level (in ast term) code block, and look into how to support #23743 without breaking.
- Loading branch information
1 parent
2743f75
commit 2ac2c20
Showing
3 changed files
with
3 additions
and
21 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
10 changes: 1 addition & 9 deletions
10
src/test/python_files/terminalExec/sample2_normalized_selection.py
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,15 +1,7 @@ | ||
def add(x, y): | ||
""" | ||
Adds x | ||
to | ||
y | ||
""" | ||
"""Adds x to y""" | ||
# Some comment | ||
return x + y | ||
|
||
v = add(1, 7) | ||
print(v) | ||
|
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,13 +1,7 @@ | ||
def add(x, y): | ||
""" | ||
Adds x | ||
to | ||
y | ||
""" | ||
"""Adds x to y""" | ||
# Some comment | ||
|
||
return x + y | ||
|
||
v = add(1, 7) | ||
|