Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
cpython/Lib/test/test_iterlen.py at main · python/cpython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.4k
Star
77.2k
Code
Issues
5k+
Pull requests
2.6k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
cpython
/
Lib
/
test
/
test_iterlen.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
228 lines (165 loc) · 7.1 KB
main
Breadcrumbs
cpython
/
Lib
/
test
/
test_iterlen.py
Copy path
Top
File metadata and controls
Code
Blame
228 lines (165 loc) · 7.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
""" Test Iterator Length Transparency
Some functions or methods which accept general iterable arguments have
optional, more efficient code paths if they know how many items to expect.
For instance, map(func, iterable), will pre-allocate the exact amount of
space required whenever the iterable can report its length.
The desired invariant is: len(it)==len(list(it)).
A complication is that an iterable and iterator can be the same object. To
maintain the invariant, an iterator needs to dynamically update its length.
For instance, an iterable such as range(10) always reports its length as ten,
but it=iter(range(10)) starts at ten, and then goes to nine after next(it).
Having this capability means that map() can ignore the distinction between
map(func, iterable) and map(func, iter(iterable)).
When the iterable is immutable, the implementation can straight-forwardly
report the original length minus the cumulative number of calls to next().
This is the case for tuples, range objects, and itertools.repeat().
Some containers become temporarily immutable during iteration. This includes
dicts, sets, and collections.deque. Their implementation is equally simple
though they need to permanently set their length to zero whenever there is
an attempt to iterate after a length mutation.
The situation slightly more involved whenever an object allows length mutation
during iteration. Lists and sequence iterators are dynamically updatable.
So, if a list is extended during iteration, the iterator will continue through
the new items. If it shrinks to a point before the most recent iteration,
then no further items are available and the length is reported at zero.
Reversed objects can also be wrapped around mutable objects; however, any
appends after the current position are ignored. Any other approach leads
to confusion and possibly returning the same item more than once.
The iterators not listed above, such as enumerate and the other itertools,
are not length transparent because they have no way to distinguish between
iterables that report static length and iterators whose length changes with
each call (i.e. the difference between enumerate('abc') and
enumerate(iter('abc')).
"""
import
unittest
from
itertools
import
repeat
from
collections
import
deque
from
operator
import
length_hint
n
=
10
class
TestInvariantWithoutMutations
:
def
test_invariant
(
self
):
it
=
self
.
it
for
i
in
reversed
(
range
(
1
,
n
+
1
)):
self
.
assertEqual
(
length_hint
(
it
),
i
)
next
(
it
)
self
.
assertEqual
(
length_hint
(
it
),
0
)
self
.
assertRaises
(
StopIteration
,
next
,
it
)
self
.
assertEqual
(
length_hint
(
it
),
0
)
class
TestTemporarilyImmutable
(
TestInvariantWithoutMutations
):
def
test_immutable_during_iteration
(
self
):
# objects such as deques, sets, and dictionaries enforce
# length immutability during iteration
it
=
self
.
it
self
.
assertEqual
(
length_hint
(
it
),
n
)
next
(
it
)
self
.
assertEqual
(
length_hint
(
it
),
n
-
1
)
self
.
mutate
()
self
.
assertRaises
(
RuntimeError
,
next
,
it
)
self
.
assertEqual
(
length_hint
(
it
),
0
)
## ------- Concrete Type Tests -------
class
TestRepeat
(
TestInvariantWithoutMutations
,
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
it
=
repeat
(
None
,
n
)
class
TestXrange
(
TestInvariantWithoutMutations
,
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
it
=
iter
(
range
(
n
))
class
TestXrangeCustomReversed
(
TestInvariantWithoutMutations
,
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
it
=
reversed
(
range
(
n
))
class
TestTuple
(
TestInvariantWithoutMutations
,
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
it
=
iter
(
tuple
(
range
(
n
)))
## ------- Types that should not be mutated during iteration -------
class
TestDeque
(
TestTemporarilyImmutable
,
unittest
.
TestCase
):
def
setUp
(
self
):
d
=
deque
(
range
(
n
))
self
.
it
=
iter
(
d
)
self
.
mutate
=
d
.
pop
class
TestDequeReversed
(
TestTemporarilyImmutable
,
unittest
.
TestCase
):
def
setUp
(
self
):
d
=
deque
(
range
(
n
))
self
.
it
=
reversed
(
d
)
self
.
mutate
=
d
.
pop
class
TestDictKeys
(
TestTemporarilyImmutable
,
unittest
.
TestCase
):
def
setUp
(
self
):
d
=
dict
.
fromkeys
(
range
(
n
))
self
.
it
=
iter
(
d
)
self
.
mutate
=
d
.
popitem
class
TestDictItems
(
TestTemporarilyImmutable
,
unittest
.
TestCase
):
def
setUp
(
self
):
d
=
dict
.
fromkeys
(
range
(
n
))
self
.
it
=
iter
(
d
.
items
())
self
.
mutate
=
d
.
popitem
class
TestDictValues
(
TestTemporarilyImmutable
,
unittest
.
TestCase
):
def
setUp
(
self
):
d
=
dict
.
fromkeys
(
range
(
n
))
self
.
it
=
iter
(
d
.
values
())
self
.
mutate
=
d
.
popitem
class
TestSet
(
TestTemporarilyImmutable
,
unittest
.
TestCase
):
def
setUp
(
self
):
d
=
set
(
range
(
n
))
self
.
it
=
iter
(
d
)
self
.
mutate
=
d
.
pop
## ------- Types that can mutate during iteration -------
class
TestList
(
TestInvariantWithoutMutations
,
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
it
=
iter
(
range
(
n
))
def
test_mutation
(
self
):
d
=
list
(
range
(
n
))
it
=
iter
(
d
)
next
(
it
)
next
(
it
)
self
.
assertEqual
(
length_hint
(
it
),
n
-
2
)
d
.
append
(
n
)
self
.
assertEqual
(
length_hint
(
it
),
n
-
1
)
# grow with append
d
[
1
:]
=
[]
self
.
assertEqual
(
length_hint
(
it
),
0
)
self
.
assertEqual
(
list
(
it
), [])
d
.
extend
(
range
(
20
))
self
.
assertEqual
(
length_hint
(
it
),
0
)
class
TestListReversed
(
TestInvariantWithoutMutations
,
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
it
=
reversed
(
range
(
n
))
def
test_mutation
(
self
):
d
=
list
(
range
(
n
))
it
=
reversed
(
d
)
next
(
it
)
next
(
it
)
self
.
assertEqual
(
length_hint
(
it
),
n
-
2
)
d
.
append
(
n
)
self
.
assertEqual
(
length_hint
(
it
),
n
-
2
)
# ignore append
d
[
1
:]
=
[]
self
.
assertEqual
(
length_hint
(
it
),
0
)
self
.
assertEqual
(
list
(
it
), [])
# confirm invariant
d
.
extend
(
range
(
20
))
self
.
assertEqual
(
length_hint
(
it
),
0
)
## -- Check to make sure exceptions are not suppressed by __length_hint__()
class
BadLen
(
object
):
def
__iter__
(
self
):
return
iter
(
range
(
10
))
def
__len__
(
self
):
raise
RuntimeError
(
'hello'
)
class
BadLengthHint
(
object
):
def
__iter__
(
self
):
return
iter
(
range
(
10
))
def
__length_hint__
(
self
):
raise
RuntimeError
(
'hello'
)
class
NoneLengthHint
(
object
):
def
__iter__
(
self
):
return
iter
(
range
(
10
))
def
__length_hint__
(
self
):
return
NotImplemented
class
TestLengthHintExceptions
(
unittest
.
TestCase
):
def
test_issue1242657
(
self
):
self
.
assertRaises
(
RuntimeError
,
list
,
BadLen
())
self
.
assertRaises
(
RuntimeError
,
list
,
BadLengthHint
())
self
.
assertRaises
(
RuntimeError
, [].
extend
,
BadLen
())
self
.
assertRaises
(
RuntimeError
, [].
extend
,
BadLengthHint
())
b
=
bytearray
(
range
(
10
))
self
.
assertRaises
(
RuntimeError
,
b
.
extend
,
BadLen
())
self
.
assertRaises
(
RuntimeError
,
b
.
extend
,
BadLengthHint
())
def
test_invalid_hint
(
self
):
# Make sure an invalid result doesn't muck-up the works
self
.
assertEqual
(
list
(
NoneLengthHint
()),
list
(
range
(
10
)))
if
__name__
==
"__main__"
:
unittest
.
main
()
You can’t perform that action at this time.