File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ Release notes
9
9
Various minor improvements, including: ``Group `` objects support member access
10
10
via dot notation (``__getattr__ ``); fixed metadata caching for ``Array.shape ``
11
11
property and derivatives; added ``Array.ndim `` property; fixed
12
- ``Array.__array__ `` method arguments; fixed bug in pickling ``Array `` state.
12
+ ``Array.__array__ `` method arguments; fixed bug in pickling ``Array `` state;
13
+ fixed bug in pickling ``ThreadSynchronizer ``.
13
14
14
15
.. _release_2.1.0 :
15
16
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ def __getitem__(self, item):
17
17
return self .locks [item ]
18
18
19
19
def __getstate__ (self ):
20
- return dict ()
20
+ return True
21
21
22
- def __setstate__ (self , d ):
22
+ def __setstate__ (self , * args ):
23
23
# reinitialize from scratch
24
24
self .__init__ ()
25
25
You can’t perform that action at this time.
0 commit comments