Changed synthesized comparison methods (`__lt__`, etc.) for dataclasses when `order=True` to use `Self` rather than an instance of the class. This is not only more consistent with other synthesized methods, but it also preserves covariance of type variables if the dataclass is frozen. (#8734)

This commit is contained in:
Eric Traut 2024-08-10 10:27:32 -06:00 коммит произвёл GitHub
Родитель 465b04c80b
Коммит 1a17c0aa6b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -624,9 +624,8 @@ export function synthesizeDataClassMethods(
}
if (ClassType.isDataClassGenerateOrder(classType)) {
const objType = ClassType.cloneAsInstance(classType);
['__lt__', '__le__', '__gt__', '__ge__'].forEach((operator) => {
synthesizeComparisonMethod(operator, objType);
synthesizeComparisonMethod(operator, selfType);
});
}