Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
GH-112152: Fix typo in typing.override docstring (GH-112158)
(cherry picked from commit 12c7e9d)

Co-authored-by: Qua27 <92877777+Qua27@users.noreply.github.com>
  • Loading branch information
Qua27 authored and miss-islington committed Nov 16, 2023
commit baea8f383deacaa8bfcf9a89751b2317bfd7d009
2 changes: 1 addition & 1 deletion Lib/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3364,7 +3364,7 @@ def override[F: _Func](method: F, /) -> F:
Usage::

class Base:
def method(self) -> None: ...
def method(self) -> None:
pass

class Child(Base):
Expand Down