Author: Raffael Tfirst <[email protected]>
Branch: py3.5
Changeset: r85341:87c42f87967a
Date: 2016-06-22 21:08 +0200
http://bitbucket.org/pypy/pypy/changeset/87c42f87967a/
Log: Forgot self at two function calls
diff --git a/pypy/interpreter/astcompiler/astbuilder.py
b/pypy/interpreter/astcompiler/astbuilder.py
--- a/pypy/interpreter/astcompiler/astbuilder.py
+++ b/pypy/interpreter/astcompiler/astbuilder.py
@@ -1220,7 +1220,7 @@
(n_maker_children > 1 and
maker.get_child(1).type == tokens.COMMA)):
# a set display
- return handle_setdisplay(maker)
+ return self.handle_setdisplay(maker)
elif n_maker_children > 1 and maker.get_child(1).type ==
syms.comp_for:
# a set comprehension
return self.handle_setcomp(maker)
@@ -1234,7 +1234,7 @@
return self.handle_dictcomp(maker)
else:
# a dictionary display
- return handle_dictdisplay(maker)
+ return self.handle_dictdisplay(maker)
else:
raise AssertionError("unknown atom")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit