Benjamin Peterson | a567a77 | 2010-03-21 21:00:50 +0000 | [diff] [blame] | 1 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 2 | """Doctest for method/function calls. |
Jeremy Hylton | aed0d8d | 2000-03-28 23:51:17 +0000 | [diff] [blame] | 3 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 4 | We're going the use these types for extra testing |
Raymond Hettinger | 40174c3 | 2003-05-31 07:04:16 +0000 | [diff] [blame] | 5 | |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 6 | >>> from collections import UserList |
| 7 | >>> from collections import UserDict |
Jeremy Hylton | aed0d8d | 2000-03-28 23:51:17 +0000 | [diff] [blame] | 8 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 9 | We're defining four helper functions |
Jeremy Hylton | aed0d8d | 2000-03-28 23:51:17 +0000 | [diff] [blame] | 10 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 11 | >>> def e(a,b): |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 12 | ... print(a, b) |
Jeremy Hylton | aed0d8d | 2000-03-28 23:51:17 +0000 | [diff] [blame] | 13 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 14 | >>> def f(*a, **k): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 15 | ... print(a, support.sortdict(k)) |
Jeremy Hylton | aed0d8d | 2000-03-28 23:51:17 +0000 | [diff] [blame] | 16 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 17 | >>> def g(x, *y, **z): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 18 | ... print(x, y, support.sortdict(z)) |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 19 | |
| 20 | >>> def h(j=1, a=2, h=3): |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 21 | ... print(j, a, h) |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 22 | |
| 23 | Argument list examples |
| 24 | |
| 25 | >>> f() |
| 26 | () {} |
| 27 | >>> f(1) |
| 28 | (1,) {} |
| 29 | >>> f(1, 2) |
| 30 | (1, 2) {} |
| 31 | >>> f(1, 2, 3) |
| 32 | (1, 2, 3) {} |
| 33 | >>> f(1, 2, 3, *(4, 5)) |
| 34 | (1, 2, 3, 4, 5) {} |
| 35 | >>> f(1, 2, 3, *[4, 5]) |
| 36 | (1, 2, 3, 4, 5) {} |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 37 | >>> f(*[1, 2, 3], 4, 5) |
| 38 | (1, 2, 3, 4, 5) {} |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 39 | >>> f(1, 2, 3, *UserList([4, 5])) |
| 40 | (1, 2, 3, 4, 5) {} |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 41 | >>> f(1, 2, 3, *[4, 5], *[6, 7]) |
| 42 | (1, 2, 3, 4, 5, 6, 7) {} |
| 43 | >>> f(1, *[2, 3], 4, *[5, 6], 7) |
| 44 | (1, 2, 3, 4, 5, 6, 7) {} |
| 45 | >>> f(*UserList([1, 2]), *UserList([3, 4]), 5, *UserList([6, 7])) |
| 46 | (1, 2, 3, 4, 5, 6, 7) {} |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 47 | |
| 48 | Here we add keyword arguments |
| 49 | |
| 50 | >>> f(1, 2, 3, **{'a':4, 'b':5}) |
| 51 | (1, 2, 3) {'a': 4, 'b': 5} |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 52 | >>> f(1, 2, **{'a': -1, 'b': 5}, **{'a': 4, 'c': 6}) |
| 53 | Traceback (most recent call last): |
| 54 | ... |
| 55 | TypeError: f() got multiple values for keyword argument 'a' |
| 56 | >>> f(1, 2, **{'a': -1, 'b': 5}, a=4, c=6) |
| 57 | Traceback (most recent call last): |
| 58 | ... |
| 59 | TypeError: f() got multiple values for keyword argument 'a' |
Serhiy Storchaka | 3c317e7 | 2016-06-12 09:22:01 +0300 | [diff] [blame] | 60 | >>> f(1, 2, a=3, **{'a': 4}, **{'a': 5}) |
| 61 | Traceback (most recent call last): |
| 62 | ... |
| 63 | TypeError: f() got multiple values for keyword argument 'a' |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 64 | >>> f(1, 2, 3, *[4, 5], **{'a':6, 'b':7}) |
| 65 | (1, 2, 3, 4, 5) {'a': 6, 'b': 7} |
| 66 | >>> f(1, 2, 3, x=4, y=5, *(6, 7), **{'a':8, 'b': 9}) |
| 67 | (1, 2, 3, 6, 7) {'a': 8, 'b': 9, 'x': 4, 'y': 5} |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 68 | >>> f(1, 2, 3, *[4, 5], **{'c': 8}, **{'a':6, 'b':7}) |
| 69 | (1, 2, 3, 4, 5) {'a': 6, 'b': 7, 'c': 8} |
| 70 | >>> f(1, 2, 3, *(4, 5), x=6, y=7, **{'a':8, 'b': 9}) |
| 71 | (1, 2, 3, 4, 5) {'a': 8, 'b': 9, 'x': 6, 'y': 7} |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 72 | |
| 73 | >>> f(1, 2, 3, **UserDict(a=4, b=5)) |
| 74 | (1, 2, 3) {'a': 4, 'b': 5} |
| 75 | >>> f(1, 2, 3, *(4, 5), **UserDict(a=6, b=7)) |
| 76 | (1, 2, 3, 4, 5) {'a': 6, 'b': 7} |
| 77 | >>> f(1, 2, 3, x=4, y=5, *(6, 7), **UserDict(a=8, b=9)) |
| 78 | (1, 2, 3, 6, 7) {'a': 8, 'b': 9, 'x': 4, 'y': 5} |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 79 | >>> f(1, 2, 3, *(4, 5), x=6, y=7, **UserDict(a=8, b=9)) |
| 80 | (1, 2, 3, 4, 5) {'a': 8, 'b': 9, 'x': 6, 'y': 7} |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 81 | |
| 82 | Examples with invalid arguments (TypeErrors). We're also testing the function |
| 83 | names in the exception messages. |
| 84 | |
| 85 | Verify clearing of SF bug #733667 |
| 86 | |
| 87 | >>> e(c=4) |
| 88 | Traceback (most recent call last): |
| 89 | ... |
| 90 | TypeError: e() got an unexpected keyword argument 'c' |
| 91 | |
| 92 | >>> g() |
| 93 | Traceback (most recent call last): |
| 94 | ... |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 95 | TypeError: g() missing 1 required positional argument: 'x' |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 96 | |
| 97 | >>> g(*()) |
| 98 | Traceback (most recent call last): |
| 99 | ... |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 100 | TypeError: g() missing 1 required positional argument: 'x' |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 101 | |
| 102 | >>> g(*(), **{}) |
| 103 | Traceback (most recent call last): |
| 104 | ... |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 105 | TypeError: g() missing 1 required positional argument: 'x' |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 106 | |
| 107 | >>> g(1) |
| 108 | 1 () {} |
| 109 | >>> g(1, 2) |
| 110 | 1 (2,) {} |
| 111 | >>> g(1, 2, 3) |
| 112 | 1 (2, 3) {} |
| 113 | >>> g(1, 2, 3, *(4, 5)) |
| 114 | 1 (2, 3, 4, 5) {} |
| 115 | |
| 116 | >>> class Nothing: pass |
| 117 | ... |
| 118 | >>> g(*Nothing()) |
| 119 | Traceback (most recent call last): |
| 120 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 121 | TypeError: g() argument after * must be an iterable, not Nothing |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 122 | |
| 123 | >>> class Nothing: |
| 124 | ... def __len__(self): return 5 |
| 125 | ... |
| 126 | |
| 127 | >>> g(*Nothing()) |
| 128 | Traceback (most recent call last): |
| 129 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 130 | TypeError: g() argument after * must be an iterable, not Nothing |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 131 | |
| 132 | >>> class Nothing(): |
| 133 | ... def __len__(self): return 5 |
| 134 | ... def __getitem__(self, i): |
| 135 | ... if i<3: return i |
| 136 | ... else: raise IndexError(i) |
| 137 | ... |
| 138 | |
| 139 | >>> g(*Nothing()) |
| 140 | 0 (1, 2) {} |
| 141 | |
| 142 | >>> class Nothing: |
| 143 | ... def __init__(self): self.c = 0 |
| 144 | ... def __iter__(self): return self |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 145 | ... def __next__(self): |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 146 | ... if self.c == 4: |
| 147 | ... raise StopIteration |
| 148 | ... c = self.c |
| 149 | ... self.c += 1 |
| 150 | ... return c |
| 151 | ... |
| 152 | |
| 153 | >>> g(*Nothing()) |
| 154 | 0 (1, 2, 3) {} |
| 155 | |
Martin Panter | b594422 | 2016-01-31 06:30:56 +0000 | [diff] [blame] | 156 | Check for issue #4806: Does a TypeError in a generator get propagated with the |
| 157 | right error message? (Also check with other iterables.) |
| 158 | |
| 159 | >>> def broken(): raise TypeError("myerror") |
| 160 | ... |
| 161 | |
| 162 | >>> g(*(broken() for i in range(1))) |
| 163 | Traceback (most recent call last): |
| 164 | ... |
| 165 | TypeError: myerror |
Serhiy Storchaka | 25e4f77 | 2017-08-03 11:37:15 +0300 | [diff] [blame] | 166 | >>> g(*range(1), *(broken() for i in range(1))) |
| 167 | Traceback (most recent call last): |
| 168 | ... |
| 169 | TypeError: myerror |
Martin Panter | b594422 | 2016-01-31 06:30:56 +0000 | [diff] [blame] | 170 | |
| 171 | >>> class BrokenIterable1: |
| 172 | ... def __iter__(self): |
| 173 | ... raise TypeError('myerror') |
| 174 | ... |
| 175 | >>> g(*BrokenIterable1()) |
| 176 | Traceback (most recent call last): |
| 177 | ... |
| 178 | TypeError: myerror |
Serhiy Storchaka | 25e4f77 | 2017-08-03 11:37:15 +0300 | [diff] [blame] | 179 | >>> g(*range(1), *BrokenIterable1()) |
| 180 | Traceback (most recent call last): |
| 181 | ... |
| 182 | TypeError: myerror |
Martin Panter | b594422 | 2016-01-31 06:30:56 +0000 | [diff] [blame] | 183 | |
| 184 | >>> class BrokenIterable2: |
| 185 | ... def __iter__(self): |
| 186 | ... yield 0 |
| 187 | ... raise TypeError('myerror') |
| 188 | ... |
| 189 | >>> g(*BrokenIterable2()) |
| 190 | Traceback (most recent call last): |
| 191 | ... |
| 192 | TypeError: myerror |
Serhiy Storchaka | 25e4f77 | 2017-08-03 11:37:15 +0300 | [diff] [blame] | 193 | >>> g(*range(1), *BrokenIterable2()) |
| 194 | Traceback (most recent call last): |
| 195 | ... |
| 196 | TypeError: myerror |
Martin Panter | b594422 | 2016-01-31 06:30:56 +0000 | [diff] [blame] | 197 | |
| 198 | >>> class BrokenSequence: |
| 199 | ... def __getitem__(self, idx): |
| 200 | ... raise TypeError('myerror') |
| 201 | ... |
| 202 | >>> g(*BrokenSequence()) |
| 203 | Traceback (most recent call last): |
| 204 | ... |
| 205 | TypeError: myerror |
Serhiy Storchaka | 25e4f77 | 2017-08-03 11:37:15 +0300 | [diff] [blame] | 206 | >>> g(*range(1), *BrokenSequence()) |
| 207 | Traceback (most recent call last): |
| 208 | ... |
| 209 | TypeError: myerror |
Martin Panter | b594422 | 2016-01-31 06:30:56 +0000 | [diff] [blame] | 210 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 211 | Make sure that the function doesn't stomp the dictionary |
| 212 | |
| 213 | >>> d = {'a': 1, 'b': 2, 'c': 3} |
| 214 | >>> d2 = d.copy() |
| 215 | >>> g(1, d=4, **d) |
| 216 | 1 () {'a': 1, 'b': 2, 'c': 3, 'd': 4} |
| 217 | >>> d == d2 |
| 218 | True |
| 219 | |
| 220 | What about willful misconduct? |
| 221 | |
| 222 | >>> def saboteur(**kw): |
| 223 | ... kw['x'] = 'm' |
| 224 | ... return kw |
| 225 | |
| 226 | >>> d = {} |
| 227 | >>> kw = saboteur(a=1, **d) |
| 228 | >>> d |
| 229 | {} |
Jeremy Hylton | aed0d8d | 2000-03-28 23:51:17 +0000 | [diff] [blame] | 230 | |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 231 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 232 | >>> g(1, 2, 3, **{'x': 4, 'y': 5}) |
| 233 | Traceback (most recent call last): |
| 234 | ... |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 235 | TypeError: g() got multiple values for argument 'x' |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 236 | |
| 237 | >>> f(**{1:2}) |
| 238 | Traceback (most recent call last): |
| 239 | ... |
| 240 | TypeError: f() keywords must be strings |
| 241 | |
| 242 | >>> h(**{'e': 2}) |
| 243 | Traceback (most recent call last): |
| 244 | ... |
| 245 | TypeError: h() got an unexpected keyword argument 'e' |
| 246 | |
| 247 | >>> h(*h) |
| 248 | Traceback (most recent call last): |
| 249 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 250 | TypeError: h() argument after * must be an iterable, not function |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 251 | |
Serhiy Storchaka | 7344285 | 2016-10-02 10:33:46 +0300 | [diff] [blame] | 252 | >>> h(1, *h) |
| 253 | Traceback (most recent call last): |
| 254 | ... |
| 255 | TypeError: h() argument after * must be an iterable, not function |
| 256 | |
| 257 | >>> h(*[1], *h) |
| 258 | Traceback (most recent call last): |
| 259 | ... |
| 260 | TypeError: h() argument after * must be an iterable, not function |
| 261 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 262 | >>> dir(*h) |
| 263 | Traceback (most recent call last): |
| 264 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 265 | TypeError: dir() argument after * must be an iterable, not function |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 266 | |
| 267 | >>> None(*h) |
| 268 | Traceback (most recent call last): |
| 269 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 270 | TypeError: NoneType object argument after * must be an iterable, \ |
| 271 | not function |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 272 | |
| 273 | >>> h(**h) |
| 274 | Traceback (most recent call last): |
| 275 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 276 | TypeError: h() argument after ** must be a mapping, not function |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 277 | |
Serhiy Storchaka | e036ef8 | 2016-10-02 11:06:43 +0300 | [diff] [blame] | 278 | >>> h(**[]) |
| 279 | Traceback (most recent call last): |
| 280 | ... |
| 281 | TypeError: h() argument after ** must be a mapping, not list |
| 282 | |
| 283 | >>> h(a=1, **h) |
| 284 | Traceback (most recent call last): |
| 285 | ... |
| 286 | TypeError: h() argument after ** must be a mapping, not function |
| 287 | |
| 288 | >>> h(a=1, **[]) |
| 289 | Traceback (most recent call last): |
| 290 | ... |
| 291 | TypeError: h() argument after ** must be a mapping, not list |
| 292 | |
| 293 | >>> h(**{'a': 1}, **h) |
| 294 | Traceback (most recent call last): |
| 295 | ... |
| 296 | TypeError: h() argument after ** must be a mapping, not function |
| 297 | |
| 298 | >>> h(**{'a': 1}, **[]) |
| 299 | Traceback (most recent call last): |
| 300 | ... |
| 301 | TypeError: h() argument after ** must be a mapping, not list |
| 302 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 303 | >>> dir(**h) |
| 304 | Traceback (most recent call last): |
| 305 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 306 | TypeError: dir() argument after ** must be a mapping, not function |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 307 | |
| 308 | >>> None(**h) |
| 309 | Traceback (most recent call last): |
| 310 | ... |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 311 | TypeError: NoneType object argument after ** must be a mapping, \ |
| 312 | not function |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 313 | |
| 314 | >>> dir(b=1, **{'b': 1}) |
| 315 | Traceback (most recent call last): |
| 316 | ... |
| 317 | TypeError: dir() got multiple values for keyword argument 'b' |
| 318 | |
| 319 | Another helper function |
| 320 | |
| 321 | >>> def f2(*a, **b): |
| 322 | ... return a, b |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 323 | |
| 324 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 325 | >>> d = {} |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 326 | >>> for i in range(512): |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 327 | ... key = 'k%d' % i |
| 328 | ... d[key] = i |
| 329 | >>> a, b = f2(1, *(2,3), **d) |
| 330 | >>> len(a), len(b), b == d |
| 331 | (3, 512, True) |
Raymond Hettinger | 40174c3 | 2003-05-31 07:04:16 +0000 | [diff] [blame] | 332 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 333 | >>> class Foo: |
| 334 | ... def method(self, arg1, arg2): |
| 335 | ... return arg1+arg2 |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 336 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 337 | >>> x = Foo() |
| 338 | >>> Foo.method(*(x, 1, 2)) |
| 339 | 3 |
| 340 | >>> Foo.method(x, *(1, 2)) |
| 341 | 3 |
| 342 | >>> Foo.method(*(1, 2, 3)) |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 343 | 5 |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 344 | >>> Foo.method(1, *[2, 3]) |
Neal Norwitz | d79bacc | 2008-03-18 20:58:39 +0000 | [diff] [blame] | 345 | 5 |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 346 | |
Ezio Melotti | 1392500 | 2011-03-16 11:05:33 +0200 | [diff] [blame] | 347 | A PyCFunction that takes only positional parameters should allow an |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 348 | empty keyword dictionary to pass without a complaint, but raise a |
| 349 | TypeError if te dictionary is not empty |
Jeremy Hylton | 074c3e6 | 2000-03-30 23:55:31 +0000 | [diff] [blame] | 350 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 351 | >>> try: |
| 352 | ... silence = id(1, *{}) |
| 353 | ... True |
| 354 | ... except: |
| 355 | ... False |
| 356 | True |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 357 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 358 | >>> id(1, **{'foo': 1}) |
| 359 | Traceback (most recent call last): |
| 360 | ... |
| 361 | TypeError: id() takes no keyword arguments |
Jeremy Hylton | 074c3e6 | 2000-03-30 23:55:31 +0000 | [diff] [blame] | 362 | |
Benjamin Peterson | 0289b15 | 2009-06-28 17:22:03 +0000 | [diff] [blame] | 363 | A corner case of keyword dictionary items being deleted during |
| 364 | the function call setup. See <http://bugs.python.org/issue2016>. |
| 365 | |
| 366 | >>> class Name(str): |
| 367 | ... def __eq__(self, other): |
| 368 | ... try: |
| 369 | ... del x[self] |
| 370 | ... except KeyError: |
| 371 | ... pass |
| 372 | ... return str.__eq__(self, other) |
| 373 | ... def __hash__(self): |
| 374 | ... return str.__hash__(self) |
| 375 | |
| 376 | >>> x = {Name("a"):1, Name("b"):2} |
| 377 | >>> def f(a, b): |
| 378 | ... print(a,b) |
| 379 | >>> f(**x) |
| 380 | 1 2 |
Benjamin Peterson | a567a77 | 2010-03-21 21:00:50 +0000 | [diff] [blame] | 381 | |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 382 | Too many arguments: |
Benjamin Peterson | a567a77 | 2010-03-21 21:00:50 +0000 | [diff] [blame] | 383 | |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 384 | >>> def f(): pass |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 385 | >>> f(1) |
| 386 | Traceback (most recent call last): |
| 387 | ... |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 388 | TypeError: f() takes 0 positional arguments but 1 was given |
| 389 | >>> def f(a): pass |
| 390 | >>> f(1, 2) |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 391 | Traceback (most recent call last): |
| 392 | ... |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 393 | TypeError: f() takes 1 positional argument but 2 were given |
| 394 | >>> def f(a, b=1): pass |
| 395 | >>> f(1, 2, 3) |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 396 | Traceback (most recent call last): |
| 397 | ... |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 398 | TypeError: f() takes from 1 to 2 positional arguments but 3 were given |
| 399 | >>> def f(*, kw): pass |
| 400 | >>> f(1, kw=3) |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 401 | Traceback (most recent call last): |
| 402 | ... |
| 403 | TypeError: f() takes 0 positional arguments but 1 positional argument (and 1 keyword-only argument) were given |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 404 | >>> def f(*, kw, b): pass |
| 405 | >>> f(1, 2, 3, b=3, kw=3) |
| 406 | Traceback (most recent call last): |
| 407 | ... |
| 408 | TypeError: f() takes 0 positional arguments but 3 positional arguments (and 2 keyword-only arguments) were given |
| 409 | >>> def f(a, b=2, *, kw): pass |
| 410 | >>> f(2, 3, 4, kw=4) |
| 411 | Traceback (most recent call last): |
| 412 | ... |
| 413 | TypeError: f() takes from 1 to 2 positional arguments but 3 positional arguments (and 1 keyword-only argument) were given |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 414 | |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 415 | Too few and missing arguments: |
| 416 | |
| 417 | >>> def f(a): pass |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 418 | >>> f() |
| 419 | Traceback (most recent call last): |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 420 | ... |
| 421 | TypeError: f() missing 1 required positional argument: 'a' |
| 422 | >>> def f(a, b): pass |
| 423 | >>> f() |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 424 | Traceback (most recent call last): |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 425 | ... |
| 426 | TypeError: f() missing 2 required positional arguments: 'a' and 'b' |
| 427 | >>> def f(a, b, c): pass |
| 428 | >>> f() |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 429 | Traceback (most recent call last): |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 430 | ... |
| 431 | TypeError: f() missing 3 required positional arguments: 'a', 'b', and 'c' |
| 432 | >>> def f(a, b, c, d, e): pass |
| 433 | >>> f() |
| 434 | Traceback (most recent call last): |
| 435 | ... |
| 436 | TypeError: f() missing 5 required positional arguments: 'a', 'b', 'c', 'd', and 'e' |
| 437 | >>> def f(a, b=4, c=5, d=5): pass |
| 438 | >>> f(c=12, b=9) |
| 439 | Traceback (most recent call last): |
| 440 | ... |
| 441 | TypeError: f() missing 1 required positional argument: 'a' |
| 442 | |
| 443 | Same with keyword only args: |
| 444 | |
| 445 | >>> def f(*, w): pass |
| 446 | >>> f() |
| 447 | Traceback (most recent call last): |
| 448 | ... |
| 449 | TypeError: f() missing 1 required keyword-only argument: 'w' |
| 450 | >>> def f(*, a, b, c, d, e): pass |
| 451 | >>> f() |
| 452 | Traceback (most recent call last): |
| 453 | ... |
| 454 | TypeError: f() missing 5 required keyword-only arguments: 'a', 'b', 'c', 'd', and 'e' |
| 455 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 456 | """ |
Samuele Pedroni | 8036c83 | 2004-02-21 21:03:30 +0000 | [diff] [blame] | 457 | |
Benjamin Peterson | a567a77 | 2010-03-21 21:00:50 +0000 | [diff] [blame] | 458 | import sys |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 459 | from test import support |
Samuele Pedroni | 8036c83 | 2004-02-21 21:03:30 +0000 | [diff] [blame] | 460 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 461 | def test_main(): |
Benjamin Peterson | a567a77 | 2010-03-21 21:00:50 +0000 | [diff] [blame] | 462 | support.run_doctest(sys.modules[__name__], True) |
Jeremy Hylton | 074c3e6 | 2000-03-30 23:55:31 +0000 | [diff] [blame] | 463 | |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 464 | if __name__ == '__main__': |
| 465 | test_main() |