File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 2929import unittest
3030import urllib .parse
3131
32- from test .support import SHORT_TIMEOUT , bigmemtest , check_disallow_instantiation
32+ from test .support import SHORT_TIMEOUT , check_disallow_instantiation
3333from test .support import threading_helper
3434from _testcapi import INT_MAX , ULLONG_MAX
3535from os import SEEK_SET , SEEK_CUR , SEEK_END
@@ -626,13 +626,6 @@ def test_deserialize_corrupt_database(self):
626626 # deserialized database.
627627 cx .execute ("create table fail(f)" )
628628
629- @unittest .skipUnless (sys .maxsize > 2 ** 32 , 'requires 64bit platform' )
630- @bigmemtest (size = 2 ** 63 , memuse = 3 , dry_run = False )
631- def test_deserialize_too_much_data_64bit (self ):
632- with memory_database () as cx :
633- with self .assertRaisesRegex (OverflowError , "'data' is too large" ):
634- cx .deserialize (b"b" * size )
635-
636629
637630class OpenTests (unittest .TestCase ):
638631 _sql = "create table test(id integer)"
You can’t perform that action at this time.
0 commit comments