File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2787,9 +2787,7 @@ def test_dict_proxy_nested(self):
27872787 self .assertEqual (outer [- 1 ][- 1 ]['feed' ], 3 )
27882788
27892789 def test_set_isinstance (self ):
2790- m = multiprocessing .Manager ()
2791- self .addCleanup (m .shutdown )
2792- s = m .set ()
2790+ s = self .set ()
27932791 self .assertIsInstance (s , collections .abc .MutableSet )
27942792 self .assertNotIsInstance (s , collections .abc .MutableMapping )
27952793
@@ -7156,6 +7154,7 @@ class ManagerMixin(BaseMixin):
71567154 Array = property (operator .attrgetter ('manager.Array' ))
71577155 list = property (operator .attrgetter ('manager.list' ))
71587156 dict = property (operator .attrgetter ('manager.dict' ))
7157+ set = property (operator .attrgetter ('manager.set' ))
71597158 Namespace = property (operator .attrgetter ('manager.Namespace' ))
71607159
71617160 @classmethod
You can’t perform that action at this time.
0 commit comments