Open
Changes from 1 commit
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
PrevPrevious commit
Next Next commit
Linting fix
  • Loading branch information
@Legoclones
Legoclones committedJun 17, 2025
commit 2f3c2a0fd9d685262c92bf3aec11e17e1f1a3c20
Original file line numberDiff line numberDiff line change
Expand Up@@ -2963,7 +2963,7 @@ def test_float(self):
pickle = self.dumps(value, proto)
got = self.loads(pickle)
self.assert_is_copy(value, got)

def test_float_whitespace(self):
self.assertEqual(self.loads(b'F 1.2 \n.'), 1.2)
self.assertEqual(self.loads(b'F \t9 \n.'), 9)
Expand Down