@@ -348,7 +348,7 @@ def MOD_MEM_REQS(config):
348348 "typing.TypedDict" : (None , (3 , 8 )) if not bp ("typing" , config ) else ((2 , 7 ), (3 , 8 )),
349349 "unittest.IsolatedAsyncioTestCase" : (None , (3 , 8 )),
350350 "unittest.TextTestResult" : ((2 , 7 ), (3 , 2 )),
351- "unittest.mock.AsyncMock" : (None , (3 , 8 )),
351+ "unittest.mock.AsyncMock" : (None , (3 , 8 )) if not bp ( "mock" , config ) else ( None , ( 3 , 6 )) ,
352352 "urllib.parse.DefragResult" : (None , (3 , 2 )),
353353 "urllib.parse.DefragResultBytes" : (None , (3 , 2 )),
354354 "urllib.parse.ParseResultBytes" : (None , (3 , 2 )),
@@ -1597,7 +1597,7 @@ def MOD_MEM_REQS(config):
15971597 "unittest.mock.Mock.assert_called" : (None , (3 , 6 )),
15981598 "unittest.mock.Mock.assert_called_once" : (None , (3 , 6 )),
15991599 "unittest.mock.Mock.assert_not_called" : (None , (3 , 5 )),
1600- "unittest.mock.seal" : (None , (3 , 7 )),
1600+ "unittest.mock.seal" : (None , (3 , 7 )) if not bp ( "mock" , config ) else ( None , ( 3 , 6 )) ,
16011601 "unittest.registerResult" : ((2 , 7 ), (3 , 2 )),
16021602 "unittest.removeHandler" : ((2 , 7 ), (3 , 2 )),
16031603 "unittest.removeResult" : ((2 , 7 ), (3 , 2 )),
@@ -2478,8 +2478,10 @@ def MOD_MEM_REQS(config):
24782478 "unittest.TestResult.failfast" : ((2 , 7 ), (3 , 2 )),
24792479 "unittest.TestResult.skipped" : ((2 , 7 ), (3 , 1 )),
24802480 "unittest.TestResult.tb_locals" : (None , (3 , 5 )),
2481- "unittest.mock.Mock.call_args.args" : (None , (3 , 8 )),
2482- "unittest.mock.Mock.call_args.kwargs" : (None , (3 , 8 )),
2481+ "unittest.mock.Mock.call_args.args" : (None , (3 , 8 ))
2482+ if not bp ("mock" , config ) else (None , (3 , 6 )),
2483+ "unittest.mock.Mock.call_args.kwargs" : (None , (3 , 8 ))
2484+ if not bp ("mock" , config ) else (None , (3 , 6 )),
24832485 "urllib.error.HTTPError.headers" : (None , (3 , 4 )),
24842486 "urllib.parse._UNSAFE_URL_BYTES_TO_REMOVE" : (None , (3 , 10 )),
24852487 "urllib.request.Request.method" : (None , (3 , 3 )),
0 commit comments