# -*- coding: utf-8 -*- from form1 import * class Form1Impl(Form1): def __init__(self,parent = None,name = None,fl = 0): Form1.__init__(self,parent,name,fl) if not name: self.setName("Form1Impl") def newSlot(self): self.textLabel1.setText(self.lineEdit1.text())