From 1a64f037d754a68d597d7c92a3294f75d4d3adac Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 12 May 2010 20:00:24 +0200 Subject: [PATCH] no longer disable CPython regression test suite in runtests.py when running in Py3 --- runtests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/runtests.py b/runtests.py index 8502ff69..81bbdca0 100644 --- a/runtests.py +++ b/runtests.py @@ -788,7 +788,6 @@ if __name__ == '__main__': if sys.version_info[0] >= 3: options.doctests = False - options.pyregr = False if options.with_cython: try: # try if Cython is installed in a Py3 version -- 2.26.2