(self, obj)
| 1309 | return code, base_globals, None, None, closure |
| 1310 | |
| 1311 | def dump(self, obj): |
| 1312 | try: |
| 1313 | return super().dump(obj) |
| 1314 | except RecursionError as e: |
| 1315 | msg = "Could not pickle object as excessively deep recursion required." |
| 1316 | raise pickle.PicklingError(msg) from e |
| 1317 | |
| 1318 | def __init__(self, file, protocol=None, buffer_callback=None): |
| 1319 | if protocol is None: |
no outgoing calls