Changes between Initial Version and Version 1 of Ticket #32655


Ignore:
Timestamp:
Apr 14, 2021, 8:31:56 PM (3 years ago)
Author:
Chris Jerdonek
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32655 – Description

    initial v1  
    3737             yield test
    3838+        elif isinstance(test, str):
     39+            # Prevent an unfriendly RecursionError that can happen with strings.
    3940+            raise TypeError(f'test {test!r} must be a test case or test suite not string')
    4041         else:
Back to Top