Skip to content

Commit

Permalink
Merge pull request #2214 from blink1073/fix-sphinxify-for-anaconda-34
Browse files Browse the repository at this point in the history
- Fix wrong import statements in our Qt shim
- This in turn fixes a segmentation fault in Anaconda 3.4 on Linux
  • Loading branch information
ccordoba12 committed Mar 1, 2015
2 parents d91a322 + 8159291 commit e9007f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spyderlib/qt/QtCore.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
from PyQt5.QtCore import QT_VERSION_STR as __version__
elif os.environ['QT_API'] == 'pyqt':
from PyQt4.QtCore import * # analysis:ignore
from PyQt4.Qt import QCoreApplication # analysis:ignore
from PyQt4.Qt import Qt # analysis:ignore
from PyQt4.QtCore import QCoreApplication # analysis:ignore
from PyQt4.QtCore import Qt # analysis:ignore
from PyQt4.QtCore import pyqtSignal as Signal # analysis:ignore
from PyQt4.QtCore import pyqtSlot as Slot # analysis:ignore
from PyQt4.QtCore import pyqtProperty as Property # analysis:ignore
Expand Down

0 comments on commit e9007f5

Please sign in to comment.