-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Description
Seems stale:
Lines 111 to 121 in b36e573
def __next__(self): | |
"""Next value in the generator.""" | |
if not self._yielded_test_value: | |
self._yielded_test_value = True | |
return self.test_value | |
else: | |
return smarttypeX(copy(next(self.gen))) | |
# python2 generator | |
next = __next__ | |
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
ricardoV94 commentedon Jan 25, 2025
That whole thing is deprecated (if you trigger it via the user-facing API)
williambdean commentedon Jan 25, 2025
I see the deprecation warning dating to August. Can I do the honors of removing?
ricardoV94 commentedon Jan 25, 2025
Sure