diff options
author | Rostyslav Lobov <90602764+Motorenger@users.noreply.github.com> | 2024-04-19 11:33:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 11:33:13 (GMT) |
commit | 3e7d990a09f0928050b2b0c85f724c2bce13fcbb (patch) | |
tree | 96a7b11bf03ef2533e54f5214c37b2679d16cc66 | |
parent | 7c6cc00211772cc2afe0bc5e996b6d28f925d133 (diff) | |
download | cpython-3e7d990a09f0928050b2b0c85f724c2bce13fcbb.zip cpython-3e7d990a09f0928050b2b0c85f724c2bce13fcbb.tar.gz cpython-3e7d990a09f0928050b2b0c85f724c2bce13fcbb.tar.bz2 |
setobject: remove out of date docstring info (GH-118048)
-rw-r--r-- | Objects/setobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c index d5030ce..0d88f4f 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -2,7 +2,7 @@ /* set object implementation Written and maintained by Raymond D. Hettinger <python@rcn.com> - Derived from Lib/sets.py and Objects/dictobject.c. + Derived from Objects/dictobject.c. The basic lookup function used by all operations. This is based on Algorithm D from Knuth Vol. 3, Sec. 6.4. |