Author: Philip Jenvey <pjen...@underboss.org> Branch: py3k Changeset: r84719:2ef97efcddf2 Date: 2016-05-26 16:37 -0700 http://bitbucket.org/pypy/pypy/changeset/2ef97efcddf2/
Log: fix diff --git a/lib_pypy/_decimal.py b/lib_pypy/_decimal.py --- a/lib_pypy/_decimal.py +++ b/lib_pypy/_decimal.py @@ -1514,15 +1514,15 @@ if _sys.maxsize < 2**63-1: def _unsafe_setprec(self, value): _unsafe_check('prec', 1, 1070000000, value) - self.ctx.prec = value + self._ctx.prec = value def _unsafe_setemin(self, value): _unsafe_check('emin', -1070000000, 0, value) - self.ctx.emin = value + self._ctx.emin = value def _unsafe_setemax(self, value): _unsafe_check('emax', 0, 1070000000, value) - self.ctx.emax = value + self._ctx.emax = value class _SignalDict(_collections.abc.MutableMapping): _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit