Add __slots__ to typing._NotIterable (GH-92570)

(cherry picked from commit eef47d5bc7)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Miss Islington (bot) 2022-05-10 02:45:17 -07:00 committed by GitHub
parent e4fc347356
commit 8a2b3edcdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -417,6 +417,7 @@ class _NotIterable:
is treated specially.
"""
__slots__ = ()
__iter__ = None