bluesky / event-model

data model for event-based data collection and analysis
https://blueskyproject.io/event-model
BSD 3-Clause "New" or "Revised" License
15 stars 31 forks source link

Make Filler pickle-able. #161

Closed danielballan closed 4 years ago

danielballan commented 4 years ago

When we added threading.local() to Filler to support the coersion feature, we made it un-pickle-able. This adds a test to defend its pickel-ability and restores it.

klauer commented 4 years ago

(Not sure if it's applicable here, but chiming in regardless: generally I've switched to implementing https://docs.python.org/3/library/pickle.html#object.__getnewargs_ex__ as it's more flexible.)