Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 6024ffd

Browse files
author
Matthias Koeppe
committed
src/sage/misc/call.py: register_unpickle_override for call_method
1 parent b9314d4 commit 6024ffd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sage/misc/call.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,6 @@ def call_method(obj, name, *args, **kwds):
177177
3
178178
"""
179179
return getattr(obj, name)(*args, **kwds)
180+
181+
from sage.misc.persist import register_unpickle_override
182+
register_unpickle_override("sage.misc.misc", "call_method", call_method)

0 commit comments

Comments
 (0)