Files
Semyon Proshev a6c795551c Don't collect imported with as elements as named elements (PY-21837)
Because such elements are not presented in stub.
2018-04-09 17:51:35 +03:00

10 lines
154 B
Python

from A import A as myA # No problem without the 'as'
class B(object):
pass
class C(myA, B): # No problem when only inheriting from myA
pass