eric6/Network/IRC/IrcChannelWidget.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 6942
2602857055c5
child 7229
53054eb5b15a
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
7 Module implementing the IRC channel widget. 7 Module implementing the IRC channel widget.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 11
12 try: 12 from itertools import zip_longest
13 from itertools import izip_longest as zip_longest # __IGNORE_EXCEPTION__
14 except ImportError:
15 from itertools import zip_longest
16 13
17 import re 14 import re
18 15
19 from PyQt5.QtCore import pyqtSlot, pyqtSignal, QDateTime, QPoint, QFileInfo, \ 16 from PyQt5.QtCore import pyqtSlot, pyqtSignal, QDateTime, QPoint, QFileInfo, \
20 QTimer, QUrl, QCoreApplication 17 QTimer, QUrl, QCoreApplication

eric ide

mercurial