summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/autoreload.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py
index c4b12241f0..0cf00a9646 100644
--- a/django/utils/autoreload.py
+++ b/django/utils/autoreload.py
@@ -37,6 +37,7 @@ import traceback
from django.apps import apps
from django.conf import settings
from django.core.signals import request_finished
+from django.utils import six
from django.utils._os import npath
from django.utils.six.moves import _thread as thread
@@ -72,6 +73,7 @@ I18N_MODIFIED = 2
_mtimes = {}
_win = (sys.platform == "win32")
+_exception = None
_error_files = []
_cached_modules = set()
_cached_filenames = []
@@ -219,11 +221,14 @@ def code_changed():
def check_errors(fn):
def wrapper(*args, **kwargs):
+ global _exception
try:
fn(*args, **kwargs)
except (ImportError, IndentationError, NameError, SyntaxError,
TypeError, AttributeError):
- et, ev, tb = sys.exc_info()
+ _exception = sys.exc_info()
+
+ et, ev, tb = _exception
if getattr(ev, 'filename', None) is None:
# get the filename from the last item in the stack
@@ -239,6 +244,12 @@ def check_errors(fn):
return wrapper
+def raise_last_exception():
+ global _exception
+ if _exception is not None:
+ six.reraise(*_exception)
+
+
def ensure_echo_on():
if termios:
fd = sys.stdin