Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
5acb2258
Commit
5acb2258
authored
Feb 26, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print the full traceback when execution fails.
parent
839c5684
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
lms/djangoapps/debug/views.py
+3
-1
No files found.
lms/djangoapps/debug/views.py
View file @
5acb2258
"""Views for debugging and diagnostics"""
"""Views for debugging and diagnostics"""
import
pprint
import
pprint
import
traceback
from
django.http
import
Http404
from
django.http
import
Http404
from
django.contrib.auth.decorators
import
login_required
from
django.contrib.auth.decorators
import
login_required
...
@@ -12,6 +13,7 @@ from codejail.safe_exec import safe_exec
...
@@ -12,6 +13,7 @@ from codejail.safe_exec import safe_exec
@login_required
@login_required
@ensure_csrf_cookie
@ensure_csrf_cookie
def
run_python
(
request
):
def
run_python
(
request
):
"""A page to allow testing the Python sandbox on a production server."""
if
not
request
.
user
.
is_staff
:
if
not
request
.
user
.
is_staff
:
raise
Http404
raise
Http404
c
=
{}
c
=
{}
...
@@ -23,7 +25,7 @@ def run_python(request):
...
@@ -23,7 +25,7 @@ def run_python(request):
try
:
try
:
safe_exec
(
py_code
,
g
)
safe_exec
(
py_code
,
g
)
except
Exception
as
e
:
except
Exception
as
e
:
c
[
'results'
]
=
str
(
e
)
c
[
'results'
]
=
traceback
.
format_exc
(
)
else
:
else
:
c
[
'results'
]
=
pprint
.
pformat
(
g
)
c
[
'results'
]
=
pprint
.
pformat
(
g
)
return
render_to_response
(
"debug/run_python_form.html"
,
c
)
return
render_to_response
(
"debug/run_python_form.html"
,
c
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment