Files
openide/python/testData/completion/pySixTest.py
Ilya.Kazakevich a07a56298f support members completion for classes inherited with six.with_metaclass
* Instead of low-level expression parsing, we use type-based api.
2016-01-27 23:53:25 +03:00

15 lines
181 B
Python

import six
class MyType(type):
pass
class Parent(object):
def parent(self):
pass
class Child(six.with_metaclass(MyType, Parent)):
pass
Child().paren<caret>