Project/CreateDialogCodeDialog.py

changeset 3030
4a0a82ddd9d2
parent 3020
542e97d4ecb3
child 3034
7ce719013078
child 3058
0a02c433f52d
equal deleted inserted replaced
3029:4055a15ce0f2 3030:4a0a82ddd9d2
259 bytes(metaMethod.methodSignature())\ 259 bytes(metaMethod.methodSignature())\
260 .decode().split("(")[0]) 260 .decode().split("(")[0])
261 else: 261 else:
262 method = "on_{0}_{1}".format( 262 method = "on_{0}_{1}".format(
263 name, metaMethod.signature().split("(")[0]) 263 name, metaMethod.signature().split("(")[0])
264 method2 = "{0}({1})".format(method, 264 method2 = "{0}({1})".format(
265 ", ".join( 265 method, ", ".join(
266 [self.__mapType(t) 266 [self.__mapType(t)
267 for t in metaMethod.parameterTypes()])) 267 for t in metaMethod.parameterTypes()]))
268 268
269 if method2 in signatureList or \ 269 if method2 in signatureList or \
270 method in signatureList: 270 method in signatureList:

eric ide

mercurial