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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
|
import py
import pytest
class AppTestItertools(object):
spaceconfig = dict(usemodules=['itertools'])
def test_count(self):
import itertools
it = itertools.count()
for x in range(10):
assert next(it) == x
def test_count_firstval(self):
import itertools
it = itertools.count(3)
for x in range(10):
assert next(it) == x + 3
def test_count_repr(self):
import itertools
it = itertools.count(123)
assert repr(it) == 'count(123)'
next(it)
assert repr(it) == 'count(124)'
it = itertools.count(12.1, 1.0)
assert repr(it) == 'count(12.1, 1.0)'
def test_count_invalid(self):
import itertools
raises(TypeError, itertools.count, None)
raises(TypeError, itertools.count, 'a')
raises(TypeError, itertools.count, [])
def test_count_subclass_repr(self):
import itertools
class subclass(itertools.count):
pass
assert repr(subclass(123)) == 'subclass(123)'
def test_repeat(self):
import itertools
o = object()
it = itertools.repeat(o)
for x in range(10):
assert o is next(it)
def test_repeat_times(self):
import itertools
times = 10
it = itertools.repeat(None, times)
for i in range(times):
next(it)
raises(StopIteration, next, it)
#---does not work in CPython 2.5
#it = itertools.repeat(None, None)
#for x in range(10):
# it.next() # Should be no StopIteration
it = itertools.repeat(None, 0)
raises(StopIteration, next, it)
raises(StopIteration, next, it)
it = itertools.repeat(None, -1)
raises(StopIteration, next, it)
raises(StopIteration, next, it)
def test_repeat_overflow(self):
import itertools
import sys
raises(OverflowError, itertools.repeat, None, sys.maxsize + 1)
def test_repeat_repr(self):
import itertools
it = itertools.repeat('foobar')
assert repr(it) == "repeat('foobar')"
next(it)
assert repr(it) == "repeat('foobar')"
it = itertools.repeat('foobar', 10)
assert repr(it) == "repeat('foobar', 10)"
next(it)
assert repr(it) == "repeat('foobar', 9)"
list(it)
assert repr(it) == "repeat('foobar', 0)"
def test_repeat_len(self):
import itertools
import _operator as operator
r = itertools.repeat('a', 15)
next(r)
raises(TypeError, "len(itertools.repeat('xkcd'))")
r = itertools.repeat('a', -3)
assert operator.length_hint(r, 3) == 0
def test_repeat_subclass_repr(self):
import itertools
class subclass(itertools.repeat):
pass
assert repr(subclass('foobar')) == "subclass('foobar')"
def test_takewhile(self):
import itertools
it = itertools.takewhile(bool, [])
raises(StopIteration, next, it)
it = itertools.takewhile(bool, [False, True, True])
raises(StopIteration, next, it)
it = itertools.takewhile(bool, [1, 2, 3, 0, 1, 1])
for x in [1, 2, 3]:
assert next(it) == x
raises(StopIteration, next, it)
def test_takewhile_wrongargs(self):
import itertools
it = itertools.takewhile(None, [1])
raises(TypeError, next, it)
raises(TypeError, itertools.takewhile, bool, None)
def test_takewhile_subclass_kwarg(self):
from itertools import takewhile
class subclass_with_new(takewhile):
def __new__(cls, predicate, iterable, newarg=None):
self = super().__new__(cls, predicate, iterable)
self.newarg = newarg
return self
u = subclass_with_new(bool, [1, 2], newarg=3)
assert u.newarg == 3
assert next(u) == 1
class subclass_with_init(takewhile):
def __init__(self, predicate, iterable, newarg=None):
self.newarg = newarg
u = subclass_with_init(bool, [1, 2], newarg=3)
assert u.newarg == 3
assert next(u) == 1
with raises(TypeError) as e:
u = takewhile(bool, [1, 2], newargs=3)
assert str(e.value) == "takewhile() takes no keyword arguments"
class subclass(takewhile):
pass
with raises(TypeError) as e:
subclass(bool, [1, 2], newarg=3)
def test_dropwhile(self):
import itertools
it = itertools.dropwhile(bool, [])
raises(StopIteration, next, it)
it = itertools.dropwhile(bool, [True, True, True])
raises(StopIteration, next, it)
def is_odd(arg):
return (arg % 2 == 1)
it = itertools.dropwhile(is_odd, [1, 3, 5, 2, 4, 6])
for x in [2, 4, 6]:
assert next(it) == x
raises(StopIteration, next, it)
def test_dropwhile_wrongargs(self):
import itertools
it = itertools.dropwhile(None, [1])
raises(TypeError, next, it)
raises(TypeError, itertools.dropwhile, bool, None)
def test_dropwhile_subclass_kwarg(self):
from itertools import dropwhile
class subclass_with_new(dropwhile):
def __new__(cls, predicate, iterable, newarg=None):
self = super().__new__(cls, predicate, iterable)
self.newarg = newarg
return self
u = subclass_with_new(lambda a: False, [1, 2], newarg=3)
assert u.newarg == 3
assert list(u) == [1, 2]
class subclass_with_init(dropwhile):
def __init__(self, predicate, iterable, newarg=None):
self.newarg = newarg
u = subclass_with_init(lambda a: False, [1, 2], newarg=3)
assert u.newarg == 3
assert list(u) == [1, 2]
with raises(TypeError) as e:
u = dropwhile(lambda a: False, [1, 2], newargs=3)
assert str(e.value) == "dropwhile() takes no keyword arguments"
class subclass(dropwhile):
pass
with raises(TypeError) as e:
subclass(lambda a: True, [1, 2], newarg=3)
def test_filterfalse(self):
import itertools
it = itertools.filterfalse(None, [])
raises(StopIteration, next, it)
it = itertools.filterfalse(None, [1, 0, 2, 3, 0])
for x in [0, 0]:
assert next(it) == x
raises(StopIteration, next, it)
def is_odd(arg):
return (arg % 2 == 1)
it = itertools.filterfalse(is_odd, [1, 2, 3, 4, 5, 6])
for x in [2, 4, 6]:
assert next(it) == x
raises(StopIteration, next, it)
def test_filterfalse_reduce(self):
import itertools
it = iter([1, 2, 3, 4, 5])
f = itertools.filterfalse(None, it)
assert f.__reduce__() == (itertools.filterfalse, (None, it))
f = itertools.filterfalse(bool, it)
assert f.__reduce__() == (itertools.filterfalse, (bool, it))
def test_filterfalse_wrongargs(self):
import itertools
it = itertools.filterfalse(0, [1])
raises(TypeError, next, it)
raises(TypeError, itertools.filterfalse, bool, None)
def test_filterfalse_subclass_kwarg(self):
from itertools import filterfalse
class subclass_with_new(filterfalse):
def __new__(cls, f, v, newarg=None):
self = super().__new__(cls, f, v)
self.newarg = newarg
return self
u = subclass_with_new(lambda a: False, [1, 2], newarg=3)
assert u.newarg == 3
assert list(u) == [1, 2]
class subclass_with_init(filterfalse):
def __init__(self, f, v, newarg=None):
self.newarg = newarg
u = subclass_with_init(lambda a: False, [1, 2], newarg=3)
assert u.newarg == 3
assert list(u) == [1, 2]
with raises(TypeError) as e:
u = filterfalse()
# CPython has a worse error message (filterfalse() -> filterfalse)
assert str(e.value) == "filterfalse() expected 2 arguments, got 0", str(e.value)
with raises(TypeError) as e:
u = filterfalse(None, [1, 2], newargs=3)
assert str(e.value) == "filterfalse() takes no keyword arguments"
class subclass(filterfalse):
pass
with raises(TypeError) as e:
subclass(None, [1, 2], newarg=3)
def test_islice(self):
import itertools
it = itertools.islice([], 0)
raises(StopIteration, next, it)
it = itertools.islice([1, 2, 3], 0)
raises(StopIteration, next, it)
it = itertools.islice([1, 2, 3, 4, 5], 3)
for x in [1, 2, 3]:
assert next(it) == x
raises(StopIteration, next, it)
it = itertools.islice([1, 2, 3, 4, 5], 1, 3)
for x in [2, 3]:
assert next(it) == x
raises(StopIteration, next, it)
it = itertools.islice([1, 2, 3, 4, 5], 0, 3, 2)
for x in [1, 3]:
assert next(it) == x
raises(StopIteration, next, it)
# Do not allow floats
raises(ValueError, itertools.islice, [1, 2, 3, 4, 5], 0.0, 3.0, 2.0)
it = itertools.islice([1, 2, 3], 0, None)
for x in [1, 2, 3]:
assert next(it) == x
raises(StopIteration, next, it)
assert list(itertools.islice(range(100), 10, 3)) == []
# new in 2.5: start=None or step=None
assert list(itertools.islice(range(10), None)) == list(range(10))
assert list(itertools.islice(range(10), None,None)) == list(range(10))
assert list(itertools.islice(range(10), None,None,None)) == list(range(10))
it = itertools.islice([0, 1, 2], None, None, 2)
assert list(it) == [0, 2]
import weakref
for args in [(1,), (None,), (0, None, 2)]:
it = (x for x in (1, 2, 3))
wr = weakref.ref(it)
it = itertools.islice(it, *args)
assert wr() is not None
list(it) # exhaust the iterator
import gc; gc.collect()
assert wr() is None
raises(StopIteration, next, it)
def test_islice_dropitems_exact(self):
import itertools
it = iter("abcdefghij")
itertools.islice(it, 2, 2) # doesn't eagerly drop anything
assert next(it) == "a"
itertools.islice(it, 3, 8, 2) # doesn't eagerly drop anything
assert next(it) == "b"
assert next(it) == "c"
it = iter("abcdefghij")
x = next(itertools.islice(it, 2, 3), None) # drops 2 items
assert x == "c"
assert next(it) == "d"
it = iter("abcdefghij")
x = next(itertools.islice(it, 3, 8, 2), None) # drops 3 items
assert x == "d"
assert next(it) == "e"
it = iter("abcdefghij")
x = next(itertools.islice(it, None, 8), None) # drops 0 items
assert x == "a"
assert next(it) == "b"
it = iter("abcdefghij")
x = next(itertools.islice(it, 3, 2), None) # drops 3 items
assert x is None
assert next(it) == "d"
it = iter("abcdefghij")
islc = itertools.islice(it, 3, 7, 2)
assert next(islc) == "d" # drops 0, 1, 2, returns item #3
assert next(it) == "e"
assert next(islc) == "g" # drops the 4th and return item #5
assert next(it) == "h"
raises(StopIteration, next, islc) # drops the 6th and raise
assert next(it) == "j"
it = iter("abcdefghij")
islc = itertools.islice(it, 3, 4, 3)
assert next(islc) == "d" # drops 0, 1, 2, returns item #3
assert next(it) == "e"
raises(StopIteration, next, islc) # item #4 is 'stop', so just raise
assert next(it) == "f"
def test_islice_overflow(self):
import itertools
import sys
raises((OverflowError, ValueError), # ValueError on top of CPython
itertools.islice, [], sys.maxsize + 1)
def test_islice_intlike_args(self):
import itertools
class IntLike(object):
def __init__(self, value):
self.value = value
def __index__(self):
return self.value
it = itertools.islice([1, 2, 3, 4, 5], IntLike(0), IntLike(3), IntLike(2))
for x in [1, 3]:
assert next(it) == x
raises(StopIteration, next, it)
def test_islice_wrongargs(self):
import itertools
raises(TypeError, itertools.islice, None, 0)
raises(ValueError, itertools.islice, [], -1)
raises(ValueError, itertools.islice, [], -1, 0)
raises(ValueError, itertools.islice, [], 0, -1)
raises(ValueError, itertools.islice, [], 0, 0, -1)
raises(ValueError, itertools.islice, [], 0, 0, 0)
raises(TypeError, itertools.islice, [], 0, 0, 0, 0)
# why not TypeError? Because CPython
raises(ValueError, itertools.islice, [], "a", 1, 2)
raises(ValueError, itertools.islice, [], 0, "a", 2)
raises(ValueError, itertools.islice, [], 0, 1, "a")
def test_islice_subclass_kwarg(self):
from itertools import islice
class subclass_with_new(islice):
def __new__(cls, iterable, startstop, args, newarg=None):
self = super().__new__(cls, iterable, startstop, args)
self.newarg = newarg
return self
u = subclass_with_new([1, 2], 0, 3, newarg=3)
assert u.newarg == 3
assert next(u) == 1
class subclass_with_init(islice):
def __init__(self, iterable, startstop, args, newarg=None):
self.newarg = newarg
u = subclass_with_init([1, 2], 0, 3, newarg=3)
assert u.newarg == 3
assert next(u) == 1
with raises(TypeError) as e:
u = islice([1, 2], 0, 3, newargs=3)
assert str(e.value) == "islice() takes no keyword arguments"
class subclass(islice):
pass
with raises(TypeError) as e:
subclass([1, 2], newarg=3)
def test_islice_big_step(self):
import itertools, sys
islice = itertools.islice(itertools.count(), 1, 10, sys.maxsize)
assert list(islice) == [1]
def test_chain(self):
import itertools
it = itertools.chain()
raises(StopIteration, next, it)
raises(StopIteration, next, it)
it = itertools.chain([1, 2, 3])
for x in [1, 2, 3]:
assert next(it) == x
raises(StopIteration, next, it)
it = itertools.chain([1, 2, 3], [4], [5, 6])
for x in [1, 2, 3, 4, 5, 6]:
assert next(it) == x
raises(StopIteration, next, it)
it = itertools.chain([], [], [1], [])
assert next(it) == 1
raises(StopIteration, next, it)
def test_chain_subclass_kwarg(self):
from itertools import chain
class subclass_with_new(chain):
def __new__(cls, arg, newarg=None):
self = super().__new__(cls, arg)
self.newarg = newarg
return self
u = subclass_with_new([1, 2], newarg=3)
assert u.newarg == 3
assert next(u) == 1
class subclass_with_init(chain):
def __init__(self, arg, newarg=None):
self.newarg = newarg
u = subclass_with_init([1, 2], newarg=3)
assert u.newarg == 3
assert next(u) == 1
with raises(TypeError) as e:
u = chain([1, 2], [3], newargs=3)
assert str(e.value) == "chain() takes no keyword arguments"
class subclass(chain):
pass
with raises(TypeError) as e:
subclass([1, 2], newarg=3)
def test_cycle(self):
import itertools
it = itertools.cycle([])
raises(StopIteration, next, it)
it = itertools.cycle([1, 2, 3])
for x in [1, 2, 3, 1, 2, 3, 1, 2, 3]:
assert next(it) == x
def test_cycle_subclass_kwarg(self):
from itertools import cycle
class subclass_with_new(cycle):
def __new__(cls, v, newarg=None):
self = super().__new__(cls, v)
self.newarg = newarg
return self
u = subclass_with_new([1, 2], newarg=3)
assert u.newarg == 3
assert next(u) == 1
class subclass_with_init(cycle):
def __init__(self, v, newarg=None):
self.newarg = newarg
u = subclass_with_init([1, 2], newarg=3)
assert u.newarg == 3
assert next(u) == 1
with raises(TypeError) as e:
u = cycle()
with raises(TypeError) as e:
u = cycle([1, 2], newargs=3)
assert str(e.value) == "cycle() takes no keyword arguments"
class subclass(cycle):
pass
with raises(TypeError) as e:
subclass([1, 2], newarg=3)
def test_starmap(self):
import itertools
import _operator as operator
it = itertools.starmap(operator.add, [])
raises(StopIteration, next, it)
it = itertools.starmap(operator.add, [(0, 1), (2, 3), (4, 5)])
for x in [1, 5, 9]:
assert next(it) == x
raises(StopIteration, next, it)
assert list(itertools.starmap(operator.add, [iter((40,2))])) == [42]
def test_starmap_wrongargs(self):
import itertools
it = itertools.starmap(None, [(1, )])
raises(TypeError, next, it)
it = itertools.starmap(None, [])
raises(StopIteration, next, it)
it = itertools.starmap(bool, [0])
raises(TypeError, next, it)
def test_starmap_subclass_kwarg(self):
from itertools import starmap
import _operator as operator
class subclass_with_new(starmap):
def __new__(cls, f, v, newarg=None):
self = super().__new__(cls, f, v)
self.newarg = newarg
return self
u = subclass_with_new(operator.add, [[1, 2]], newarg=3)
assert u.newarg == 3
assert next(u) == 3
class subclass_with_init(starmap):
def __init__(self, f, v, newarg=None):
self.newarg = newarg
u = subclass_with_init(operator.add, [[1, 2]], newarg=3)
assert u.newarg == 3
assert next(u) == 3
with raises(TypeError) as e:
u = starmap()
# CPython has a worse error message (starmap() -> starmap)
assert str(e.value) == "starmap() expected 2 arguments, got 0", str(e.value)
with raises(TypeError) as e:
u = starmap(operator.add, [[1, 2]], newargs=3)
assert str(e.value) == "starmap() takes no keyword arguments"
class subclass(starmap):
pass
with raises(TypeError) as e:
subclass(operator.add, [[1, 2]], newarg=3)
def test_tee(self):
import itertools
it1, it2 = itertools.tee([])
raises(StopIteration, next, it1)
raises(StopIteration, next, it2)
it1, it2 = itertools.tee([1, 2, 3])
for x in [1, 2]:
assert next(it1) == x
for x in [1, 2, 3]:
assert next(it2) == x
assert next(it1) == 3
raises(StopIteration, next, it1)
raises(StopIteration, next, it2)
assert itertools.tee([], 0) == ()
iterators = itertools.tee([1, 2, 3], 10)
for it in iterators:
for x in [1, 2, 3]:
assert next(it) == x
raises(StopIteration, next, it)
def test_tee_wrongargs(self):
import itertools
raises(TypeError, itertools.tee, 0)
raises(ValueError, itertools.tee, [], -1)
raises(TypeError, itertools.tee, [], None)
def test_tee_optimization(self):
import itertools
a, b = itertools.tee(iter('foobar'))
c, d = itertools.tee(b)
assert c is b
assert a is not c
assert a is not d
assert c is not d
res = list(a)
assert res == list('foobar')
res = list(c)
assert res == list('foobar')
res = list(d)
assert res == list('foobar')
def test_tee_copy_bug(self):
from itertools import tee
class Coll:
def __iter__(self):
return It()
def __copy__(self):
return self
class It:
def __copy__(self):
return It()
def __next__(self):
return 1
iterator1, iterator2 = tee(Coll())
assert isinstance(iterator1, It)
def test_tee_instantiate(self):
import itertools
a, b = itertools.tee(iter('foobar'))
c = type(a)(a)
assert a is not b
assert a is not c
assert b is not c
res = list(a)
assert res == list('foobar')
res = list(b)
assert res == list('foobar')
res = list(c)
assert res == list('foobar')
def test_groupby(self):
import itertools
it = itertools.groupby([])
raises(StopIteration, next, it)
it = itertools.groupby([1, 2, 2, 3, 3, 3, 4, 4, 4, 4])
for x in [1, 2, 3, 4]:
k, g = next(it)
assert k == x
assert len(list(g)) == x
raises(StopIteration, next, g)
raises(StopIteration, next ,it)
it = itertools.groupby([0, 1, 2, 3, 4, 5], None)
for x in [0, 1, 2, 3, 4, 5]:
k, g = next(it)
assert k == x
assert next(g) == x
raises(StopIteration, next, g)
raises(StopIteration, next, it)
# consumes after group started
it = itertools.groupby([0, 0, 0, 0, 1])
k1, g1 = next(it)
assert next(g1) == 0
k2, g2 = next(it)
raises(StopIteration, next, g1)
assert next(g2) == 1
raises(StopIteration, next, g2)
# skips with not started group
it = itertools.groupby([0, 0, 1])
k1, g1 = next(it)
k2, g2 = next(it)
raises(StopIteration, next, g1)
assert next(g2) == 1
raises(StopIteration, next, g2)
it = itertools.groupby([0, 1, 2])
k1, g1 = next(it)
k2, g2 = next(it)
k2, g3 = next(it)
raises(StopIteration, next, g1)
raises(StopIteration, next, g2)
assert next(g3) == 2
def half_floor(x):
return x // 2
it = itertools.groupby([0, 1, 2, 3, 4, 5], half_floor)
for x in [0, 1, 2]:
k, g = next(it)
assert k == x
assert half_floor(next(g)) == x
assert half_floor(next(g)) == x
raises(StopIteration, next, g)
raises(StopIteration, next, it)
# keyword argument
it = itertools.groupby([0, 1, 2, 3, 4, 5], key = half_floor)
for x in [0, 1, 2]:
k, g = next(it)
assert k == x
assert list(g) == [x*2, x*2+1]
raises(StopIteration, next, it)
# Grouping is not based on key identity
class NeverEqual(object):
def __eq__(self, other):
return False
objects = [NeverEqual(), NeverEqual(), NeverEqual()]
it = itertools.groupby(objects)
for x in objects:
print("Trying", x)
k, g = next(it)
assert k is x
assert next(g) is x
raises(StopIteration, next, g)
raises(StopIteration, next, it)
# Grouping is based on key equality
class AlwaysEqual(object):
def __eq__(self, other):
return True
objects = [AlwaysEqual(), AlwaysEqual(), AlwaysEqual()]
it = itertools.groupby(objects)
k, g = next(it)
assert k is objects[0]
for x in objects:
assert next(g) is x
raises(StopIteration, next, g)
raises(StopIteration, next, it)
# inner iterator is used after advancing the groupby iterator
s = list(zip('AABBBAAAA', range(9)))
it = itertools.groupby(s, key=lambda x: x[0])
_, g1 = next(it)
_, g2 = next(it)
_, g3 = next(it)
assert list(g1) == []
assert g1.__reduce__() == (iter, ((),))
assert list(g2) == []
assert g2.__reduce__() == (iter, ((),))
assert next(g3) == ('A', 5)
list(it) # exhaust the groupby iterator
assert list(g3) == []
assert g3.__reduce__() == (iter, ((),))
def test_groupby_wrongargs(self):
import itertools
raises(TypeError, itertools.groupby, 0)
it = itertools.groupby([0], 1)
raises(TypeError, next, it)
def test_groupby_question_43905804(self):
# http://stackoverflow.com/questions/43905804/
# Superseded by https://bugs.python.org/issue30346
import itertools
inputs = ((x > 5, x) for x in range(10))
(_, a), (_, b) = itertools.groupby(inputs, key=lambda x: x[0])
a = list(a)
b = list(b)
assert a == []
assert b == [] # Before Python 3.7: assert b == [(True, 9)]
def test_groupby_crash(self):
# see http://bugs.python.org/issue30347
from itertools import groupby
def f(n):
if n == 5:
list(b)
return n != 6
for (k, b) in groupby(range(10), f):
list(b) # shouldn't crash
def test_iterables(self):
import itertools
iterables = [
itertools.chain(),
itertools.count(),
itertools.cycle([]),
itertools.dropwhile(bool, []),
itertools.groupby([]),
itertools.filterfalse(None, []),
itertools.islice([], 0),
itertools.repeat(None),
itertools.starmap(bool, []),
itertools.takewhile(bool, []),
itertools.tee([])[0],
itertools.tee([])[1],
]
for it in iterables:
assert hasattr(it, '__iter__')
assert iter(it) is it
assert hasattr(it, '__next__')
assert callable(it.__next__)
def test_docstrings(self):
import itertools
assert itertools.__doc__
methods = [
itertools.chain,
itertools.count,
itertools.cycle,
itertools.dropwhile,
itertools.groupby,
itertools.filterfalse,
itertools.islice,
itertools.repeat,
itertools.starmap,
itertools.takewhile,
itertools.tee,
]
for method in methods:
assert method.__doc__
def test_tee_weakrefable(self):
import itertools, weakref
a, b = itertools.tee(iter('abc'))
ref = weakref.ref(b)
assert ref() is b
def test_tee_bug1(self):
import itertools
a, b = itertools.tee('abcde')
x = next(a)
assert x == 'a'
c, d = itertools.tee(a)
x = next(c)
assert x == 'b'
x = next(d)
assert x == 'b'
def test_tee_defines_copy(self):
import itertools
a, b = itertools.tee('abc')
c = b.__copy__()
assert list(a) == ['a', 'b', 'c']
assert list(b) == ['a', 'b', 'c']
assert list(c) == ['a', 'b', 'c']
a, = itertools.tee('abc', 1)
x = next(a)
assert x == 'a'
b = a.__copy__()
x = next(a)
assert x == 'b'
x = next(b)
assert x == 'b'
def test_tee_function_uses_copy(self):
import itertools
class MyIterator(object):
def __iter__(self):
return self
def __next__(self):
raise NotImplementedError
def __copy__(self):
return iter('def')
my = MyIterator()
a, = itertools.tee(my, 1)
assert a is my
a, b = itertools.tee(my)
assert a is my
assert b is not my
assert list(b) == ['d', 'e', 'f']
def test_tee_function_empty(self):
import itertools
assert itertools.tee('abc', 0) == ()
a, = itertools.tee('abc', 1)
assert itertools.tee(a, 0) == ()
class AppTestItertools26(object):
spaceconfig = dict(usemodules=['itertools'])
def test_count_overflow(self):
import itertools, sys
it = itertools.count(sys.maxsize - 1)
assert next(it) == sys.maxsize - 1
assert next(it) == sys.maxsize
assert next(it) == sys.maxsize + 1
it = itertools.count(sys.maxsize + 1)
assert next(it) == sys.maxsize + 1
assert next(it) == sys.maxsize + 2
it = itertools.count(-sys.maxsize-2)
assert next(it) == -sys.maxsize - 2
assert next(it) == -sys.maxsize - 1
assert next(it) == -sys.maxsize
assert next(it) == -sys.maxsize + 1
it = itertools.count(0, sys.maxsize)
assert next(it) == sys.maxsize * 0
assert next(it) == sys.maxsize * 1
assert next(it) == sys.maxsize * 2
it = itertools.count(0, sys.maxsize + 1)
assert next(it) == (sys.maxsize + 1) * 0
assert next(it) == (sys.maxsize + 1) * 1
assert next(it) == (sys.maxsize + 1) * 2
def test_chain_fromiterable(self):
import itertools
l = [[1, 2, 3], [4], [5, 6]]
it = itertools.chain.from_iterable(l)
assert list(it) == sum(l, [])
def test_combinations(self):
from itertools import combinations
raises(TypeError, combinations, "abc")
raises(TypeError, combinations, "abc", 2, 1)
raises(TypeError, combinations, None)
raises(ValueError, combinations, "abc", -2)
assert list(combinations(range(4), 3)) == [(0, 1, 2), (0, 1, 3), (0, 2, 3), (1, 2, 3)]
def test_ziplongest(self):
from itertools import zip_longest, islice, count
for args in [
['abc', range(6)],
[range(6), 'abc'],
[range(100), range(200,210), range(300,305)],
[range(100), range(0), range(300,305), range(120), range(150)],
[range(100), range(0), range(300,305), range(120), range(0)],
]:
# target = map(None, *args) <- this raises a py3k warning
# this is the replacement:
target = [tuple([arg[i] if i < len(arg) else None for arg in args])
for i in range(max(map(len, args)))]
assert list(zip_longest(*args)) == target
assert list(zip_longest(*args, **{})) == target
# Replace None fills with 'X'
target = [tuple((e is None and 'X' or e) for e in t) for t in target]
assert list(zip_longest(*args, **dict(fillvalue='X'))) == target
# take 3 from infinite input
assert (list(islice(zip_longest('abcdef', count()),3)) ==
list(zip('abcdef', range(3))))
assert list(zip_longest()) == list(zip())
assert list(zip_longest([])) == list(zip([]))
assert list(zip_longest('abcdef')) == list(zip('abcdef'))
assert (list(zip_longest('abc', 'defg', **{})) ==
list(zip(list('abc') + [None], 'defg'))) # empty keyword dict
raises(TypeError, zip_longest, 3)
raises(TypeError, zip_longest, range(3), 3)
for stmt in [
"zip_longest('abc', fv=1)",
"zip_longest('abc', fillvalue=1, bogus_keyword=None)",
]:
try:
eval(stmt, globals(), locals())
except TypeError:
pass
else:
self.fail('Did not raise Type in: ' + stmt)
def test_zip_longest2(self):
import itertools
class Repeater(object):
# this class is similar to itertools.repeat
def __init__(self, o, t, e):
self.o = o
self.t = int(t)
self.e = e
def __iter__(self): # its iterator is itself
return self
def __next__(self):
if self.t > 0:
self.t -= 1
return self.o
else:
raise self.e
# Formerly this code in would fail in debug mode
# with Undetected Error and Stop Iteration
r1 = Repeater(1, 3, StopIteration)
r2 = Repeater(2, 4, StopIteration)
def run(r1, r2):
result = []
for i, j in itertools.zip_longest(r1, r2, fillvalue=0):
result.append((i, j))
return result
assert run(r1, r2) == [(1,2), (1,2), (1,2), (0,2)]
def test_product(self):
from itertools import product
l = [1, 2]
m = ['a', 'b']
prodlist = product(l, m)
res = [(1, 'a'), (1, 'b'), (2, 'a'), (2, 'b')]
assert list(prodlist) == res
assert list(product()) == [()]
assert list(product([])) == []
assert list(product(iter(l), iter(m))) == res
prodlist = product(iter(l), iter(m))
assert list(prodlist) == [(1, 'a'), (1, 'b'), (2, 'a'), (2, 'b')]
def test_product_repeat(self):
from itertools import product
l = [1, 2]
m = ['a', 'b']
prodlist = product(l, m, repeat=2)
ans = [(1, 'a', 1, 'a'), (1, 'a', 1, 'b'), (1, 'a', 2, 'a'),
(1, 'a', 2, 'b'), (1, 'b', 1, 'a'), (1, 'b', 1, 'b'),
(1, 'b', 2, 'a'), (1, 'b', 2, 'b'), (2, 'a', 1, 'a'),
(2, 'a', 1, 'b'), (2, 'a', 2, 'a'), (2, 'a', 2, 'b'),
(2, 'b', 1, 'a'), (2, 'b', 1, 'b'), (2, 'b', 2, 'a'),
(2, 'b', 2, 'b')]
assert list(prodlist) == ans
raises(TypeError, product, [], foobar=3)
def test_product_diff_sizes(self):
from itertools import product
l = [1, 2]
m = ['a']
prodlist = product(l, m)
assert list(prodlist) == [(1, 'a'), (2, 'a')]
l = [1]
m = ['a', 'b']
prodlist = product(l, m)
assert list(prodlist) == [(1, 'a'), (1, 'b')]
assert list(product([], [1, 2, 3])) == []
assert list(product([1, 2, 3], [])) == []
def test_product_toomany_args(self):
from itertools import product
l = [1, 2]
m = ['a']
raises(TypeError, product, l, m, repeat=1, foo=2)
def test_product_empty(self):
from itertools import product
prod = product('abc', repeat=0)
assert next(prod) == ()
raises (StopIteration, next, prod)
def test_product_powers_of_two(self):
from itertools import product
assert list(product()) == [()]
assert list(product('ab')) == [('a',), ('b',)]
assert list(product('ab', 'cd')) == [
('a', 'c'), ('a', 'd'),
('b', 'c'), ('b', 'd')]
assert list(product('ab', 'cd', 'ef')) == [
('a', 'c', 'e'), ('a', 'c', 'f'),
('a', 'd', 'e'), ('a', 'd', 'f'),
('b', 'c', 'e'), ('b', 'c', 'f'),
('b', 'd', 'e'), ('b', 'd', 'f')]
def test_product_empty_item(self):
from itertools import product
assert list(product('')) == []
assert list(product('ab', '')) == []
assert list(product('', 'cd')) == []
assert list(product('ab', 'cd', '')) == []
assert list(product('ab', '', 'ef')) == []
assert list(product('', 'cd', 'ef')) == []
def test_product_setstate(self):
# test that indices are properly clamped to the length of the tuples
from itertools import product
p = product((1, 2),(3,))
# will access tuple element 1 if not clamped
p.__setstate__((0, 0x1000))
assert next(p) == (2, 3)
# test that empty tuple in the list will result in an
# immediate StopIteration
p = product((1, 2), (), (3,))
# will access tuple element 1 if not clamped
p.__setstate__((0, 0, 0x1000))
raises(StopIteration, next, p)
def test_permutations(self):
from itertools import permutations
assert list(permutations('AB')) == [('A', 'B'), ('B', 'A')]
assert list(permutations('ABCD', 2)) == [
('A', 'B'),
('A', 'C'),
('A', 'D'),
('B', 'A'),
('B', 'C'),
('B', 'D'),
('C', 'A'),
('C', 'B'),
('C', 'D'),
('D', 'A'),
('D', 'B'),
('D', 'C'),
]
assert list(permutations(range(3))) == [
(0, 1, 2),
(0, 2, 1),
(1, 0, 2),
(1, 2, 0),
(2, 0, 1),
(2, 1, 0),
]
assert list(permutations([])) == [()]
assert list(permutations([], 0)) == [()]
assert list(permutations([], 1)) == []
assert list(permutations(range(3), 4)) == []
#
perm = list(permutations([1, 2, 3, 4]))
assert perm == [(1, 2, 3, 4), (1, 2, 4, 3), (1, 3, 2, 4), (1, 3, 4, 2),
(1, 4, 2, 3), (1, 4, 3, 2), (2, 1, 3, 4), (2, 1, 4, 3),
(2, 3, 1, 4), (2, 3, 4, 1), (2, 4, 1, 3), (2, 4, 3, 1),
(3, 1, 2, 4), (3, 1, 4, 2), (3, 2, 1, 4), (3, 2, 4, 1),
(3, 4, 1, 2), (3, 4, 2, 1), (4, 1, 2, 3), (4, 1, 3, 2),
(4, 2, 1, 3), (4, 2, 3, 1), (4, 3, 1, 2), (4, 3, 2, 1)]
def test_permutations_r(self):
from itertools import permutations
perm = list(permutations([1, 2, 3, 4], 2))
assert perm == [(1, 2), (1, 3), (1, 4), (2, 1), (2, 3), (2, 4), (3, 1),
(3, 2), (3, 4), (4, 1), (4, 2), (4, 3)]
def test_permutations_r_gt_n(self):
from itertools import permutations
perm = permutations([1, 2], 3)
raises(StopIteration, next, perm)
def test_permutations_neg_r(self):
from itertools import permutations
raises(ValueError, permutations, [1, 2], -1)
class AppTestItertools27(object):
spaceconfig = {"usemodules": ['itertools', 'struct', 'binascii']}
def test_compress(self):
import itertools
it = itertools.compress(['a', 'b', 'c'], [0, 1, 0])
assert list(it) == ['b']
def test_compress_diff_len(self):
import itertools
it = itertools.compress(['a'], [])
raises(StopIteration, next, it)
def test_count_kwargs(self):
import itertools
it = itertools.count(start=2, step=3)
assert next(it) == 2
assert next(it) == 5
assert next(it) == 8
def test_repeat_kwargs(self):
import itertools
assert list(itertools.repeat(object='a', times=3)) == ['a', 'a', 'a']
def test_combinations_overflow(self):
from itertools import combinations
assert list(combinations("abc", 32)) == []
def test_combinations_with_replacement(self):
from itertools import combinations_with_replacement
raises(TypeError, combinations_with_replacement, "abc")
raises(TypeError, combinations_with_replacement, "abc", 2, 1)
raises(TypeError, combinations_with_replacement, None)
raises(ValueError, combinations_with_replacement, "abc", -2)
assert list(combinations_with_replacement("ABC", 2)) == [("A", "A"), ("A", 'B'), ("A", "C"), ("B", "B"), ("B", "C"), ("C", "C")]
def test_combinations_with_replacement_shortcases(self):
from itertools import combinations_with_replacement
assert list(combinations_with_replacement([-12], 2)) == [(-12, -12)]
assert list(combinations_with_replacement("AB", 3)) == [
("A", "A", "A"), ("A", "A", "B"),
("A", "B", "B"), ("B", "B", "B")]
assert list(combinations_with_replacement([], 2)) == []
assert list(combinations_with_replacement([], 0)) == [()]
def test_zip_longest3(self):
import itertools
class Repeater(object):
# this class is similar to itertools.repeat
def __init__(self, o, t, e):
self.o = o
self.t = int(t)
self.e = e
def __iter__(self): # its iterator is itself
return self
def __next__(self):
if self.t > 0:
self.t -= 1
return self.o
else:
raise self.e
# Formerly, the RuntimeError would be lost
# and StopIteration would stop as expected
r1 = Repeater(1, 3, RuntimeError)
r2 = Repeater(2, 4, StopIteration)
it = itertools.zip_longest(r1, r2, fillvalue=0)
assert next(it) == (1, 2)
assert next(it) == (1, 2)
assert next(it)== (1, 2)
raises(RuntimeError, next, it)
def test_subclassing(self):
import itertools
class A(itertools.count): pass
assert type(A(5)) is A
class A(itertools.repeat): pass
assert type(A('foo')) is A
class A(itertools.takewhile): pass
assert type(A(lambda x: True, [])) is A
class A(itertools.dropwhile): pass
assert type(A(lambda x: True, [])) is A
class A(itertools.filterfalse): pass
assert type(A(lambda x: True, [])) is A
class A(itertools.islice): pass
assert type(A([], 0)) is A
class A(itertools.chain): pass
assert type(A([], [])) is A
assert type(A.from_iterable([])) is A
class A(itertools.zip_longest): pass
assert type(A([], [])) is A
class A(itertools.cycle): pass
assert type(A([])) is A
class A(itertools.starmap): pass
assert type(A(lambda: 5, [])) is A
class A(itertools.groupby): pass
assert type(A([], lambda: 5)) is A
class A(itertools.compress): pass
assert type(A('', [])) is A
class A(itertools.product): pass
assert type(A('', '')) is A
class A(itertools.combinations): pass
assert type(A('', 0)) is A
class A(itertools.combinations_with_replacement): pass
assert type(A('', 0)) is A
def test_copy_pickle(self):
import itertools, copy, pickle, sys
for value in [42, -sys.maxsize*99]:
for step in [1, sys.maxsize*42, 5.5]:
expected = [value, value+step, value+2*step]
c = itertools.count(value, step)
assert list(itertools.islice(c, 3)) == expected
c = itertools.count(value, step)
c1 = copy.copy(c)
assert list(itertools.islice(c1, 3)) == expected
c2 = copy.deepcopy(c)
assert list(itertools.islice(c2, 3)) == expected
c3 = pickle.loads(pickle.dumps(c))
assert list(itertools.islice(c3, 3)) == expected
c4 = copy.copy(itertools.islice([1, 2, 3], 1, 5))
assert list(c4) == [2, 3]
def test_islice_attack(self):
import itertools
class Iterator(object):
first = True
def __iter__(self):
return self
def __next__(self):
if self.first:
self.first = False
list(islice)
return 52
myiter = Iterator()
islice = itertools.islice(myiter, 5, 8)
raises(StopIteration, islice.__next__)
def test_combinations_pickle(self):
from itertools import combinations
import pickle
for op in (lambda a:a, lambda a:pickle.loads(pickle.dumps(a))):
assert list(op(combinations('abc', 32))) == [] # r > n
assert list(op(combinations('ABCD', 2))) == [
('A','B'), ('A','C'), ('A','D'), ('B','C'), ('B','D'), ('C','D')]
testIntermediate = combinations('ABCD', 2)
next(testIntermediate)
assert list(op(testIntermediate)) == [
('A','C'), ('A','D'), ('B','C'), ('B','D'), ('C','D')]
assert list(op(combinations(range(4), 3))) == [
(0,1,2), (0,1,3), (0,2,3), (1,2,3)]
testIntermediate = combinations(range(4), 3)
next(testIntermediate)
assert list(op(testIntermediate)) == [
(0,1,3), (0,2,3), (1,2,3)]
def test_islice_pickle(self):
import itertools, pickle
it = itertools.islice(range(100), 10, 20, 3)
assert list(pickle.loads(pickle.dumps(it))) == list(range(100)[10:20:3])
def test_cycle_pickle(self):
import itertools, pickle
c = itertools.cycle('abc')
next(c)
assert list(itertools.islice(
pickle.loads(pickle.dumps(c)), 10)) == list('bcabcabcab')
# CPython does not add the 'exhausted' state
state = c.__reduce__()
assert len(state[2]) == 2
def test_takewhile_pickle(self):
data = [1, 2, 3, 0, 4, 5, 6]
import itertools, pickle
t = itertools.takewhile(bool, data)
next(t)
assert list(pickle.loads(pickle.dumps(t))) == [2, 3]
t = itertools.dropwhile(bool, data)
next(t)
assert list(pickle.loads(pickle.dumps(t))) == [4, 5, 6]
class AppTestItertools32:
spaceconfig = dict(usemodules=['itertools'])
def test_accumulate(self):
"""copied from ./lib-python/3/test/test_itertools.py"""
from itertools import accumulate
import _operator as operator
expected = [0, 1, 3, 6, 10, 15, 21, 28, 36, 45]
# one positional arg
assert list(accumulate(range(10))) == expected
# kw arg
assert list(accumulate(iterable=range(10))) == expected
# multiple types
for typ in int, complex:
assert list(accumulate(map(typ, range(10)))) == list(map(typ, expected))
assert list(accumulate('abc')) == ['a', 'ab', 'abc'] # works with non-numeric
assert list(accumulate([])) == [] # empty iterable
assert list(accumulate([7])) == [7] # iterable of length one
raises(TypeError, accumulate, range(10), 5, 6) # too many args
raises(TypeError, accumulate) # too few args
raises(TypeError, accumulate, x=range(10)) # unexpected kwd arg
raises(TypeError, list, accumulate([1, "a"])) # args that don't add
s = [2, 8, 9, 5, 7, 0, 3, 4, 1, 6]
assert list(accumulate(s, min)) == [2, 2, 2, 2, 2, 0, 0, 0, 0, 0]
assert list(accumulate(s, max)) == [2, 8, 9, 9, 9, 9, 9, 9, 9, 9]
assert list(accumulate(s, operator.mul)) == [2, 16, 144, 720, 5040, 0, 0, 0, 0, 0]
raises(TypeError, list, accumulate(s, chr)) # unary-operation
raises(TypeError, list, accumulate(s, lambda x,y,z: None)) # ternary
it = iter([10, 50, 150])
a = accumulate(it)
assert a.__reduce__() == (accumulate, (it, None), None)
next(a)
next(a)
assert a.__reduce__() == (accumulate, (it, None), 60)
it = iter([10, 50, 150])
a = accumulate(it)
a.__setstate__(20)
assert a.__reduce__() == (accumulate, (it, None), 20)
def test_accumulate_reduce_corner_case(self):
from itertools import accumulate
import _operator as operator
it = iter([None, None, None])
a = accumulate(it, operator.is_)
next(a)
x1, x2 = a.__reduce__()
b = x1(*x2)
res = list(b)
assert res == [True, False]
def test_accumulate_initial(self):
from itertools import accumulate
import pickle
assert list(accumulate([1, 1, 1], initial=1)) == [1, 2, 3, 4]
assert list(accumulate([1, 2, 3], initial=8)) == [8, 9, 11, 14]
assert list(accumulate([1, 2, 3], func=max, initial=8)) == [8] * 4
it = accumulate([10, 50, 150], initial=-10)
x1, x2, x3 = it.__reduce__()
it2 = x1(*x2)
it2.__setstate__(x3)
res2 = list(it2)
assert res2 == [-10, 0, 50, 200]
def test_tee_concurrent(self):
from itertools import tee
import threading
start = threading.Event()
finish = threading.Event()
class I:
def __iter__(self):
return self
def __next__(self):
start.set()
finish.wait()
a, b = tee(I())
thread = threading.Thread(target=next, args=[a])
thread.start()
try:
start.wait()
with raises(RuntimeError) as exc:
next(b)
assert 'tee' in str(exc)
finally:
finish.set()
thread.join()
|