Skip to content

Commit

Permalink
pythongh-86069: correct object.__ipow__() signature
Browse files Browse the repository at this point in the history
There is no way to call ternary form of this dunder.
  • Loading branch information
skirpichev committed Feb 14, 2025
1 parent 2dd0188 commit 45f3987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/reference/datamodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3376,7 +3376,7 @@ left undefined.
object.__itruediv__(self, other)
object.__ifloordiv__(self, other)
object.__imod__(self, other)
object.__ipow__(self, other[, modulo])
object.__ipow__(self, other)
object.__ilshift__(self, other)
object.__irshift__(self, other)
object.__iand__(self, other)
Expand Down

0 comments on commit 45f3987

Please sign in to comment.