Lines Matching refs:suffix
565 def construct_python_name(self, suffix, node):
570 return self.find_python_name(suffix, node.start_mark)
572 def construct_python_module(self, suffix, node):
577 return self.find_python_module(suffix, node.start_mark)
579 def make_python_instance(self, suffix, node,
585 cls = self.find_python_name(suffix, node.start_mark)
614 def construct_python_object(self, suffix, node):
617 instance = self.make_python_instance(suffix, node, newobj=True)
623 def construct_python_object_apply(self, suffix, node, newobj=False):
648 instance = self.make_python_instance(suffix, node, args, kwds, newobj)
658 def construct_python_object_new(self, suffix, node):
659 return self.construct_python_object_apply(suffix, node, newobj=True)
721 def make_python_instance(self, suffix, node, args=None, kwds=None, newobj=False):
723 suffix, node, args, kwds, newobj, unsafe=True)