Skip to content

Commit

Permalink
[test project] Even more cases on symbol resolution of superclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Nov 5, 2024
1 parent 9d344c9 commit ae64a51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions resources/examples/project1/src/moduleAtRoot9.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class AbstractAnimal:
name = ""
5 changes: 3 additions & 2 deletions resources/examples/project1/src/root/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from moduleAtRoot9 import AbstractAnimal

rootPackageVariable = 33


def function_with_common_name():
return False


class Animal:
name = ""
class Animal(AbstractAnimal):

def eat(self):
print("I can eat")

0 comments on commit ae64a51

Please sign in to comment.