Skip to content

Commit d1d5c0a

Browse files
Apply suggestions from code review
Co-authored-by: Mark Shannon <[email protected]>
1 parent 0eb6933 commit d1d5c0a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Lib/test/test_types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,9 +681,11 @@ def test_call_unbound_crash(self):
681681
import glob
682682
683683
def call(part):
684+
[] + ([] + [])
684685
part.pop()
685686
686-
call(['a'])
687+
for _ in range(3):
688+
call(['a'])
687689
try:
688690
call(list)
689691
except TypeError:

0 commit comments

Comments
 (0)