`frozenset.__xor__` signature is wrong
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 5.1k
- 派生
- 2.1k
- 平均合并
- 1 天 19 小时
- 30 天内合并 PR
- 82
描述
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".
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
先从 typeshed 中 frozenset.xor 和 collections.abc.Set/AbstractSet 的声明开始,然后将其与 issue 中描述的 Objects/setobject.c 行为进行比较。确定类 set 和可迭代操作数支持的重载,并使用复现的案例作为完成检查,以确保当运行时分派可能返回另一种 set 类型时,注解不会承诺返回 frozenset。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- developer-experience, tooling
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 48/100