summaryrefslogtreecommitdiff
path: root/yaksh/stdio_evaluator.py
diff options
context:
space:
mode:
authorankitjavalkar2016-09-29 18:10:09 +0530
committerankitjavalkar2016-09-30 10:37:59 +0530
commitcb0569a32422a195d4165ef405ac5560024dabda (patch)
tree2ae0a87b477b1fce6421a31e740dd4c3742ff956 /yaksh/stdio_evaluator.py
parentbe024a511b63bcdf1433078aa7512266bd3ce9ba (diff)
downloadonline_test-cb0569a32422a195d4165ef405ac5560024dabda.tar.gz
online_test-cb0569a32422a195d4165ef405ac5560024dabda.tar.bz2
online_test-cb0569a32422a195d4165ef405ac5560024dabda.zip
Add unicode_literal import for Python2
Diffstat (limited to 'yaksh/stdio_evaluator.py')
-rw-r--r--yaksh/stdio_evaluator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yaksh/stdio_evaluator.py b/yaksh/stdio_evaluator.py
index b5924ff..326d2e7 100644
--- a/yaksh/stdio_evaluator.py
+++ b/yaksh/stdio_evaluator.py
@@ -1,9 +1,10 @@
+from __future__ import unicode_literals
+
# Local imports
from code_evaluator import CodeEvaluator
class StdIOEvaluator(CodeEvaluator):
-
def setup(self):
super(StdIOEvaluator, self).setup()
pass