summaryrefslogtreecommitdiff
path: root/python/testData/paramInfo/ConstructorFactory.py
blob: 33ce99dbe2384159882a21edf6d9ec5ad1f9a8dc (plain)
1
2
3
4
5
6
7
8
9
10
class Foo(object):
   def __init__(self, color):
        self.color = color

class Bar(object):
   fooFactory = Foo

   def quux(self):
       foo = self.fooFactory(<arg>"orange") #