Skip to content
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fix ubuntu test failed for ass_subscript2
  • Loading branch information
fatelei committed Dec 12, 2025
commit f1b759665b28bb78c7b4a38bd697a70eb0b3bb6c
5 changes: 4 additions & 1 deletion Lib/test/test_bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2615,7 +2615,10 @@ def ass_subscript(b, a): # MODIFIES!

def ass_subscript2(b, a, c): # MODIFIES!
b.wait()
a[:] = c
try:
a[:] = c
except BufferError:
return
assert b'\xdd' not in a

def mod(b, a):
Expand Down
Loading