This is also most likely the case of other comparators methods on builtins and ABCs.
In one phrase, frozenset.__xor__ on a AbstractSet will immediatly return NotImplemented, and fall-back to AbstractSet methods which have 0 guarantees of returning a frozenset instance.
Explanations
The frozenset method declares:
def __xor__(self, value: AbstractSet[_S], /) -> frozenset[_T_co | _S]:
"""Return self^value."""
...
and the one for AbstractSet:
def __xor__(self, other: AbstractSet[_T], /) -> AbstractSet[_T_co | _T]: ...
But if we take a look at the actual C level implementation of frozenset.__xor__, it's easy to see why it's wrong.
PyAnySet_Check will only return true on an exact instance/subtype of set and frozenset,
not on subclasses/protocol compliant instances of collections.abc.Set.
As such, since it return NotImplemented if "value" is a subclass Foo of collections.abc.AbstractSet, it's Foo.__xor__ who's called.
The default impl of AbstractSet::__xor__ ( (Here you can see that the typing is wrong as well by being too strict, it accepts any Iterable):
def __xor__(self, other):
if not isinstance(other, Set):
if not isinstance(other, Iterable):
return NotImplemented
other = self._from_iterable(other)
return (self - other) | (other - self)
So as you can see at this point we just call AbstractSet methods.
In my very own and very personal opinion I consider this design with NotImplemented a reallyy bad design in itself, but in any case this means that runtime behavior may be very different than what is expected from just looking at the typing signature.
Why it's an issue
In my current project pyochain, I'm reimplementing in Rust (by composition with python builtins, or from scratch) many python constructs, including most of collections.abc and frozenset.
to keep robustness, I ported manually many tests from cpython test suite.
I consider typeshed my primary source of truth for expected behavior (because it's much easier than looking in CPython code).
Recently, I ported a lot of tests for collections.abc, and even if my type checking was pristine, I still had many runtime errors when checking instances.
I then had to spend a few hours and many headscratchs to understand why it was like that when there's many "ball poking" between my new abstract PyoSet, my frozenset wrapper Set, and many combinations of __xor__, __rxor__ ,etc...
Reproducible example
You can use itertools.combinations_with_replacement instead of using my library if you want to quickly check it for yourself.
The class Base is directly taken from a class tested in cpython test suite.
from __future__ import annotations
from collections.abc import Iterable, Iterator
from collections.abc import Set as AbstractSet
from typing import override
from pyochain import Seq
class Base:
def __init__(self, elements: Iterable[object] = ()) -> None:
self.data: list[object] = []
for elem in elements:
if elem not in self.data:
self.data.append(elem)
@override
def __repr__(self) -> str:
return f"{self.__class__.__name__}({self.data.__class__.__name__})"
def __contains__(self, elem: object) -> bool:
return elem in self.data
def __iter__(self) -> Iterator[object]:
return iter(self.data)
def __len__(self) -> int:
return len(self.data)
class ImplAbcSet(Base, AbstractSet[object]):
pass
def main():
data = (
{1, 2, 3},
frozenset([3, 4, 5]),
ImplAbcSet([1, 2, 3]),
)
return Seq(data).iter().combinations_with_replacement(2).for_each_star(show)
def show(x: AbstractSet[object], y: AbstractSet[object]) -> AbstractSet[object]:
new = x ^ y
print(
x.__class__.__name__, "xor", y.__class__.__name__, "=>", new.__class__.__name__
)
return new
if __name__ == "__main__":
main()
output:
set xor set => set
set xor frozenset => set
set xor ImplAbcSet => ImplAbcSet # not type safe!
frozenset xor frozenset => frozenset
frozenset xor ImplAbcSet => ImplAbcSet # not type safe!
ImplAbcSet xor ImplAbcSet => ImplAbcSet
Inlay hint (red is because of unused variable, not type error)

What I propose
To keep maximum robustness, overloads should be added. I'm not sure however if an exact tracking of every possible situations is even possible with current python typing possibilities.
EDIT:
got again bitten today by this :)
d = {1: 2}
d2 = {3: 4}
x = frozenset(d.keys()) & d2.keys()
print(x.__class__.__name__)
output "set".

This is also most likely the case of other comparators methods on builtins and ABCs.
In one phrase,
frozenset.__xor__on aAbstractSetwill immediatly returnNotImplemented, and fall-back toAbstractSetmethods which have 0 guarantees of returning afrozensetinstance.Explanations
The
frozensetmethod declares:and the one for AbstractSet:
But if we take a look at the actual C level implementation of
frozenset.__xor__, it's easy to see why it's wrong.PyAnySet_Check will only return true on an exact instance/subtype of
setandfrozenset,not on subclasses/protocol compliant instances of
collections.abc.Set.As such, since it return
NotImplementedif "value" is a subclassFooofcollections.abc.AbstractSet, it'sFoo.__xor__who's called.The default impl of
AbstractSet::__xor__( (Here you can see that the typing is wrong as well by being too strict, it accepts any Iterable):So as you can see at this point we just call
AbstractSetmethods.In my very own and very personal opinion I consider this design with
NotImplementeda reallyy bad design in itself, but in any case this means that runtime behavior may be very different than what is expected from just looking at the typing signature.Why it's an issue
In my current project pyochain, I'm reimplementing in Rust (by composition with python builtins, or from scratch) many python constructs, including most of
collections.abcand frozenset.to keep robustness, I ported manually many tests from cpython test suite.
I consider typeshed my primary source of truth for expected behavior (because it's much easier than looking in CPython code).
Recently, I ported a lot of tests for
collections.abc, and even if my type checking was pristine, I still had many runtime errors when checking instances.I then had to spend a few hours and many headscratchs to understand why it was like that when there's many "ball poking" between my new abstract
PyoSet, myfrozensetwrapperSet, and many combinations of__xor__,__rxor__,etc...Reproducible example
You can use
itertools.combinations_with_replacementinstead of using my library if you want to quickly check it for yourself.The class
Baseis directly taken from a class tested in cpython test suite.output:
Inlay hint (red is because of unused variable, not type error)

What I propose
To keep maximum robustness, overloads should be added. I'm not sure however if an exact tracking of every possible situations is even possible with current python typing possibilities.
EDIT:
got again bitten today by this :)
output "set".