You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
525 B
Python
26 lines
525 B
Python
"""Astroid hooks for the Python 2 qt4 module.
|
|
|
|
Currently help understanding of :
|
|
|
|
* PyQT4.QtCore
|
|
"""
|
|
|
|
from astroid import MANAGER
|
|
from astroid.builder import AstroidBuilder
|
|
|
|
|
|
def pyqt4_qtcore_transform(module):
|
|
fake = AstroidBuilder(MANAGER).string_build('''
|
|
|
|
def SIGNAL(signal_name): pass
|
|
|
|
class QObject(object):
|
|
def emit(self, signal): pass
|
|
''')
|
|
for klass in ('QObject',):
|
|
module.locals[klass] = fake.locals[klass]
|
|
|
|
|
|
import py2stdlib
|
|
py2stdlib.MODULE_TRANSFORMS['PyQt4.QtCore'] = pyqt4_qtcore_transform
|