From c950d437e51fcca9548e653e50ce3160211bab8e Mon Sep 17 00:00:00 2001 From: kimth Date: Mon, 6 Aug 2012 11:58:00 -0400 Subject: [PATCH] Add comments on CodeResponse.get_score --- common/lib/capa/capa/responsetypes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/lib/capa/capa/responsetypes.py b/common/lib/capa/capa/responsetypes.py index d995e8b902..a1719ddcce 100644 --- a/common/lib/capa/capa/responsetypes.py +++ b/common/lib/capa/capa/responsetypes.py @@ -867,11 +867,13 @@ class CodeResponse(LoncapaResponse): # Generate body # NOTE: Currently specialized to 6.00x's pyxserver, which follows the ExternalResponse interface + # We should define a common interface for external code graders to CodeResponse contents = {'xml': etree.tostring(self.xml, pretty_print=True), 'edX_cmd': 'get_score', 'edX_tests': self.tests, 'processor': self.code, - 'edX_student_response': unicode(submission)} + 'edX_student_response': unicode(submission), # unicode on File object returns its filename + } # Submit request if hasattr(submission, 'read'): # Test for whether submission is a file