mikefc <[email protected]> added the comment: The reason for this error is that the interp_boxes implementation of ravel takes no arguments.
So within interp_boxes.py add an unsed w_order argument. i.e. - def descr_ravel(self, space): + def descr_ravel(self, space, w_order=None): ---------- nosy: +mikefc ________________________________________ PyPy bug tracker <[email protected]> <https://bugs.pypy.org/issue1548> ________________________________________ _______________________________________________ pypy-issue mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-issue
