Skip to content

Commit 59b6b6f

Browse files
committed
stdlib: Remove duplicated Pickler.reducer_override()
The declaration was present twice. One from #3358 with the bulk Python 3.8 support, the other from #3636 with Pickle protocol 5 support.
1 parent ab36ecb commit 59b6b6f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

stdlib/2and3/pickle.pyi

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ class Pickler:
8282
def dump(self, obj: Any) -> None: ...
8383
def clear_memo(self) -> None: ...
8484
def persistent_id(self, obj: Any) -> Any: ...
85-
if sys.version_info >= (3, 8):
86-
def reducer_override(self, obj: Any) -> Any: ...
8785

8886
class Unpickler:
8987
if sys.version_info >= (3, 8):

0 commit comments

Comments
 (0)