From cf6af79d9b7bba5ba5ed8b3383d246b34f9cf5f8 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sat, 16 Nov 2024 10:59:32 +0100 Subject: [PATCH] Remove stale comment ref https://github.com/python-attrs/attrs/pull/1310#issuecomment-2480152650 --- src/attr/_make.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/attr/_make.py b/src/attr/_make.py index f137772a..e0cd9e0b 100644 --- a/src/attr/_make.py +++ b/src/attr/_make.py @@ -1532,8 +1532,6 @@ def _make_eq(cls, attrs): " return NotImplemented", ] - # We can't just do a big self.x = other.x and... clause due to - # irregularities like nan == nan is false but (nan,) == (nan,) is true. globs = {} if attrs: lines.append(" return (")