Message365311
This change caused python-gmpy2 tests to fail:
https://bugzilla.redhat.com/show_bug.cgi?id=1817710
Reproducer:
---
from __future__ import print_function, division
import doctest
filename = "doctest.txt"
with open(filename, "w") as fp:
print("""
Test
====
>>> all(x == 1 for x in [1, 1, 1])
True
""".strip(), file=fp)
result = doctest.testfile(filename, globs=globals())
print("result:", result)
--- |
|
Date |
User |
Action |
Args |
2020-03-30 13:17:19 | vstinner | set | recipients:
+ vstinner, asvetlov, serhiy.storchaka, yselivanov, pablogsal, miss-islington, BTaskaya, jack1142 |
2020-03-30 13:17:19 | vstinner | set | messageid: <1585574239.6.0.634264671022.issue39562@roundup.psfhosted.org> |
2020-03-30 13:17:19 | vstinner | link | issue39562 messages |
2020-03-30 13:17:19 | vstinner | create | |
|