Preferences/ConfigurationPages/DebuggerGeneralPage.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
5 5
6 """ 6 """
7 Module implementing the Debugger General configuration page. 7 Module implementing the Debugger General configuration page.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
11
10 import socket 12 import socket
11 13
12 from PyQt4.QtCore import QRegExp, pyqtSlot 14 from PyQt4.QtCore import QRegExp, pyqtSlot
13 from PyQt4.QtGui import QLineEdit, QInputDialog 15 from PyQt4.QtGui import QLineEdit, QInputDialog
14 from PyQt4.QtNetwork import QNetworkInterface, QAbstractSocket, QHostAddress 16 from PyQt4.QtNetwork import QNetworkInterface, QAbstractSocket, QHostAddress
30 """ 32 """
31 def __init__(self): 33 def __init__(self):
32 """ 34 """
33 Constructor 35 Constructor
34 """ 36 """
35 super().__init__() 37 super(DebuggerGeneralPage, self).__init__()
36 self.setupUi(self) 38 self.setupUi(self)
37 self.setObjectName("DebuggerGeneralPage") 39 self.setObjectName("DebuggerGeneralPage")
38 40
39 t = self.execLineEdit.whatsThis() 41 t = self.execLineEdit.whatsThis()
40 if t: 42 if t:

eric ide

mercurial