summaryrefslogtreecommitdiff
path: root/python/testData/paramInfo/RedefinedNewConstructorCall.py
blob: 783c52132fc5df65a6f205a82e69a870319ee650 (plain)
1
2
3
4
5
6
7
# signature of overridden __new__

class A(object):
  def __new__(cls, a, b):
    pass

A(<arg1>1, <arg2>2)