Add comments on CodeResponse.get_score

This commit is contained in:
kimth
2012-08-06 11:58:00 -04:00
parent 881cafb88d
commit c950d437e5

View File

@@ -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