Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
pickles()
flagging __builtins__
as unpickleable due to the `a…
…ll()` function (#538) Currently: ```python >>> import dill >>> dill.pickles(__builtins__) # __builtins__.all() raises a TypeError for a missing argument False >>> dill.copy(__builtins__) <module 'builtins' (built-in)> >>> _ is __builtins__ True ``` Expected: ```python >>> import dill >>> dill.pickles(__builtins__, exact=True) True ```
- Loading branch information