Skip to content

Commit

Permalink
[test project] Add 2 functions with the same name but different parents
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Oct 29, 2024
1 parent d1a97b4 commit a530731
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions resources/examples/project1/src/moduleAtRoot6.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,7 @@ def function_to_shadow_with_different_signature(age):


print(function_to_shadow_with_different_signature(3))


def function_with_common_name():
return True
5 changes: 4 additions & 1 deletion resources/examples/project1/src/root/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
rootPackageVariable = 33
rootPackageVariable = 33

def function_with_common_name():
return False

0 comments on commit a530731

Please sign in to comment.