Skip to content

Commit

Permalink
[test project] Add instantiation with alias
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Jan 21, 2025
1 parent 17c2701 commit f5dd60c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from nonexisting import StubClass

class ClassWithStubSuperclass(StubClass):
pass

import StubClass

#This import does not exists but has the name of a stub that exists
print(StubClass)
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
print(fwi())
print(marv)
print(Employee2)
print(Emp("Imen", 37))

0 comments on commit f5dd60c

Please sign in to comment.