File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -434,16 +434,6 @@ def test_re_escape(self):
434434 self .assertEqual (pat .match (p ) is not None , True )
435435 self .assertEqual (pat .match (p ).span (), (0 ,256 ))
436436
437- def test_pickling (self ):
438- import pickle
439- self .pickle_test (pickle )
440- # old pickles expect the _compile() reconstructor in sre module
441- import warnings
442- with catch_warning ():
443- warnings .filterwarnings ("ignore" , "The sre module is deprecated" ,
444- DeprecationWarning )
445- from sre import _compile
446-
447437 def pickle_test (self , pickle ):
448438 oldpat = re .compile ('a(?:b|(c|e){1,2}?|d)+?(.)' )
449439 s = pickle .dumps (oldpat )
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ Extension Modules
2121Library
2222-------
2323
24+ - The sre module has been removed.
25+
2426- The PixMapWrapper module has been renamed to pixmapwrapper.
2527
2628- The Queue module has been renamed to queue.
You can’t perform that action at this time.
0 commit comments