Why the shit is that still there. It does nothing at all

This commit is contained in:
Luke Rogers 2013-08-01 01:48:50 +12:00
parent 9467014bf9
commit 7ad1ad20b2
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
import http
import json, urllib2, sys
def haste(data):
URL = "http://paste.dmptr.com"
request = urllib2.Request(URL + "/documents", data)
response = urllib2.urlopen(request)
return("%s/%s" % (URL, json.loads(response.read())['key']))
def execute_eval(code, paste_multiline=True):
while True:
output = http.get("http://eval.appspot.com/eval", statement=code).rstrip('\n')
if output:
break
else:
pass
if "Traceback (most recent call last):" in output:
status = "Python error: "
else:
status = "Code executed sucessfully: "
if "\n" in output and paste_multiline:
return status + haste(output)
else:
return output