[pypy-commit] pypy py3.6: add missing reinterpretasserts option

mattip pypy.commits at gmail.com
Sun Nov 10 21:31:33 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.6
Changeset: r98017:ef6a3e3097d2
Date: 2019-11-10 21:30 -0500
http://bitbucket.org/pypy/pypy/changeset/ef6a3e3097d2/

Log:	add missing reinterpretasserts option

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -218,7 +218,10 @@
         BoolOption("newshortcut",
                    "cache and shortcut calling __new__ from builtin types",
                    default=False),
-
+        BoolOption("reinterpretasserts",
+                   "Perform reinterpretation when an assert fails "
+                   "(only relevant for tests)",
+                   default=False),
      ]),
 ])
 


More information about the pypy-commit mailing list