-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from rgalonso/fix/identifier-case-sensitivity…
…-bugs fix identifier case sensitivity bugs
- Loading branch information
Showing
7 changed files
with
365 additions
and
129 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,15 @@ | ||
diff --git a/example_file.py b/example_file.py | ||
index 6b0c6cf..b37e70a 100644 | ||
@@ -1,3 +1,9 @@ | ||
+def imaginative_string(): | ||
+ return 'figment of my imagination' | ||
+ | ||
def hello_world(): | ||
- # TODO: Come up with a more imaginative greeting | ||
- print('Hello world') | ||
\ No newline at end of file | ||
+ print(f'Hello {imaginative_string()}') | ||
+ | ||
+ # TODO: Do more stuff | ||
+ # This function should probably do something more interesting | ||
+ # labels: help wanted |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
diff --git a/example_file.py b/example_file.py | ||
new file mode 100644 | ||
index 0000000..525e25d | ||
--- /dev/null | ||
+++ b/example_file.py | ||
@@ -0,0 +1,3 @@ | ||
+def hello_world(): | ||
+ # TODO: Come up with a more imaginative greeting | ||
+ print('Hello world') | ||
\ No newline at end of file |
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