summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-01-12 15:09:04 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-01-12 15:09:04 +0100
commit24c0216567fe4250da8550463de5167850f74aa7 (patch)
treec1447ef2586a77f3c1a694871799ddfc1c3b7e55
parent8dedd0a93c87ee1c76cb435f9cd4a7b4f64ebaf2 (diff)
downloadcython-24c0216567fe4250da8550463de5167850f74aa7.tar.gz
Minor code simplification.
-rw-r--r--Cython/Plex/Actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Plex/Actions.py b/Cython/Plex/Actions.py
index 8a3455202..11215a507 100644
--- a/Cython/Plex/Actions.py
+++ b/Cython/Plex/Actions.py
@@ -32,7 +32,7 @@ class Return(Action):
return isinstance(other, Return) and self.value == other.value
def __repr__(self):
- return "Return(%s)" % repr(self.value)
+ return "Return(%r)" % self.value
class Call(Action):