test_genexps.py 7.12 KB
Newer Older
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
doctests = """

Test simple loop with conditional

    >>> sum(i*i for i in range(100) if i&1 == 1)
    166650

Test simple nesting

    >>> list((i,j) for i in range(3) for j in range(4) )
    [(0, 0), (0, 1), (0, 2), (0, 3), (1, 0), (1, 1), (1, 2), (1, 3), (2, 0), (2, 1), (2, 2), (2, 3)]

Test nesting with the inner expression dependent on the outer

    >>> list((i,j) for i in range(4) for j in range(i) )
    [(1, 0), (2, 0), (2, 1), (3, 0), (3, 1), (3, 2)]

Make sure the induction variable is not exposed

    >>> i = 20
    >>> sum(i*i for i in range(100))
    328350
    >>> i
    20

Test first class

    >>> g = (i*i for i in range(4))
    >>> type(g)
30
    <class 'generator'>
31 32 33 34 35 36
    >>> list(g)
    [0, 1, 4, 9]

Test direct calls to next()

    >>> g = (i*i for i in range(3))
37
    >>> next(g)
38
    0
39
    >>> next(g)
40
    1
41
    >>> next(g)
42
    4
43
    >>> next(g)
44 45
    Traceback (most recent call last):
      File "<pyshell#21>", line 1, in -toplevel-
46
        next(g)
47 48 49 50
    StopIteration

Does it stay stopped?

51
    >>> next(g)
52 53
    Traceback (most recent call last):
      File "<pyshell#21>", line 1, in -toplevel-
54
        next(g)
55 56 57 58 59 60 61
    StopIteration
    >>> list(g)
    []

Test running gen when defining function is out of scope

    >>> def f(n):
62
    ...     return (i*i for i in range(n))
63 64 65 66
    >>> list(f(10))
    [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

    >>> def f(n):
67
    ...     return ((i,j) for i in range(3) for j in range(n))
68 69 70
    >>> list(f(4))
    [(0, 0), (0, 1), (0, 2), (0, 3), (1, 0), (1, 1), (1, 2), (1, 3), (2, 0), (2, 1), (2, 2), (2, 3)]
    >>> def f(n):
71
    ...     return ((i,j) for i in range(3) for j in range(4) if j in range(n))
72 73 74 75 76
    >>> list(f(4))
    [(0, 0), (0, 1), (0, 2), (0, 3), (1, 0), (1, 1), (1, 2), (1, 3), (2, 0), (2, 1), (2, 2), (2, 3)]
    >>> list(f(2))
    [(0, 0), (0, 1), (1, 0), (1, 1), (2, 0), (2, 1)]

77
Verify that parenthesis are required in a statement
78 79

    >>> def f(n):
80
    ...     return i*i for i in range(n)
81 82 83
    Traceback (most recent call last):
       ...
    SyntaxError: invalid syntax
84

85 86
Verify that parenthesis are required when used as a keyword argument value

87
    >>> dict(a = i for i in range(10))
88 89 90 91 92 93
    Traceback (most recent call last):
       ...
    SyntaxError: invalid syntax

Verify that parenthesis are required when used as a keyword argument value

94
    >>> dict(a = (i for i in range(10))) #doctest: +ELLIPSIS
95
    {'a': <generator object <genexpr> at ...>}
96

97 98 99 100 101 102 103 104
Verify early binding for the outermost for-expression

    >>> x=10
    >>> g = (i*i for i in range(x))
    >>> x = 5
    >>> list(g)
    [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

105 106 107 108 109 110 111
Verify that the outermost for-expression makes an immediate check
for iterability

    >>> (i for i in 6)
    Traceback (most recent call last):
      File "<pyshell#4>", line 1, in -toplevel-
        (i for i in 6)
112
    TypeError: 'int' object is not iterable
113

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
Verify late binding for the outermost if-expression

    >>> include = (2,4,6,8)
    >>> g = (i*i for i in range(10) if i in include)
    >>> include = (1,3,5,7,9)
    >>> list(g)
    [1, 9, 25, 49, 81]

Verify late binding for the innermost for-expression

    >>> g = ((i,j) for i in range(3) for j in range(x))
    >>> x = 4
    >>> list(g)
    [(0, 0), (0, 1), (0, 2), (0, 3), (1, 0), (1, 1), (1, 2), (1, 3), (2, 0), (2, 1), (2, 2), (2, 3)]

Verify re-use of tuples (a side benefit of using genexps over listcomps)

131
    >>> tupleids = list(map(id, ((i,i) for i in range(10))))
132
    >>> int(max(tupleids) - min(tupleids))
133 134
    0

135 136 137 138 139
Verify that syntax error's are raised for genexps used as lvalues

    >>> (y for y in (1,2)) = 10
    Traceback (most recent call last):
       ...
140
    SyntaxError: can't assign to generator expression
141 142 143 144

    >>> (y for y in (1,2)) += 10
    Traceback (most recent call last):
       ...
Benjamin Peterson's avatar
Benjamin Peterson committed
145
    SyntaxError: can't assign to generator expression
146

147 148 149 150 151

########### Tests borrowed from or inspired by test_generators.py ############

Make a generator that acts like range()

152
    >>> yrange = lambda n:  (i for i in range(n))
153 154 155 156 157 158 159
    >>> list(yrange(10))
    [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Generators always return to the most recent caller:

    >>> def creator():
    ...     r = yrange(5)
160
    ...     print("creator", next(r))
161 162 163 164
    ...     return r
    >>> def caller():
    ...     r = creator()
    ...     for i in r:
165
    ...             print("caller", i)
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
    >>> caller()
    creator 0
    caller 1
    caller 2
    caller 3
    caller 4

Generators can call other generators:

    >>> def zrange(n):
    ...     for i in yrange(n):
    ...         yield i
    >>> list(zrange(5))
    [0, 1, 2, 3, 4]


Verify that a gen exp cannot be resumed while it is actively running:

184
    >>> g = (next(me) for i in range(10))
185
    >>> me = g
186
    >>> next(me)
187 188
    Traceback (most recent call last):
      File "<pyshell#30>", line 1, in -toplevel-
189
        next(me)
190
      File "<pyshell#28>", line 1, in <generator expression>
191
        g = (next(me) for i in range(10))
192 193 194 195 196
    ValueError: generator already executing

Verify exception propagation

    >>> g = (10 // i for i in (5, 0, 2))
197
    >>> next(g)
198
    2
199
    >>> next(g)
200 201
    Traceback (most recent call last):
      File "<pyshell#37>", line 1, in -toplevel-
202
        next(g)
203 204 205
      File "<pyshell#35>", line 1, in <generator expression>
        g = (10 // i for i in (5, 0, 2))
    ZeroDivisionError: integer division or modulo by zero
206
    >>> next(g)
207 208
    Traceback (most recent call last):
      File "<pyshell#38>", line 1, in -toplevel-
209
        next(g)
210 211 212 213
    StopIteration

Make sure that None is a valid return value

214
    >>> list(None for i in range(10))
215 216 217 218 219
    [None, None, None, None, None, None, None, None, None, None]

Check that generator attributes are present

    >>> g = (i*i for i in range(3))
220
    >>> expected = set(['gi_frame', 'gi_running'])
221 222 223
    >>> set(attr for attr in dir(g) if not attr.startswith('__')) >= expected
    True

224
    >>> from test.support import HAVE_DOCSTRINGS
225 226
    >>> print(g.__next__.__doc__ if HAVE_DOCSTRINGS else 'Implement next(self).')
    Implement next(self).
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
    >>> import types
    >>> isinstance(g, types.GeneratorType)
    True

Check the __iter__ slot is defined to return self

    >>> iter(g) is g
    True

Verify that the running flag is set properly

    >>> g = (me.gi_running for i in (0,1))
    >>> me = g
    >>> me.gi_running
    0
242
    >>> next(me)
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
    1
    >>> me.gi_running
    0

Verify that genexps are weakly referencable

    >>> import weakref
    >>> g = (i*i for i in range(4))
    >>> wr = weakref.ref(g)
    >>> wr() is g
    True
    >>> p = weakref.proxy(g)
    >>> list(p)
    [0, 1, 4, 9]


"""

261
import sys
262

263 264 265 266 267
# Trace function can throw off the tuple reuse test.
if hasattr(sys, 'gettrace') and sys.gettrace():
    __test__ = {}
else:
    __test__ = {'doctests' : doctests}
268 269

def test_main(verbose=None):
270
    from test import support
271
    from test import test_genexps
272
    support.run_doctest(test_genexps, verbose)
273 274 275 276 277

    # verify reference counting
    if verbose and hasattr(sys, "gettotalrefcount"):
        import gc
        counts = [None] * 5
278
        for i in range(len(counts)):
279
            support.run_doctest(test_genexps, verbose)
280 281
            gc.collect()
            counts[i] = sys.gettotalrefcount()
282
        print(counts)
283 284 285

if __name__ == "__main__":
    test_main(verbose=True)