mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
29 lines
809 B
Python
29 lines
809 B
Python
# Copyright: Damien Elmes <anki@ichi2.net>
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
# imports are all in this file to make moving to pyside easier in the future
|
|
|
|
import sip, os
|
|
sip.setapi('QString', 2)
|
|
sip.setapi('QVariant', 2)
|
|
sip.setapi('QUrl', 2)
|
|
from PyQt4.QtCore import *
|
|
from PyQt4.QtGui import *
|
|
from PyQt4.QtWebKit import QWebPage, QWebView
|
|
from PyQt4 import pyqtconfig
|
|
|
|
def debug():
|
|
from PyQt4.QtCore import pyqtRemoveInputHook
|
|
from pdb import set_trace
|
|
pyqtRemoveInputHook()
|
|
set_trace()
|
|
|
|
if os.environ.get("DEBUG"):
|
|
import sys, traceback
|
|
def info(type, value, tb):
|
|
from PyQt4.QtCore import pyqtRemoveInputHook
|
|
traceback.print_exc()
|
|
pyqtRemoveInputHook()
|
|
from pdb import pm
|
|
pm()
|
|
sys.excepthook = info
|