Skip to content

Commit c0f9bd4

Browse files
author
brett.cannon
committed
Remove use of callable() from pickle to silence warnings under -3.
git-svn-id: http://svn.python.org/projects/python/trunk@65524 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 89204d8 commit c0f9bd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/pickle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def save_reduce(self, func, args, state=None,
351351
raise PicklingError("args from reduce() should be a tuple")
352352

353353
# Assert that func is callable
354-
if not callable(func):
354+
if not hasattr(func, '__call__'):
355355
raise PicklingError("func from reduce should be callable")
356356

357357
save = self.save

0 commit comments

Comments
 (0)