##// END OF EJS Templates
Fix HEAD requests for kernelspec resources...
Fix HEAD requests for kernelspec resources Closes gh-7237 Closes gh-7258 StaticFileHandler.get() is a coroutine. When Tornado calls a handler method, it uses the return value to determine whether or not it's a coroutine. So when head() calls get(), it needs to pass the return value on for Tornado to handle it properly.

File last commit:

r16414:422c5094
r19601:f0bcc52a
Show More
qt.py
23 lines | 806 B | text/x-python | PythonLexer
Peter Würtz
Add support for PyQt5.
r16414 """ A Qt API selector that can be used to switch between PyQt4/5 and PySide.
MinRK
reorder qt support in kernel...
r4191
This uses the ETS 4.0 selection pattern of:
Peter Würtz
Add support for PyQt5.
r16414 PySide first, PyQt4 (API v2.) second, then PyQt5.
MinRK
reorder qt support in kernel...
r4191
Peter Würtz
Add support for PyQt5.
r16414 Do not use this if you need PyQt4 with the old QString/QVariant API.
Evan Patterson
Paved the way for PySide support....
r3304 """
import os
epatters
Clean up in Qt API switcher.
r3306
Chris Beaumont
Refactor qt import logic. Fixes #2955
r9722 from IPython.external.qt_loaders import (load_qt, QT_API_PYSIDE,
Peter Würtz
Add support for PyQt5.
r16414 QT_API_PYQT, QT_API_PYQT5)
Evan Patterson
Paved the way for PySide support....
r3304
Chris Beaumont
Refactor qt import logic. Fixes #2955
r9722 QT_API = os.environ.get('QT_API', None)
Peter Würtz
Add support for PyQt5.
r16414 if QT_API not in [QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5, None]:
raise RuntimeError("Invalid Qt API %r, valid values are: %r, %r, %r" %
(QT_API, QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5))
epatters
Smarter Qt binding selection when environment variable is not specified.
r3927 if QT_API is None:
Peter Würtz
Add support for PyQt5.
r16414 api_opts = [QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5]
epatters
Clean up in Qt API switcher.
r3306 else:
Chris Beaumont
Refactor qt import logic. Fixes #2955
r9722 api_opts = [QT_API]
QtCore, QtGui, QtSvg, QT_API = load_qt(api_opts)