File tree 1 file changed +1
-8
lines changed
1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 29
29
import unittest
30
30
import urllib .parse
31
31
32
- from test .support import SHORT_TIMEOUT , bigmemtest , check_disallow_instantiation
32
+ from test .support import SHORT_TIMEOUT , check_disallow_instantiation
33
33
from test .support import threading_helper
34
34
from _testcapi import INT_MAX , ULLONG_MAX
35
35
from os import SEEK_SET , SEEK_CUR , SEEK_END
@@ -626,13 +626,6 @@ def test_deserialize_corrupt_database(self):
626
626
# deserialized database.
627
627
cx .execute ("create table fail(f)" )
628
628
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
-
636
629
637
630
class OpenTests (unittest .TestCase ):
638
631
_sql = "create table test(id integer)"
You can’t perform that action at this time.
0 commit comments