test_itertools.py 68 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717
  1. import unittest
  2. from test import test_support
  3. from itertools import *
  4. import weakref
  5. from decimal import Decimal
  6. from fractions import Fraction
  7. import sys
  8. import operator
  9. import random
  10. import copy
  11. import pickle
  12. from functools import reduce
  13. maxsize = test_support.MAX_Py_ssize_t
  14. minsize = -maxsize-1
  15. def onearg(x):
  16. 'Test function of one argument'
  17. return 2*x
  18. def errfunc(*args):
  19. 'Test function that raises an error'
  20. raise ValueError
  21. def gen3():
  22. 'Non-restartable source sequence'
  23. for i in (0, 1, 2):
  24. yield i
  25. def isEven(x):
  26. 'Test predicate'
  27. return x%2==0
  28. def isOdd(x):
  29. 'Test predicate'
  30. return x%2==1
  31. class StopNow:
  32. 'Class emulating an empty iterable.'
  33. def __iter__(self):
  34. return self
  35. def next(self):
  36. raise StopIteration
  37. def take(n, seq):
  38. 'Convenience function for partially consuming a long of infinite iterable'
  39. return list(islice(seq, n))
  40. def prod(iterable):
  41. return reduce(operator.mul, iterable, 1)
  42. def fact(n):
  43. 'Factorial'
  44. return prod(range(1, n+1))
  45. class TestBasicOps(unittest.TestCase):
  46. def test_chain(self):
  47. def chain2(*iterables):
  48. 'Pure python version in the docs'
  49. for it in iterables:
  50. for element in it:
  51. yield element
  52. for c in (chain, chain2):
  53. self.assertEqual(list(c('abc', 'def')), list('abcdef'))
  54. self.assertEqual(list(c('abc')), list('abc'))
  55. self.assertEqual(list(c('')), [])
  56. self.assertEqual(take(4, c('abc', 'def')), list('abcd'))
  57. self.assertRaises(TypeError, list,c(2, 3))
  58. def test_chain_from_iterable(self):
  59. self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
  60. self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
  61. self.assertEqual(list(chain.from_iterable([''])), [])
  62. self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
  63. self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
  64. def test_combinations(self):
  65. self.assertRaises(TypeError, combinations, 'abc') # missing r argument
  66. self.assertRaises(TypeError, combinations, 'abc', 2, 1) # too many arguments
  67. self.assertRaises(TypeError, combinations, None) # pool is not iterable
  68. self.assertRaises(ValueError, combinations, 'abc', -2) # r is negative
  69. self.assertEqual(list(combinations('abc', 32)), []) # r > n
  70. self.assertEqual(list(combinations(range(4), 3)),
  71. [(0,1,2), (0,1,3), (0,2,3), (1,2,3)])
  72. def combinations1(iterable, r):
  73. 'Pure python version shown in the docs'
  74. pool = tuple(iterable)
  75. n = len(pool)
  76. if r > n:
  77. return
  78. indices = range(r)
  79. yield tuple(pool[i] for i in indices)
  80. while 1:
  81. for i in reversed(range(r)):
  82. if indices[i] != i + n - r:
  83. break
  84. else:
  85. return
  86. indices[i] += 1
  87. for j in range(i+1, r):
  88. indices[j] = indices[j-1] + 1
  89. yield tuple(pool[i] for i in indices)
  90. def combinations2(iterable, r):
  91. 'Pure python version shown in the docs'
  92. pool = tuple(iterable)
  93. n = len(pool)
  94. for indices in permutations(range(n), r):
  95. if sorted(indices) == list(indices):
  96. yield tuple(pool[i] for i in indices)
  97. def combinations3(iterable, r):
  98. 'Pure python version from cwr()'
  99. pool = tuple(iterable)
  100. n = len(pool)
  101. for indices in combinations_with_replacement(range(n), r):
  102. if len(set(indices)) == r:
  103. yield tuple(pool[i] for i in indices)
  104. for n in range(7):
  105. values = [5*x-12 for x in range(n)]
  106. for r in range(n+2):
  107. result = list(combinations(values, r))
  108. self.assertEqual(len(result), 0 if r>n else fact(n) // fact(r) // fact(n-r)) # right number of combs
  109. self.assertEqual(len(result), len(set(result))) # no repeats
  110. self.assertEqual(result, sorted(result)) # lexicographic order
  111. for c in result:
  112. self.assertEqual(len(c), r) # r-length combinations
  113. self.assertEqual(len(set(c)), r) # no duplicate elements
  114. self.assertEqual(list(c), sorted(c)) # keep original ordering
  115. self.assertTrue(all(e in values for e in c)) # elements taken from input iterable
  116. self.assertEqual(list(c),
  117. [e for e in values if e in c]) # comb is a subsequence of the input iterable
  118. self.assertEqual(result, list(combinations1(values, r))) # matches first pure python version
  119. self.assertEqual(result, list(combinations2(values, r))) # matches second pure python version
  120. self.assertEqual(result, list(combinations3(values, r))) # matches second pure python version
  121. @test_support.bigaddrspacetest
  122. def test_combinations_overflow(self):
  123. with self.assertRaises((OverflowError, MemoryError)):
  124. combinations("AA", 2**29)
  125. @test_support.impl_detail("tuple reuse is specific to CPython")
  126. def test_combinations_tuple_reuse(self):
  127. self.assertEqual(len(set(map(id, combinations('abcde', 3)))), 1)
  128. self.assertNotEqual(len(set(map(id, list(combinations('abcde', 3))))), 1)
  129. def test_combinations_with_replacement(self):
  130. cwr = combinations_with_replacement
  131. self.assertRaises(TypeError, cwr, 'abc') # missing r argument
  132. self.assertRaises(TypeError, cwr, 'abc', 2, 1) # too many arguments
  133. self.assertRaises(TypeError, cwr, None) # pool is not iterable
  134. self.assertRaises(ValueError, cwr, 'abc', -2) # r is negative
  135. self.assertEqual(list(cwr('ABC', 2)),
  136. [('A','A'), ('A','B'), ('A','C'), ('B','B'), ('B','C'), ('C','C')])
  137. def cwr1(iterable, r):
  138. 'Pure python version shown in the docs'
  139. # number items returned: (n+r-1)! / r! / (n-1)! when n>0
  140. pool = tuple(iterable)
  141. n = len(pool)
  142. if not n and r:
  143. return
  144. indices = [0] * r
  145. yield tuple(pool[i] for i in indices)
  146. while 1:
  147. for i in reversed(range(r)):
  148. if indices[i] != n - 1:
  149. break
  150. else:
  151. return
  152. indices[i:] = [indices[i] + 1] * (r - i)
  153. yield tuple(pool[i] for i in indices)
  154. def cwr2(iterable, r):
  155. 'Pure python version shown in the docs'
  156. pool = tuple(iterable)
  157. n = len(pool)
  158. for indices in product(range(n), repeat=r):
  159. if sorted(indices) == list(indices):
  160. yield tuple(pool[i] for i in indices)
  161. def numcombs(n, r):
  162. if not n:
  163. return 0 if r else 1
  164. return fact(n+r-1) // fact(r) // fact(n-1)
  165. for n in range(7):
  166. values = [5*x-12 for x in range(n)]
  167. for r in range(n+2):
  168. result = list(cwr(values, r))
  169. self.assertEqual(len(result), numcombs(n, r)) # right number of combs
  170. self.assertEqual(len(result), len(set(result))) # no repeats
  171. self.assertEqual(result, sorted(result)) # lexicographic order
  172. regular_combs = list(combinations(values, r)) # compare to combs without replacement
  173. if n == 0 or r <= 1:
  174. self.assertEqual(result, regular_combs) # cases that should be identical
  175. else:
  176. self.assertTrue(set(result) >= set(regular_combs)) # rest should be supersets of regular combs
  177. for c in result:
  178. self.assertEqual(len(c), r) # r-length combinations
  179. noruns = [k for k,v in groupby(c)] # combo without consecutive repeats
  180. self.assertEqual(len(noruns), len(set(noruns))) # no repeats other than consecutive
  181. self.assertEqual(list(c), sorted(c)) # keep original ordering
  182. self.assertTrue(all(e in values for e in c)) # elements taken from input iterable
  183. self.assertEqual(noruns,
  184. [e for e in values if e in c]) # comb is a subsequence of the input iterable
  185. self.assertEqual(result, list(cwr1(values, r))) # matches first pure python version
  186. self.assertEqual(result, list(cwr2(values, r))) # matches second pure python version
  187. @test_support.bigaddrspacetest
  188. def test_combinations_with_replacement_overflow(self):
  189. with self.assertRaises((OverflowError, MemoryError)):
  190. combinations_with_replacement("AA", 2**30)
  191. @test_support.impl_detail("tuple reuse is specific to CPython")
  192. def test_combinations_with_replacement_tuple_reuse(self):
  193. cwr = combinations_with_replacement
  194. self.assertEqual(len(set(map(id, cwr('abcde', 3)))), 1)
  195. self.assertNotEqual(len(set(map(id, list(cwr('abcde', 3))))), 1)
  196. def test_permutations(self):
  197. self.assertRaises(TypeError, permutations) # too few arguments
  198. self.assertRaises(TypeError, permutations, 'abc', 2, 1) # too many arguments
  199. self.assertRaises(TypeError, permutations, None) # pool is not iterable
  200. self.assertRaises(ValueError, permutations, 'abc', -2) # r is negative
  201. self.assertEqual(list(permutations('abc', 32)), []) # r > n
  202. self.assertRaises(TypeError, permutations, 'abc', 's') # r is not an int or None
  203. self.assertEqual(list(permutations(range(3), 2)),
  204. [(0,1), (0,2), (1,0), (1,2), (2,0), (2,1)])
  205. def permutations1(iterable, r=None):
  206. 'Pure python version shown in the docs'
  207. pool = tuple(iterable)
  208. n = len(pool)
  209. r = n if r is None else r
  210. if r > n:
  211. return
  212. indices = range(n)
  213. cycles = range(n, n-r, -1)
  214. yield tuple(pool[i] for i in indices[:r])
  215. while n:
  216. for i in reversed(range(r)):
  217. cycles[i] -= 1
  218. if cycles[i] == 0:
  219. indices[i:] = indices[i+1:] + indices[i:i+1]
  220. cycles[i] = n - i
  221. else:
  222. j = cycles[i]
  223. indices[i], indices[-j] = indices[-j], indices[i]
  224. yield tuple(pool[i] for i in indices[:r])
  225. break
  226. else:
  227. return
  228. def permutations2(iterable, r=None):
  229. 'Pure python version shown in the docs'
  230. pool = tuple(iterable)
  231. n = len(pool)
  232. r = n if r is None else r
  233. for indices in product(range(n), repeat=r):
  234. if len(set(indices)) == r:
  235. yield tuple(pool[i] for i in indices)
  236. for n in range(7):
  237. values = [5*x-12 for x in range(n)]
  238. for r in range(n+2):
  239. result = list(permutations(values, r))
  240. self.assertEqual(len(result), 0 if r>n else fact(n) // fact(n-r)) # right number of perms
  241. self.assertEqual(len(result), len(set(result))) # no repeats
  242. self.assertEqual(result, sorted(result)) # lexicographic order
  243. for p in result:
  244. self.assertEqual(len(p), r) # r-length permutations
  245. self.assertEqual(len(set(p)), r) # no duplicate elements
  246. self.assertTrue(all(e in values for e in p)) # elements taken from input iterable
  247. self.assertEqual(result, list(permutations1(values, r))) # matches first pure python version
  248. self.assertEqual(result, list(permutations2(values, r))) # matches second pure python version
  249. if r == n:
  250. self.assertEqual(result, list(permutations(values, None))) # test r as None
  251. self.assertEqual(result, list(permutations(values))) # test default r
  252. @test_support.bigaddrspacetest
  253. def test_permutations_overflow(self):
  254. with self.assertRaises((OverflowError, MemoryError)):
  255. permutations("A", 2**30)
  256. @test_support.impl_detail("tuple reuse is specific to CPython")
  257. def test_permutations_tuple_reuse(self):
  258. self.assertEqual(len(set(map(id, permutations('abcde', 3)))), 1)
  259. self.assertNotEqual(len(set(map(id, list(permutations('abcde', 3))))), 1)
  260. def test_combinatorics(self):
  261. # Test relationships between product(), permutations(),
  262. # combinations() and combinations_with_replacement().
  263. for n in range(6):
  264. s = 'ABCDEFG'[:n]
  265. for r in range(8):
  266. prod = list(product(s, repeat=r))
  267. cwr = list(combinations_with_replacement(s, r))
  268. perm = list(permutations(s, r))
  269. comb = list(combinations(s, r))
  270. # Check size
  271. self.assertEqual(len(prod), n**r)
  272. self.assertEqual(len(cwr), (fact(n+r-1) // fact(r) // fact(n-1)) if n else (not r))
  273. self.assertEqual(len(perm), 0 if r>n else fact(n) // fact(n-r))
  274. self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r))
  275. # Check lexicographic order without repeated tuples
  276. self.assertEqual(prod, sorted(set(prod)))
  277. self.assertEqual(cwr, sorted(set(cwr)))
  278. self.assertEqual(perm, sorted(set(perm)))
  279. self.assertEqual(comb, sorted(set(comb)))
  280. # Check interrelationships
  281. self.assertEqual(cwr, [t for t in prod if sorted(t)==list(t)]) # cwr: prods which are sorted
  282. self.assertEqual(perm, [t for t in prod if len(set(t))==r]) # perm: prods with no dups
  283. self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted
  284. self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dups
  285. self.assertEqual(comb, filter(set(cwr).__contains__, perm)) # comb: perm that is a cwr
  286. self.assertEqual(comb, filter(set(perm).__contains__, cwr)) # comb: cwr that is a perm
  287. self.assertEqual(comb, sorted(set(cwr) & set(perm))) # comb: both a cwr and a perm
  288. def test_compress(self):
  289. self.assertEqual(list(compress(data='ABCDEF', selectors=[1,0,1,0,1,1])), list('ACEF'))
  290. self.assertEqual(list(compress('ABCDEF', [1,0,1,0,1,1])), list('ACEF'))
  291. self.assertEqual(list(compress('ABCDEF', [0,0,0,0,0,0])), list(''))
  292. self.assertEqual(list(compress('ABCDEF', [1,1,1,1,1,1])), list('ABCDEF'))
  293. self.assertEqual(list(compress('ABCDEF', [1,0,1])), list('AC'))
  294. self.assertEqual(list(compress('ABC', [0,1,1,1,1,1])), list('BC'))
  295. n = 10000
  296. data = chain.from_iterable(repeat(range(6), n))
  297. selectors = chain.from_iterable(repeat((0, 1)))
  298. self.assertEqual(list(compress(data, selectors)), [1,3,5] * n)
  299. self.assertRaises(TypeError, compress, None, range(6)) # 1st arg not iterable
  300. self.assertRaises(TypeError, compress, range(6), None) # 2nd arg not iterable
  301. self.assertRaises(TypeError, compress, range(6)) # too few args
  302. self.assertRaises(TypeError, compress, range(6), None) # too many args
  303. def test_count(self):
  304. self.assertEqual(zip('abc',count()), [('a', 0), ('b', 1), ('c', 2)])
  305. self.assertEqual(zip('abc',count(3)), [('a', 3), ('b', 4), ('c', 5)])
  306. self.assertEqual(take(2, zip('abc',count(3))), [('a', 3), ('b', 4)])
  307. self.assertEqual(take(2, zip('abc',count(-1))), [('a', -1), ('b', 0)])
  308. self.assertEqual(take(2, zip('abc',count(-3))), [('a', -3), ('b', -2)])
  309. self.assertRaises(TypeError, count, 2, 3, 4)
  310. self.assertRaises(TypeError, count, 'a')
  311. self.assertEqual(list(islice(count(maxsize-5), 10)), range(maxsize-5, maxsize+5))
  312. self.assertEqual(list(islice(count(-maxsize-5), 10)), range(-maxsize-5, -maxsize+5))
  313. c = count(3)
  314. self.assertEqual(repr(c), 'count(3)')
  315. c.next()
  316. self.assertEqual(repr(c), 'count(4)')
  317. c = count(-9)
  318. self.assertEqual(repr(c), 'count(-9)')
  319. c.next()
  320. self.assertEqual(repr(count(10.25)), 'count(10.25)')
  321. self.assertEqual(c.next(), -8)
  322. for i in (-sys.maxint-5, -sys.maxint+5 ,-10, -1, 0, 10, sys.maxint-5, sys.maxint+5):
  323. # Test repr (ignoring the L in longs)
  324. r1 = repr(count(i)).replace('L', '')
  325. r2 = 'count(%r)'.__mod__(i).replace('L', '')
  326. self.assertEqual(r1, r2)
  327. # check copy, deepcopy, pickle
  328. for value in -3, 3, sys.maxint-5, sys.maxint+5:
  329. c = count(value)
  330. self.assertEqual(next(copy.copy(c)), value)
  331. self.assertEqual(next(copy.deepcopy(c)), value)
  332. for proto in range(pickle.HIGHEST_PROTOCOL + 1):
  333. self.assertEqual(next(pickle.loads(pickle.dumps(c, proto))), value)
  334. def test_count_with_stride(self):
  335. self.assertEqual(zip('abc',count(2,3)), [('a', 2), ('b', 5), ('c', 8)])
  336. self.assertEqual(zip('abc',count(start=2,step=3)),
  337. [('a', 2), ('b', 5), ('c', 8)])
  338. self.assertEqual(zip('abc',count(step=-1)),
  339. [('a', 0), ('b', -1), ('c', -2)])
  340. self.assertEqual(zip('abc',count(2,0)), [('a', 2), ('b', 2), ('c', 2)])
  341. self.assertEqual(zip('abc',count(2,1)), [('a', 2), ('b', 3), ('c', 4)])
  342. self.assertEqual(take(20, count(maxsize-15, 3)), take(20, range(maxsize-15, maxsize+100, 3)))
  343. self.assertEqual(take(20, count(-maxsize-15, 3)), take(20, range(-maxsize-15,-maxsize+100, 3)))
  344. self.assertEqual(take(3, count(2, 3.25-4j)), [2, 5.25-4j, 8.5-8j])
  345. self.assertEqual(take(3, count(Decimal('1.1'), Decimal('.1'))),
  346. [Decimal('1.1'), Decimal('1.2'), Decimal('1.3')])
  347. self.assertEqual(take(3, count(Fraction(2,3), Fraction(1,7))),
  348. [Fraction(2,3), Fraction(17,21), Fraction(20,21)])
  349. self.assertEqual(repr(take(3, count(10, 2.5))), repr([10, 12.5, 15.0]))
  350. c = count(3, 5)
  351. self.assertEqual(repr(c), 'count(3, 5)')
  352. c.next()
  353. self.assertEqual(repr(c), 'count(8, 5)')
  354. c = count(-9, 0)
  355. self.assertEqual(repr(c), 'count(-9, 0)')
  356. c.next()
  357. self.assertEqual(repr(c), 'count(-9, 0)')
  358. c = count(-9, -3)
  359. self.assertEqual(repr(c), 'count(-9, -3)')
  360. c.next()
  361. self.assertEqual(repr(c), 'count(-12, -3)')
  362. self.assertEqual(repr(c), 'count(-12, -3)')
  363. self.assertEqual(repr(count(10.5, 1.25)), 'count(10.5, 1.25)')
  364. self.assertEqual(repr(count(10.5, 1)), 'count(10.5)') # suppress step=1 when it's an int
  365. self.assertEqual(repr(count(10.5, 1.00)), 'count(10.5, 1.0)') # do show float values lilke 1.0
  366. for i in (-sys.maxint-5, -sys.maxint+5 ,-10, -1, 0, 10, sys.maxint-5, sys.maxint+5):
  367. for j in (-sys.maxint-5, -sys.maxint+5 ,-10, -1, 0, 1, 10, sys.maxint-5, sys.maxint+5):
  368. # Test repr (ignoring the L in longs)
  369. r1 = repr(count(i, j)).replace('L', '')
  370. if j == 1:
  371. r2 = ('count(%r)' % i).replace('L', '')
  372. else:
  373. r2 = ('count(%r, %r)' % (i, j)).replace('L', '')
  374. self.assertEqual(r1, r2)
  375. def test_cycle(self):
  376. self.assertEqual(take(10, cycle('abc')), list('abcabcabca'))
  377. self.assertEqual(list(cycle('')), [])
  378. self.assertRaises(TypeError, cycle)
  379. self.assertRaises(TypeError, cycle, 5)
  380. self.assertEqual(list(islice(cycle(gen3()),10)), [0,1,2,0,1,2,0,1,2,0])
  381. def test_groupby(self):
  382. # Check whether it accepts arguments correctly
  383. self.assertEqual([], list(groupby([])))
  384. self.assertEqual([], list(groupby([], key=id)))
  385. self.assertRaises(TypeError, list, groupby('abc', []))
  386. self.assertRaises(TypeError, groupby, None)
  387. self.assertRaises(TypeError, groupby, 'abc', lambda x:x, 10)
  388. # Check normal input
  389. s = [(0, 10, 20), (0, 11,21), (0,12,21), (1,13,21), (1,14,22),
  390. (2,15,22), (3,16,23), (3,17,23)]
  391. dup = []
  392. for k, g in groupby(s, lambda r:r[0]):
  393. for elem in g:
  394. self.assertEqual(k, elem[0])
  395. dup.append(elem)
  396. self.assertEqual(s, dup)
  397. # Check nested case
  398. dup = []
  399. for k, g in groupby(s, lambda r:r[0]):
  400. for ik, ig in groupby(g, lambda r:r[2]):
  401. for elem in ig:
  402. self.assertEqual(k, elem[0])
  403. self.assertEqual(ik, elem[2])
  404. dup.append(elem)
  405. self.assertEqual(s, dup)
  406. # Check case where inner iterator is not used
  407. keys = [k for k, g in groupby(s, lambda r:r[0])]
  408. expectedkeys = set([r[0] for r in s])
  409. self.assertEqual(set(keys), expectedkeys)
  410. self.assertEqual(len(keys), len(expectedkeys))
  411. # Exercise pipes and filters style
  412. s = 'abracadabra'
  413. # sort s | uniq
  414. r = [k for k, g in groupby(sorted(s))]
  415. self.assertEqual(r, ['a', 'b', 'c', 'd', 'r'])
  416. # sort s | uniq -d
  417. r = [k for k, g in groupby(sorted(s)) if list(islice(g,1,2))]
  418. self.assertEqual(r, ['a', 'b', 'r'])
  419. # sort s | uniq -c
  420. r = [(len(list(g)), k) for k, g in groupby(sorted(s))]
  421. self.assertEqual(r, [(5, 'a'), (2, 'b'), (1, 'c'), (1, 'd'), (2, 'r')])
  422. # sort s | uniq -c | sort -rn | head -3
  423. r = sorted([(len(list(g)) , k) for k, g in groupby(sorted(s))], reverse=True)[:3]
  424. self.assertEqual(r, [(5, 'a'), (2, 'r'), (2, 'b')])
  425. # iter.next failure
  426. class ExpectedError(Exception):
  427. pass
  428. def delayed_raise(n=0):
  429. for i in range(n):
  430. yield 'yo'
  431. raise ExpectedError
  432. def gulp(iterable, keyp=None, func=list):
  433. return [func(g) for k, g in groupby(iterable, keyp)]
  434. # iter.next failure on outer object
  435. self.assertRaises(ExpectedError, gulp, delayed_raise(0))
  436. # iter.next failure on inner object
  437. self.assertRaises(ExpectedError, gulp, delayed_raise(1))
  438. # __cmp__ failure
  439. class DummyCmp:
  440. def __cmp__(self, dst):
  441. raise ExpectedError
  442. s = [DummyCmp(), DummyCmp(), None]
  443. # __cmp__ failure on outer object
  444. self.assertRaises(ExpectedError, gulp, s, func=id)
  445. # __cmp__ failure on inner object
  446. self.assertRaises(ExpectedError, gulp, s)
  447. # keyfunc failure
  448. def keyfunc(obj):
  449. if keyfunc.skip > 0:
  450. keyfunc.skip -= 1
  451. return obj
  452. else:
  453. raise ExpectedError
  454. # keyfunc failure on outer object
  455. keyfunc.skip = 0
  456. self.assertRaises(ExpectedError, gulp, [None], keyfunc)
  457. keyfunc.skip = 1
  458. self.assertRaises(ExpectedError, gulp, [None, None], keyfunc)
  459. def test_ifilter(self):
  460. self.assertEqual(list(ifilter(isEven, range(6))), [0,2,4])
  461. self.assertEqual(list(ifilter(None, [0,1,0,2,0])), [1,2])
  462. self.assertEqual(list(ifilter(bool, [0,1,0,2,0])), [1,2])
  463. self.assertEqual(take(4, ifilter(isEven, count())), [0,2,4,6])
  464. self.assertRaises(TypeError, ifilter)
  465. self.assertRaises(TypeError, ifilter, lambda x:x)
  466. self.assertRaises(TypeError, ifilter, lambda x:x, range(6), 7)
  467. self.assertRaises(TypeError, ifilter, isEven, 3)
  468. self.assertRaises(TypeError, ifilter(range(6), range(6)).next)
  469. def test_ifilterfalse(self):
  470. self.assertEqual(list(ifilterfalse(isEven, range(6))), [1,3,5])
  471. self.assertEqual(list(ifilterfalse(None, [0,1,0,2,0])), [0,0,0])
  472. self.assertEqual(list(ifilterfalse(bool, [0,1,0,2,0])), [0,0,0])
  473. self.assertEqual(take(4, ifilterfalse(isEven, count())), [1,3,5,7])
  474. self.assertRaises(TypeError, ifilterfalse)
  475. self.assertRaises(TypeError, ifilterfalse, lambda x:x)
  476. self.assertRaises(TypeError, ifilterfalse, lambda x:x, range(6), 7)
  477. self.assertRaises(TypeError, ifilterfalse, isEven, 3)
  478. self.assertRaises(TypeError, ifilterfalse(range(6), range(6)).next)
  479. def test_izip(self):
  480. ans = [(x,y) for x, y in izip('abc',count())]
  481. self.assertEqual(ans, [('a', 0), ('b', 1), ('c', 2)])
  482. self.assertEqual(list(izip('abc', range(6))), zip('abc', range(6)))
  483. self.assertEqual(list(izip('abcdef', range(3))), zip('abcdef', range(3)))
  484. self.assertEqual(take(3,izip('abcdef', count())), zip('abcdef', range(3)))
  485. self.assertEqual(list(izip('abcdef')), zip('abcdef'))
  486. self.assertEqual(list(izip()), zip())
  487. self.assertRaises(TypeError, izip, 3)
  488. self.assertRaises(TypeError, izip, range(3), 3)
  489. self.assertEqual([tuple(list(pair)) for pair in izip('abc', 'def')],
  490. zip('abc', 'def'))
  491. self.assertEqual([pair for pair in izip('abc', 'def')],
  492. zip('abc', 'def'))
  493. @test_support.impl_detail("tuple reuse is specific to CPython")
  494. def test_izip_tuple_reuse(self):
  495. ids = map(id, izip('abc', 'def'))
  496. self.assertEqual(min(ids), max(ids))
  497. ids = map(id, list(izip('abc', 'def')))
  498. self.assertEqual(len(dict.fromkeys(ids)), len(ids))
  499. def test_iziplongest(self):
  500. for args in [
  501. ['abc', range(6)],
  502. [range(6), 'abc'],
  503. [range(1000), range(2000,2100), range(3000,3050)],
  504. [range(1000), range(0), range(3000,3050), range(1200), range(1500)],
  505. [range(1000), range(0), range(3000,3050), range(1200), range(1500), range(0)],
  506. ]:
  507. # target = map(None, *args) <- this raises a py3k warning
  508. # this is the replacement:
  509. target = [tuple([arg[i] if i < len(arg) else None for arg in args])
  510. for i in range(max(map(len, args)))]
  511. self.assertEqual(list(izip_longest(*args)), target)
  512. self.assertEqual(list(izip_longest(*args, **{})), target)
  513. target = [tuple((e is None and 'X' or e) for e in t) for t in target] # Replace None fills with 'X'
  514. self.assertEqual(list(izip_longest(*args, **dict(fillvalue='X'))), target)
  515. self.assertEqual(take(3,izip_longest('abcdef', count())), zip('abcdef', range(3))) # take 3 from infinite input
  516. self.assertEqual(list(izip_longest()), zip())
  517. self.assertEqual(list(izip_longest([])), zip([]))
  518. self.assertEqual(list(izip_longest('abcdef')), zip('abcdef'))
  519. self.assertEqual(list(izip_longest('abc', 'defg', **{})),
  520. zip(list('abc') + [None], 'defg')) # empty keyword dict
  521. self.assertRaises(TypeError, izip_longest, 3)
  522. self.assertRaises(TypeError, izip_longest, range(3), 3)
  523. for stmt in [
  524. "izip_longest('abc', fv=1)",
  525. "izip_longest('abc', fillvalue=1, bogus_keyword=None)",
  526. ]:
  527. try:
  528. eval(stmt, globals(), locals())
  529. except TypeError:
  530. pass
  531. else:
  532. self.fail('Did not raise Type in: ' + stmt)
  533. self.assertEqual([tuple(list(pair)) for pair in izip_longest('abc', 'def')],
  534. zip('abc', 'def'))
  535. self.assertEqual([pair for pair in izip_longest('abc', 'def')],
  536. zip('abc', 'def'))
  537. @test_support.impl_detail("tuple reuse is specific to CPython")
  538. def test_izip_longest_tuple_reuse(self):
  539. ids = map(id, izip_longest('abc', 'def'))
  540. self.assertEqual(min(ids), max(ids))
  541. ids = map(id, list(izip_longest('abc', 'def')))
  542. self.assertEqual(len(dict.fromkeys(ids)), len(ids))
  543. def test_bug_7244(self):
  544. class Repeater(object):
  545. # this class is similar to itertools.repeat
  546. def __init__(self, o, t, e):
  547. self.o = o
  548. self.t = int(t)
  549. self.e = e
  550. def __iter__(self): # its iterator is itself
  551. return self
  552. def next(self):
  553. if self.t > 0:
  554. self.t -= 1
  555. return self.o
  556. else:
  557. raise self.e
  558. # Formerly this code in would fail in debug mode
  559. # with Undetected Error and Stop Iteration
  560. r1 = Repeater(1, 3, StopIteration)
  561. r2 = Repeater(2, 4, StopIteration)
  562. def run(r1, r2):
  563. result = []
  564. for i, j in izip_longest(r1, r2, fillvalue=0):
  565. with test_support.captured_output('stdout'):
  566. print (i, j)
  567. result.append((i, j))
  568. return result
  569. self.assertEqual(run(r1, r2), [(1,2), (1,2), (1,2), (0,2)])
  570. # Formerly, the RuntimeError would be lost
  571. # and StopIteration would stop as expected
  572. r1 = Repeater(1, 3, RuntimeError)
  573. r2 = Repeater(2, 4, StopIteration)
  574. it = izip_longest(r1, r2, fillvalue=0)
  575. self.assertEqual(next(it), (1, 2))
  576. self.assertEqual(next(it), (1, 2))
  577. self.assertEqual(next(it), (1, 2))
  578. self.assertRaises(RuntimeError, next, it)
  579. def test_product(self):
  580. for args, result in [
  581. ([], [()]), # zero iterables
  582. (['ab'], [('a',), ('b',)]), # one iterable
  583. ([range(2), range(3)], [(0,0), (0,1), (0,2), (1,0), (1,1), (1,2)]), # two iterables
  584. ([range(0), range(2), range(3)], []), # first iterable with zero length
  585. ([range(2), range(0), range(3)], []), # middle iterable with zero length
  586. ([range(2), range(3), range(0)], []), # last iterable with zero length
  587. ]:
  588. self.assertEqual(list(product(*args)), result)
  589. for r in range(4):
  590. self.assertEqual(list(product(*(args*r))),
  591. list(product(*args, **dict(repeat=r))))
  592. self.assertEqual(len(list(product(*[range(7)]*6))), 7**6)
  593. self.assertRaises(TypeError, product, range(6), None)
  594. def product1(*args, **kwds):
  595. pools = map(tuple, args) * kwds.get('repeat', 1)
  596. n = len(pools)
  597. if n == 0:
  598. yield ()
  599. return
  600. if any(len(pool) == 0 for pool in pools):
  601. return
  602. indices = [0] * n
  603. yield tuple(pool[i] for pool, i in zip(pools, indices))
  604. while 1:
  605. for i in reversed(range(n)): # right to left
  606. if indices[i] == len(pools[i]) - 1:
  607. continue
  608. indices[i] += 1
  609. for j in range(i+1, n):
  610. indices[j] = 0
  611. yield tuple(pool[i] for pool, i in zip(pools, indices))
  612. break
  613. else:
  614. return
  615. def product2(*args, **kwds):
  616. 'Pure python version used in docs'
  617. pools = map(tuple, args) * kwds.get('repeat', 1)
  618. result = [[]]
  619. for pool in pools:
  620. result = [x+[y] for x in result for y in pool]
  621. for prod in result:
  622. yield tuple(prod)
  623. argtypes = ['', 'abc', '', xrange(0), xrange(4), dict(a=1, b=2, c=3),
  624. set('abcdefg'), range(11), tuple(range(13))]
  625. for i in range(100):
  626. args = [random.choice(argtypes) for j in range(random.randrange(5))]
  627. expected_len = prod(map(len, args))
  628. self.assertEqual(len(list(product(*args))), expected_len)
  629. self.assertEqual(list(product(*args)), list(product1(*args)))
  630. self.assertEqual(list(product(*args)), list(product2(*args)))
  631. args = map(iter, args)
  632. self.assertEqual(len(list(product(*args))), expected_len)
  633. @test_support.bigaddrspacetest
  634. def test_product_overflow(self):
  635. with self.assertRaises((OverflowError, MemoryError)):
  636. product(*(['ab']*2**5), repeat=2**25)
  637. @test_support.impl_detail("tuple reuse is specific to CPython")
  638. def test_product_tuple_reuse(self):
  639. self.assertEqual(len(set(map(id, product('abc', 'def')))), 1)
  640. self.assertNotEqual(len(set(map(id, list(product('abc', 'def'))))), 1)
  641. def test_repeat(self):
  642. self.assertEqual(list(repeat(object='a', times=3)), ['a', 'a', 'a'])
  643. self.assertEqual(list(repeat(object='a', times=0)), [])
  644. self.assertEqual(list(repeat(object='a', times=-1)), [])
  645. self.assertEqual(list(repeat(object='a', times=-2)), [])
  646. self.assertEqual(zip(xrange(3),repeat('a')),
  647. [(0, 'a'), (1, 'a'), (2, 'a')])
  648. self.assertEqual(list(repeat('a', 3)), ['a', 'a', 'a'])
  649. self.assertEqual(take(3, repeat('a')), ['a', 'a', 'a'])
  650. self.assertEqual(list(repeat('a', 0)), [])
  651. self.assertEqual(list(repeat('a', -3)), [])
  652. self.assertRaises(TypeError, repeat)
  653. self.assertRaises(TypeError, repeat, None, 3, 4)
  654. self.assertRaises(TypeError, repeat, None, 'a')
  655. r = repeat(1+0j)
  656. self.assertEqual(repr(r), 'repeat((1+0j))')
  657. r = repeat(1+0j, 5)
  658. self.assertEqual(repr(r), 'repeat((1+0j), 5)')
  659. list(r)
  660. self.assertEqual(repr(r), 'repeat((1+0j), 0)')
  661. def test_repeat_with_negative_times(self):
  662. self.assertEqual(repr(repeat('a', -1)), "repeat('a', 0)")
  663. self.assertEqual(repr(repeat('a', -2)), "repeat('a', 0)")
  664. self.assertEqual(repr(repeat('a', times=-1)), "repeat('a', 0)")
  665. self.assertEqual(repr(repeat('a', times=-2)), "repeat('a', 0)")
  666. def test_imap(self):
  667. self.assertEqual(list(imap(operator.pow, range(3), range(1,7))),
  668. [0**1, 1**2, 2**3])
  669. self.assertEqual(list(imap(None, 'abc', range(5))),
  670. [('a',0),('b',1),('c',2)])
  671. self.assertEqual(list(imap(None, 'abc', count())),
  672. [('a',0),('b',1),('c',2)])
  673. self.assertEqual(take(2,imap(None, 'abc', count())),
  674. [('a',0),('b',1)])
  675. self.assertEqual(list(imap(operator.pow, [])), [])
  676. self.assertRaises(TypeError, imap)
  677. self.assertRaises(TypeError, imap, operator.neg)
  678. self.assertRaises(TypeError, imap(10, range(5)).next)
  679. self.assertRaises(ValueError, imap(errfunc, [4], [5]).next)
  680. self.assertRaises(TypeError, imap(onearg, [4], [5]).next)
  681. def test_starmap(self):
  682. self.assertEqual(list(starmap(operator.pow, zip(range(3), range(1,7)))),
  683. [0**1, 1**2, 2**3])
  684. self.assertEqual(take(3, starmap(operator.pow, izip(count(), count(1)))),
  685. [0**1, 1**2, 2**3])
  686. self.assertEqual(list(starmap(operator.pow, [])), [])
  687. self.assertEqual(list(starmap(operator.pow, [iter([4,5])])), [4**5])
  688. self.assertRaises(TypeError, list, starmap(operator.pow, [None]))
  689. self.assertRaises(TypeError, starmap)
  690. self.assertRaises(TypeError, starmap, operator.pow, [(4,5)], 'extra')
  691. self.assertRaises(TypeError, starmap(10, [(4,5)]).next)
  692. self.assertRaises(ValueError, starmap(errfunc, [(4,5)]).next)
  693. self.assertRaises(TypeError, starmap(onearg, [(4,5)]).next)
  694. def test_islice(self):
  695. for args in [ # islice(args) should agree with range(args)
  696. (10, 20, 3),
  697. (10, 3, 20),
  698. (10, 20),
  699. (10, 3),
  700. (20,)
  701. ]:
  702. self.assertEqual(list(islice(xrange(100), *args)), range(*args))
  703. for args, tgtargs in [ # Stop when seqn is exhausted
  704. ((10, 110, 3), ((10, 100, 3))),
  705. ((10, 110), ((10, 100))),
  706. ((110,), (100,))
  707. ]:
  708. self.assertEqual(list(islice(xrange(100), *args)), range(*tgtargs))
  709. # Test stop=None
  710. self.assertEqual(list(islice(xrange(10), None)), range(10))
  711. self.assertEqual(list(islice(xrange(10), None, None)), range(10))
  712. self.assertEqual(list(islice(xrange(10), None, None, None)), range(10))
  713. self.assertEqual(list(islice(xrange(10), 2, None)), range(2, 10))
  714. self.assertEqual(list(islice(xrange(10), 1, None, 2)), range(1, 10, 2))
  715. # Test number of items consumed SF #1171417
  716. it = iter(range(10))
  717. self.assertEqual(list(islice(it, 3)), range(3))
  718. self.assertEqual(list(it), range(3, 10))
  719. # Test invalid arguments
  720. self.assertRaises(TypeError, islice, xrange(10))
  721. self.assertRaises(TypeError, islice, xrange(10), 1, 2, 3, 4)
  722. self.assertRaises(ValueError, islice, xrange(10), -5, 10, 1)
  723. self.assertRaises(ValueError, islice, xrange(10), 1, -5, -1)
  724. self.assertRaises(ValueError, islice, xrange(10), 1, 10, -1)
  725. self.assertRaises(ValueError, islice, xrange(10), 1, 10, 0)
  726. self.assertRaises(ValueError, islice, xrange(10), 'a')
  727. self.assertRaises(ValueError, islice, xrange(10), 'a', 1)
  728. self.assertRaises(ValueError, islice, xrange(10), 1, 'a')
  729. self.assertRaises(ValueError, islice, xrange(10), 'a', 1, 1)
  730. self.assertRaises(ValueError, islice, xrange(10), 1, 'a', 1)
  731. self.assertEqual(len(list(islice(count(), 1, 10, maxsize))), 1)
  732. # Issue #10323: Less islice in a predictable state
  733. c = count()
  734. self.assertEqual(list(islice(c, 1, 3, 50)), [1])
  735. self.assertEqual(next(c), 3)
  736. # Issue #21321: check source iterator is not referenced
  737. # from islice() after the latter has been exhausted
  738. it = (x for x in (1, 2))
  739. wr = weakref.ref(it)
  740. it = islice(it, 1)
  741. self.assertIsNotNone(wr())
  742. list(it) # exhaust the iterator
  743. test_support.gc_collect()
  744. self.assertIsNone(wr())
  745. def test_takewhile(self):
  746. data = [1, 3, 5, 20, 2, 4, 6, 8]
  747. underten = lambda x: x<10
  748. self.assertEqual(list(takewhile(underten, data)), [1, 3, 5])
  749. self.assertEqual(list(takewhile(underten, [])), [])
  750. self.assertRaises(TypeError, takewhile)
  751. self.assertRaises(TypeError, takewhile, operator.pow)
  752. self.assertRaises(TypeError, takewhile, operator.pow, [(4,5)], 'extra')
  753. self.assertRaises(TypeError, takewhile(10, [(4,5)]).next)
  754. self.assertRaises(ValueError, takewhile(errfunc, [(4,5)]).next)
  755. t = takewhile(bool, [1, 1, 1, 0, 0, 0])
  756. self.assertEqual(list(t), [1, 1, 1])
  757. self.assertRaises(StopIteration, t.next)
  758. def test_dropwhile(self):
  759. data = [1, 3, 5, 20, 2, 4, 6, 8]
  760. underten = lambda x: x<10
  761. self.assertEqual(list(dropwhile(underten, data)), [20, 2, 4, 6, 8])
  762. self.assertEqual(list(dropwhile(underten, [])), [])
  763. self.assertRaises(TypeError, dropwhile)
  764. self.assertRaises(TypeError, dropwhile, operator.pow)
  765. self.assertRaises(TypeError, dropwhile, operator.pow, [(4,5)], 'extra')
  766. self.assertRaises(TypeError, dropwhile(10, [(4,5)]).next)
  767. self.assertRaises(ValueError, dropwhile(errfunc, [(4,5)]).next)
  768. def test_tee(self):
  769. n = 200
  770. def irange(n):
  771. for i in xrange(n):
  772. yield i
  773. a, b = tee([]) # test empty iterator
  774. self.assertEqual(list(a), [])
  775. self.assertEqual(list(b), [])
  776. a, b = tee(irange(n)) # test 100% interleaved
  777. self.assertEqual(zip(a,b), zip(range(n),range(n)))
  778. a, b = tee(irange(n)) # test 0% interleaved
  779. self.assertEqual(list(a), range(n))
  780. self.assertEqual(list(b), range(n))
  781. a, b = tee(irange(n)) # test dealloc of leading iterator
  782. for i in xrange(100):
  783. self.assertEqual(a.next(), i)
  784. del a
  785. self.assertEqual(list(b), range(n))
  786. a, b = tee(irange(n)) # test dealloc of trailing iterator
  787. for i in xrange(100):
  788. self.assertEqual(a.next(), i)
  789. del b
  790. self.assertEqual(list(a), range(100, n))
  791. for j in xrange(5): # test randomly interleaved
  792. order = [0]*n + [1]*n
  793. random.shuffle(order)
  794. lists = ([], [])
  795. its = tee(irange(n))
  796. for i in order:
  797. value = its[i].next()
  798. lists[i].append(value)
  799. self.assertEqual(lists[0], range(n))
  800. self.assertEqual(lists[1], range(n))
  801. # test argument format checking
  802. self.assertRaises(TypeError, tee)
  803. self.assertRaises(TypeError, tee, 3)
  804. self.assertRaises(TypeError, tee, [1,2], 'x')
  805. self.assertRaises(TypeError, tee, [1,2], 3, 'x')
  806. # tee object should be instantiable
  807. a, b = tee('abc')
  808. c = type(a)('def')
  809. self.assertEqual(list(c), list('def'))
  810. # test long-lagged and multi-way split
  811. a, b, c = tee(xrange(2000), 3)
  812. for i in xrange(100):
  813. self.assertEqual(a.next(), i)
  814. self.assertEqual(list(b), range(2000))
  815. self.assertEqual([c.next(), c.next()], range(2))
  816. self.assertEqual(list(a), range(100,2000))
  817. self.assertEqual(list(c), range(2,2000))
  818. # test values of n
  819. self.assertRaises(TypeError, tee, 'abc', 'invalid')
  820. self.assertRaises(ValueError, tee, [], -1)
  821. for n in xrange(5):
  822. result = tee('abc', n)
  823. self.assertEqual(type(result), tuple)
  824. self.assertEqual(len(result), n)
  825. self.assertEqual(map(list, result), [list('abc')]*n)
  826. # tee pass-through to copyable iterator
  827. a, b = tee('abc')
  828. c, d = tee(a)
  829. self.assertTrue(a is c)
  830. # test tee_new
  831. t1, t2 = tee('abc')
  832. tnew = type(t1)
  833. self.assertRaises(TypeError, tnew)
  834. self.assertRaises(TypeError, tnew, 10)
  835. t3 = tnew(t1)
  836. self.assertTrue(list(t1) == list(t2) == list(t3) == list('abc'))
  837. # test that tee objects are weak referencable
  838. a, b = tee(xrange(10))
  839. p = weakref.proxy(a)
  840. self.assertEqual(getattr(p, '__class__'), type(b))
  841. del a
  842. self.assertRaises(ReferenceError, getattr, p, '__class__')
  843. # Issue 13454: Crash when deleting backward iterator from tee()
  844. def test_tee_del_backward(self):
  845. forward, backward = tee(repeat(None, 20000000))
  846. try:
  847. any(forward) # exhaust the iterator
  848. del backward
  849. except:
  850. del forward, backward
  851. raise
  852. def test_StopIteration(self):
  853. self.assertRaises(StopIteration, izip().next)
  854. for f in (chain, cycle, izip, groupby):
  855. self.assertRaises(StopIteration, f([]).next)
  856. self.assertRaises(StopIteration, f(StopNow()).next)
  857. self.assertRaises(StopIteration, islice([], None).next)
  858. self.assertRaises(StopIteration, islice(StopNow(), None).next)
  859. p, q = tee([])
  860. self.assertRaises(StopIteration, p.next)
  861. self.assertRaises(StopIteration, q.next)
  862. p, q = tee(StopNow())
  863. self.assertRaises(StopIteration, p.next)
  864. self.assertRaises(StopIteration, q.next)
  865. self.assertRaises(StopIteration, repeat(None, 0).next)
  866. for f in (ifilter, ifilterfalse, imap, takewhile, dropwhile, starmap):
  867. self.assertRaises(StopIteration, f(lambda x:x, []).next)
  868. self.assertRaises(StopIteration, f(lambda x:x, StopNow()).next)
  869. class TestExamples(unittest.TestCase):
  870. def test_chain(self):
  871. self.assertEqual(''.join(chain('ABC', 'DEF')), 'ABCDEF')
  872. def test_chain_from_iterable(self):
  873. self.assertEqual(''.join(chain.from_iterable(['ABC', 'DEF'])), 'ABCDEF')
  874. def test_combinations(self):
  875. self.assertEqual(list(combinations('ABCD', 2)),
  876. [('A','B'), ('A','C'), ('A','D'), ('B','C'), ('B','D'), ('C','D')])
  877. self.assertEqual(list(combinations(range(4), 3)),
  878. [(0,1,2), (0,1,3), (0,2,3), (1,2,3)])
  879. def test_combinations_with_replacement(self):
  880. self.assertEqual(list(combinations_with_replacement('ABC', 2)),
  881. [('A','A'), ('A','B'), ('A','C'), ('B','B'), ('B','C'), ('C','C')])
  882. def test_compress(self):
  883. self.assertEqual(list(compress('ABCDEF', [1,0,1,0,1,1])), list('ACEF'))
  884. def test_count(self):
  885. self.assertEqual(list(islice(count(10), 5)), [10, 11, 12, 13, 14])
  886. def test_cycle(self):
  887. self.assertEqual(list(islice(cycle('ABCD'), 12)), list('ABCDABCDABCD'))
  888. def test_dropwhile(self):
  889. self.assertEqual(list(dropwhile(lambda x: x<5, [1,4,6,4,1])), [6,4,1])
  890. def test_groupby(self):
  891. self.assertEqual([k for k, g in groupby('AAAABBBCCDAABBB')],
  892. list('ABCDAB'))
  893. self.assertEqual([(list(g)) for k, g in groupby('AAAABBBCCD')],
  894. [list('AAAA'), list('BBB'), list('CC'), list('D')])
  895. def test_ifilter(self):
  896. self.assertEqual(list(ifilter(lambda x: x%2, range(10))), [1,3,5,7,9])
  897. def test_ifilterfalse(self):
  898. self.assertEqual(list(ifilterfalse(lambda x: x%2, range(10))), [0,2,4,6,8])
  899. def test_imap(self):
  900. self.assertEqual(list(imap(pow, (2,3,10), (5,2,3))), [32, 9, 1000])
  901. def test_islice(self):
  902. self.assertEqual(list(islice('ABCDEFG', 2)), list('AB'))
  903. self.assertEqual(list(islice('ABCDEFG', 2, 4)), list('CD'))
  904. self.assertEqual(list(islice('ABCDEFG', 2, None)), list('CDEFG'))
  905. self.assertEqual(list(islice('ABCDEFG', 0, None, 2)), list('ACEG'))
  906. def test_izip(self):
  907. self.assertEqual(list(izip('ABCD', 'xy')), [('A', 'x'), ('B', 'y')])
  908. def test_izip_longest(self):
  909. self.assertEqual(list(izip_longest('ABCD', 'xy', fillvalue='-')),
  910. [('A', 'x'), ('B', 'y'), ('C', '-'), ('D', '-')])
  911. def test_permutations(self):
  912. self.assertEqual(list(permutations('ABCD', 2)),
  913. map(tuple, 'AB AC AD BA BC BD CA CB CD DA DB DC'.split()))
  914. self.assertEqual(list(permutations(range(3))),
  915. [(0,1,2), (0,2,1), (1,0,2), (1,2,0), (2,0,1), (2,1,0)])
  916. def test_product(self):
  917. self.assertEqual(list(product('ABCD', 'xy')),
  918. map(tuple, 'Ax Ay Bx By Cx Cy Dx Dy'.split()))
  919. self.assertEqual(list(product(range(2), repeat=3)),
  920. [(0,0,0), (0,0,1), (0,1,0), (0,1,1),
  921. (1,0,0), (1,0,1), (1,1,0), (1,1,1)])
  922. def test_repeat(self):
  923. self.assertEqual(list(repeat(10, 3)), [10, 10, 10])
  924. def test_stapmap(self):
  925. self.assertEqual(list(starmap(pow, [(2,5), (3,2), (10,3)])),
  926. [32, 9, 1000])
  927. def test_takewhile(self):
  928. self.assertEqual(list(takewhile(lambda x: x<5, [1,4,6,4,1])), [1,4])
  929. class TestGC(unittest.TestCase):
  930. def makecycle(self, iterator, container):
  931. container.append(iterator)
  932. iterator.next()
  933. del container, iterator
  934. def test_chain(self):
  935. a = []
  936. self.makecycle(chain(a), a)
  937. def test_chain_from_iterable(self):
  938. a = []
  939. self.makecycle(chain.from_iterable([a]), a)
  940. def test_combinations(self):
  941. a = []
  942. self.makecycle(combinations([1,2,a,3], 3), a)
  943. def test_combinations_with_replacement(self):
  944. a = []
  945. self.makecycle(combinations_with_replacement([1,2,a,3], 3), a)
  946. def test_compress(self):
  947. a = []
  948. self.makecycle(compress('ABCDEF', [1,0,1,0,1,0]), a)
  949. def test_count(self):
  950. a = []
  951. Int = type('Int', (int,), dict(x=a))
  952. self.makecycle(count(Int(0), Int(1)), a)
  953. def test_cycle(self):
  954. a = []
  955. self.makecycle(cycle([a]*2), a)
  956. def test_dropwhile(self):
  957. a = []
  958. self.makecycle(dropwhile(bool, [0, a, a]), a)
  959. def test_groupby(self):
  960. a = []
  961. self.makecycle(groupby([a]*2, lambda x:x), a)
  962. def test_issue2246(self):
  963. # Issue 2246 -- the _grouper iterator was not included in GC
  964. n = 10
  965. keyfunc = lambda x: x
  966. for i, j in groupby(xrange(n), key=keyfunc):
  967. keyfunc.__dict__.setdefault('x',[]).append(j)
  968. def test_ifilter(self):
  969. a = []
  970. self.makecycle(ifilter(lambda x:True, [a]*2), a)
  971. def test_ifilterfalse(self):
  972. a = []
  973. self.makecycle(ifilterfalse(lambda x:False, a), a)
  974. def test_izip(self):
  975. a = []
  976. self.makecycle(izip([a]*2, [a]*3), a)
  977. def test_izip_longest(self):
  978. a = []
  979. self.makecycle(izip_longest([a]*2, [a]*3), a)
  980. b = [a, None]
  981. self.makecycle(izip_longest([a]*2, [a]*3, fillvalue=b), a)
  982. def test_imap(self):
  983. a = []
  984. self.makecycle(imap(lambda x:x, [a]*2), a)
  985. def test_islice(self):
  986. a = []
  987. self.makecycle(islice([a]*2, None), a)
  988. def test_permutations(self):
  989. a = []
  990. self.makecycle(permutations([1,2,a,3], 3), a)
  991. def test_product(self):
  992. a = []
  993. self.makecycle(product([1,2,a,3], repeat=3), a)
  994. def test_repeat(self):
  995. a = []
  996. self.makecycle(repeat(a), a)
  997. def test_starmap(self):
  998. a = []
  999. self.makecycle(starmap(lambda *t: t, [(a,a)]*2), a)
  1000. def test_takewhile(self):
  1001. a = []
  1002. self.makecycle(takewhile(bool, [1, 0, a, a]), a)
  1003. def R(seqn):
  1004. 'Regular generator'
  1005. for i in seqn:
  1006. yield i
  1007. class G:
  1008. 'Sequence using __getitem__'
  1009. def __init__(self, seqn):
  1010. self.seqn = seqn
  1011. def __getitem__(self, i):
  1012. return self.seqn[i]
  1013. class I:
  1014. 'Sequence using iterator protocol'
  1015. def __init__(self, seqn):
  1016. self.seqn = seqn
  1017. self.i = 0
  1018. def __iter__(self):
  1019. return self
  1020. def next(self):
  1021. if self.i >= len(self.seqn): raise StopIteration
  1022. v = self.seqn[self.i]
  1023. self.i += 1
  1024. return v
  1025. class Ig:
  1026. 'Sequence using iterator protocol defined with a generator'
  1027. def __init__(self, seqn):
  1028. self.seqn = seqn
  1029. self.i = 0
  1030. def __iter__(self):
  1031. for val in self.seqn:
  1032. yield val
  1033. class X:
  1034. 'Missing __getitem__ and __iter__'
  1035. def __init__(self, seqn):
  1036. self.seqn = seqn
  1037. self.i = 0
  1038. def next(self):
  1039. if self.i >= len(self.seqn): raise StopIteration
  1040. v = self.seqn[self.i]
  1041. self.i += 1
  1042. return v
  1043. class N:
  1044. 'Iterator missing next()'
  1045. def __init__(self, seqn):
  1046. self.seqn = seqn
  1047. self.i = 0
  1048. def __iter__(self):
  1049. return self
  1050. class E:
  1051. 'Test propagation of exceptions'
  1052. def __init__(self, seqn):
  1053. self.seqn = seqn
  1054. self.i = 0
  1055. def __iter__(self):
  1056. return self
  1057. def next(self):
  1058. 3 // 0
  1059. class S:
  1060. 'Test immediate stop'
  1061. def __init__(self, seqn):
  1062. pass
  1063. def __iter__(self):
  1064. return self
  1065. def next(self):
  1066. raise StopIteration
  1067. def L(seqn):
  1068. 'Test multiple tiers of iterators'
  1069. return chain(imap(lambda x:x, R(Ig(G(seqn)))))
  1070. class TestVariousIteratorArgs(unittest.TestCase):
  1071. def test_chain(self):
  1072. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1073. for g in (G, I, Ig, S, L, R):
  1074. self.assertEqual(list(chain(g(s))), list(g(s)))
  1075. self.assertEqual(list(chain(g(s), g(s))), list(g(s))+list(g(s)))
  1076. self.assertRaises(TypeError, list, chain(X(s)))
  1077. self.assertRaises(TypeError, list, chain(N(s)))
  1078. self.assertRaises(ZeroDivisionError, list, chain(E(s)))
  1079. def test_compress(self):
  1080. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1081. n = len(s)
  1082. for g in (G, I, Ig, S, L, R):
  1083. self.assertEqual(list(compress(g(s), repeat(1))), list(g(s)))
  1084. self.assertRaises(TypeError, compress, X(s), repeat(1))
  1085. self.assertRaises(TypeError, list, compress(N(s), repeat(1)))
  1086. self.assertRaises(ZeroDivisionError, list, compress(E(s), repeat(1)))
  1087. def test_product(self):
  1088. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1089. self.assertRaises(TypeError, product, X(s))
  1090. self.assertRaises(TypeError, product, N(s))
  1091. self.assertRaises(ZeroDivisionError, product, E(s))
  1092. def test_cycle(self):
  1093. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1094. for g in (G, I, Ig, S, L, R):
  1095. tgtlen = len(s) * 3
  1096. expected = list(g(s))*3
  1097. actual = list(islice(cycle(g(s)), tgtlen))
  1098. self.assertEqual(actual, expected)
  1099. self.assertRaises(TypeError, cycle, X(s))
  1100. self.assertRaises(TypeError, list, cycle(N(s)))
  1101. self.assertRaises(ZeroDivisionError, list, cycle(E(s)))
  1102. def test_groupby(self):
  1103. for s in (range(10), range(0), range(1000), (7,11), xrange(2000,2200,5)):
  1104. for g in (G, I, Ig, S, L, R):
  1105. self.assertEqual([k for k, sb in groupby(g(s))], list(g(s)))
  1106. self.assertRaises(TypeError, groupby, X(s))
  1107. self.assertRaises(TypeError, list, groupby(N(s)))
  1108. self.assertRaises(ZeroDivisionError, list, groupby(E(s)))
  1109. def test_ifilter(self):
  1110. for s in (range(10), range(0), range(1000), (7,11), xrange(2000,2200,5)):
  1111. for g in (G, I, Ig, S, L, R):
  1112. self.assertEqual(list(ifilter(isEven, g(s))), filter(isEven, g(s)))
  1113. self.assertRaises(TypeError, ifilter, isEven, X(s))
  1114. self.assertRaises(TypeError, list, ifilter(isEven, N(s)))
  1115. self.assertRaises(ZeroDivisionError, list, ifilter(isEven, E(s)))
  1116. def test_ifilterfalse(self):
  1117. for s in (range(10), range(0), range(1000), (7,11), xrange(2000,2200,5)):
  1118. for g in (G, I, Ig, S, L, R):
  1119. self.assertEqual(list(ifilterfalse(isEven, g(s))), filter(isOdd, g(s)))
  1120. self.assertRaises(TypeError, ifilterfalse, isEven, X(s))
  1121. self.assertRaises(TypeError, list, ifilterfalse(isEven, N(s)))
  1122. self.assertRaises(ZeroDivisionError, list, ifilterfalse(isEven, E(s)))
  1123. def test_izip(self):
  1124. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1125. for g in (G, I, Ig, S, L, R):
  1126. self.assertEqual(list(izip(g(s))), zip(g(s)))
  1127. self.assertEqual(list(izip(g(s), g(s))), zip(g(s), g(s)))
  1128. self.assertRaises(TypeError, izip, X(s))
  1129. self.assertRaises(TypeError, list, izip(N(s)))
  1130. self.assertRaises(ZeroDivisionError, list, izip(E(s)))
  1131. def test_iziplongest(self):
  1132. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1133. for g in (G, I, Ig, S, L, R):
  1134. self.assertEqual(list(izip_longest(g(s))), zip(g(s)))
  1135. self.assertEqual(list(izip_longest(g(s), g(s))), zip(g(s), g(s)))
  1136. self.assertRaises(TypeError, izip_longest, X(s))
  1137. self.assertRaises(TypeError, list, izip_longest(N(s)))
  1138. self.assertRaises(ZeroDivisionError, list, izip_longest(E(s)))
  1139. def test_imap(self):
  1140. for s in (range(10), range(0), range(100), (7,11), xrange(20,50,5)):
  1141. for g in (G, I, Ig, S, L, R):
  1142. self.assertEqual(list(imap(onearg, g(s))), map(onearg, g(s)))
  1143. self.assertEqual(list(imap(operator.pow, g(s), g(s))), map(operator.pow, g(s), g(s)))
  1144. self.assertRaises(TypeError, imap, onearg, X(s))
  1145. self.assertRaises(TypeError, list, imap(onearg, N(s)))
  1146. self.assertRaises(ZeroDivisionError, list, imap(onearg, E(s)))
  1147. def test_islice(self):
  1148. for s in ("12345", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1149. for g in (G, I, Ig, S, L, R):
  1150. self.assertEqual(list(islice(g(s),1,None,2)), list(g(s))[1::2])
  1151. self.assertRaises(TypeError, islice, X(s), 10)
  1152. self.assertRaises(TypeError, list, islice(N(s), 10))
  1153. self.assertRaises(ZeroDivisionError, list, islice(E(s), 10))
  1154. def test_starmap(self):
  1155. for s in (range(10), range(0), range(100), (7,11), xrange(20,50,5)):
  1156. for g in (G, I, Ig, S, L, R):
  1157. ss = zip(s, s)
  1158. self.assertEqual(list(starmap(operator.pow, g(ss))), map(operator.pow, g(s), g(s)))
  1159. self.assertRaises(TypeError, starmap, operator.pow, X(ss))
  1160. self.assertRaises(TypeError, list, starmap(operator.pow, N(ss)))
  1161. self.assertRaises(ZeroDivisionError, list, starmap(operator.pow, E(ss)))
  1162. def test_takewhile(self):
  1163. for s in (range(10), range(0), range(1000), (7,11), xrange(2000,2200,5)):
  1164. for g in (G, I, Ig, S, L, R):
  1165. tgt = []
  1166. for elem in g(s):
  1167. if not isEven(elem): break
  1168. tgt.append(elem)
  1169. self.assertEqual(list(takewhile(isEven, g(s))), tgt)
  1170. self.assertRaises(TypeError, takewhile, isEven, X(s))
  1171. self.assertRaises(TypeError, list, takewhile(isEven, N(s)))
  1172. self.assertRaises(ZeroDivisionError, list, takewhile(isEven, E(s)))
  1173. def test_dropwhile(self):
  1174. for s in (range(10), range(0), range(1000), (7,11), xrange(2000,2200,5)):
  1175. for g in (G, I, Ig, S, L, R):
  1176. tgt = []
  1177. for elem in g(s):
  1178. if not tgt and isOdd(elem): continue
  1179. tgt.append(elem)
  1180. self.assertEqual(list(dropwhile(isOdd, g(s))), tgt)
  1181. self.assertRaises(TypeError, dropwhile, isOdd, X(s))
  1182. self.assertRaises(TypeError, list, dropwhile(isOdd, N(s)))
  1183. self.assertRaises(ZeroDivisionError, list, dropwhile(isOdd, E(s)))
  1184. def test_tee(self):
  1185. for s in ("123", "", range(1000), ('do', 1.2), xrange(2000,2200,5)):
  1186. for g in (G, I, Ig, S, L, R):
  1187. it1, it2 = tee(g(s))
  1188. self.assertEqual(list(it1), list(g(s)))
  1189. self.assertEqual(list(it2), list(g(s)))
  1190. self.assertRaises(TypeError, tee, X(s))
  1191. self.assertRaises(TypeError, list, tee(N(s))[0])
  1192. self.assertRaises(ZeroDivisionError, list, tee(E(s))[0])
  1193. class LengthTransparency(unittest.TestCase):
  1194. def test_repeat(self):
  1195. from test.test_iterlen import len
  1196. self.assertEqual(len(repeat(None, 50)), 50)
  1197. self.assertRaises(TypeError, len, repeat(None))
  1198. class RegressionTests(unittest.TestCase):
  1199. def test_sf_793826(self):
  1200. # Fix Armin Rigo's successful efforts to wreak havoc
  1201. def mutatingtuple(tuple1, f, tuple2):
  1202. # this builds a tuple t which is a copy of tuple1,
  1203. # then calls f(t), then mutates t to be equal to tuple2
  1204. # (needs len(tuple1) == len(tuple2)).
  1205. def g(value, first=[1]):
  1206. if first:
  1207. del first[:]
  1208. f(z.next())
  1209. return value
  1210. items = list(tuple2)
  1211. items[1:1] = list(tuple1)
  1212. gen = imap(g, items)
  1213. z = izip(*[gen]*len(tuple1))
  1214. z.next()
  1215. def f(t):
  1216. global T
  1217. T = t
  1218. first[:] = list(T)
  1219. first = []
  1220. mutatingtuple((1,2,3), f, (4,5,6))
  1221. second = list(T)
  1222. self.assertEqual(first, second)
  1223. def test_sf_950057(self):
  1224. # Make sure that chain() and cycle() catch exceptions immediately
  1225. # rather than when shifting between input sources
  1226. def gen1():
  1227. hist.append(0)
  1228. yield 1
  1229. hist.append(1)
  1230. raise AssertionError
  1231. hist.append(2)
  1232. def gen2(x):
  1233. hist.append(3)
  1234. yield 2
  1235. hist.append(4)
  1236. if x:
  1237. raise StopIteration
  1238. hist = []
  1239. self.assertRaises(AssertionError, list, chain(gen1(), gen2(False)))
  1240. self.assertEqual(hist, [0,1])
  1241. hist = []
  1242. self.assertRaises(AssertionError, list, chain(gen1(), gen2(True)))
  1243. self.assertEqual(hist, [0,1])
  1244. hist = []
  1245. self.assertRaises(AssertionError, list, cycle(gen1()))
  1246. self.assertEqual(hist, [0,1])
  1247. class SubclassWithKwargsTest(unittest.TestCase):
  1248. def test_keywords_in_subclass(self):
  1249. # count is not subclassable...
  1250. for cls in (repeat, izip, ifilter, ifilterfalse, chain, imap,
  1251. starmap, islice, takewhile, dropwhile, cycle, compress):
  1252. class Subclass(cls):
  1253. def __init__(self, newarg=None, *args):
  1254. cls.__init__(self, *args)
  1255. try:
  1256. Subclass(newarg=1)
  1257. except TypeError, err:
  1258. # we expect type errors because of wrong argument count
  1259. self.assertNotIn("does not take keyword arguments", err.args[0])
  1260. libreftest = """ Doctest for examples in the library reference: libitertools.tex
  1261. >>> amounts = [120.15, 764.05, 823.14]
  1262. >>> for checknum, amount in izip(count(1200), amounts):
  1263. ... print 'Check %d is for $%.2f' % (checknum, amount)
  1264. ...
  1265. Check 1200 is for $120.15
  1266. Check 1201 is for $764.05
  1267. Check 1202 is for $823.14
  1268. >>> import operator
  1269. >>> for cube in imap(operator.pow, xrange(1,4), repeat(3)):
  1270. ... print cube
  1271. ...
  1272. 1
  1273. 8
  1274. 27
  1275. >>> reportlines = ['EuroPython', 'Roster', '', 'alex', '', 'laura', '', 'martin', '', 'walter', '', 'samuele']
  1276. >>> for name in islice(reportlines, 3, None, 2):
  1277. ... print name.title()
  1278. ...
  1279. Alex
  1280. Laura
  1281. Martin
  1282. Walter
  1283. Samuele
  1284. >>> from operator import itemgetter
  1285. >>> d = dict(a=1, b=2, c=1, d=2, e=1, f=2, g=3)
  1286. >>> di = sorted(sorted(d.iteritems()), key=itemgetter(1))
  1287. >>> for k, g in groupby(di, itemgetter(1)):
  1288. ... print k, map(itemgetter(0), g)
  1289. ...
  1290. 1 ['a', 'c', 'e']
  1291. 2 ['b', 'd', 'f']
  1292. 3 ['g']
  1293. # Find runs of consecutive numbers using groupby. The key to the solution
  1294. # is differencing with a range so that consecutive numbers all appear in
  1295. # same group.
  1296. >>> data = [ 1, 4,5,6, 10, 15,16,17,18, 22, 25,26,27,28]
  1297. >>> for k, g in groupby(enumerate(data), lambda t:t[0]-t[1]):
  1298. ... print map(operator.itemgetter(1), g)
  1299. ...
  1300. [1]
  1301. [4, 5, 6]
  1302. [10]
  1303. [15, 16, 17, 18]
  1304. [22]
  1305. [25, 26, 27, 28]
  1306. >>> def take(n, iterable):
  1307. ... "Return first n items of the iterable as a list"
  1308. ... return list(islice(iterable, n))
  1309. >>> def enumerate(iterable, start=0):
  1310. ... return izip(count(start), iterable)
  1311. >>> def tabulate(function, start=0):
  1312. ... "Return function(0), function(1), ..."
  1313. ... return imap(function, count(start))
  1314. >>> def nth(iterable, n, default=None):
  1315. ... "Returns the nth item or a default value"
  1316. ... return next(islice(iterable, n, None), default)
  1317. >>> def all_equal(iterable):
  1318. ... "Returns True if all the elements are equal to each other"
  1319. ... g = groupby(iterable)
  1320. ... return next(g, True) and not next(g, False)
  1321. >>> def quantify(iterable, pred=bool):
  1322. ... "Count how many times the predicate is true"
  1323. ... return sum(imap(pred, iterable))
  1324. >>> def padnone(iterable):
  1325. ... "Returns the sequence elements and then returns None indefinitely"
  1326. ... return chain(iterable, repeat(None))
  1327. >>> def ncycles(iterable, n):
  1328. ... "Returns the sequence elements n times"
  1329. ... return chain(*repeat(iterable, n))
  1330. >>> def dotproduct(vec1, vec2):
  1331. ... return sum(imap(operator.mul, vec1, vec2))
  1332. >>> def flatten(listOfLists):
  1333. ... return list(chain.from_iterable(listOfLists))
  1334. >>> def repeatfunc(func, times=None, *args):
  1335. ... "Repeat calls to func with specified arguments."
  1336. ... " Example: repeatfunc(random.random)"
  1337. ... if times is None:
  1338. ... return starmap(func, repeat(args))
  1339. ... else:
  1340. ... return starmap(func, repeat(args, times))
  1341. >>> def pairwise(iterable):
  1342. ... "s -> (s0,s1), (s1,s2), (s2, s3), ..."
  1343. ... a, b = tee(iterable)
  1344. ... for elem in b:
  1345. ... break
  1346. ... return izip(a, b)
  1347. >>> def grouper(n, iterable, fillvalue=None):
  1348. ... "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
  1349. ... args = [iter(iterable)] * n
  1350. ... return izip_longest(fillvalue=fillvalue, *args)
  1351. >>> def roundrobin(*iterables):
  1352. ... "roundrobin('ABC', 'D', 'EF') --> A D E B F C"
  1353. ... # Recipe credited to George Sakkis
  1354. ... pending = len(iterables)
  1355. ... nexts = cycle(iter(it).next for it in iterables)
  1356. ... while pending:
  1357. ... try:
  1358. ... for next in nexts:
  1359. ... yield next()
  1360. ... except StopIteration:
  1361. ... pending -= 1
  1362. ... nexts = cycle(islice(nexts, pending))
  1363. >>> def powerset(iterable):
  1364. ... "powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)"
  1365. ... s = list(iterable)
  1366. ... return chain.from_iterable(combinations(s, r) for r in range(len(s)+1))
  1367. >>> def unique_everseen(iterable, key=None):
  1368. ... "List unique elements, preserving order. Remember all elements ever seen."
  1369. ... # unique_everseen('AAAABBBCCDAABBB') --> A B C D
  1370. ... # unique_everseen('ABBCcAD', str.lower) --> A B C D
  1371. ... seen = set()
  1372. ... seen_add = seen.add
  1373. ... if key is None:
  1374. ... for element in iterable:
  1375. ... if element not in seen:
  1376. ... seen_add(element)
  1377. ... yield element
  1378. ... else:
  1379. ... for element in iterable:
  1380. ... k = key(element)
  1381. ... if k not in seen:
  1382. ... seen_add(k)
  1383. ... yield element
  1384. >>> def unique_justseen(iterable, key=None):
  1385. ... "List unique elements, preserving order. Remember only the element just seen."
  1386. ... # unique_justseen('AAAABBBCCDAABBB') --> A B C D A B
  1387. ... # unique_justseen('ABBCcAD', str.lower) --> A B C A D
  1388. ... return imap(next, imap(itemgetter(1), groupby(iterable, key)))
  1389. This is not part of the examples but it tests to make sure the definitions
  1390. perform as purported.
  1391. >>> take(10, count())
  1392. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  1393. >>> list(enumerate('abc'))
  1394. [(0, 'a'), (1, 'b'), (2, 'c')]
  1395. >>> list(islice(tabulate(lambda x: 2*x), 4))
  1396. [0, 2, 4, 6]
  1397. >>> nth('abcde', 3)
  1398. 'd'
  1399. >>> nth('abcde', 9) is None
  1400. True
  1401. >>> [all_equal(s) for s in ('', 'A', 'AAAA', 'AAAB', 'AAABA')]
  1402. [True, True, True, False, False]
  1403. >>> quantify(xrange(99), lambda x: x%2==0)
  1404. 50
  1405. >>> a = [[1, 2, 3], [4, 5, 6]]
  1406. >>> flatten(a)
  1407. [1, 2, 3, 4, 5, 6]
  1408. >>> list(repeatfunc(pow, 5, 2, 3))
  1409. [8, 8, 8, 8, 8]
  1410. >>> import random
  1411. >>> take(5, imap(int, repeatfunc(random.random)))
  1412. [0, 0, 0, 0, 0]
  1413. >>> list(pairwise('abcd'))
  1414. [('a', 'b'), ('b', 'c'), ('c', 'd')]
  1415. >>> list(pairwise([]))
  1416. []
  1417. >>> list(pairwise('a'))
  1418. []
  1419. >>> list(islice(padnone('abc'), 0, 6))
  1420. ['a', 'b', 'c', None, None, None]
  1421. >>> list(ncycles('abc', 3))
  1422. ['a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c']
  1423. >>> dotproduct([1,2,3], [4,5,6])
  1424. 32
  1425. >>> list(grouper(3, 'abcdefg', 'x'))
  1426. [('a', 'b', 'c'), ('d', 'e', 'f'), ('g', 'x', 'x')]
  1427. >>> list(roundrobin('abc', 'd', 'ef'))
  1428. ['a', 'd', 'e', 'b', 'f', 'c']
  1429. >>> list(powerset([1,2,3]))
  1430. [(), (1,), (2,), (3,), (1, 2), (1, 3), (2, 3), (1, 2, 3)]
  1431. >>> all(len(list(powerset(range(n)))) == 2**n for n in range(18))
  1432. True
  1433. >>> list(powerset('abcde')) == sorted(sorted(set(powerset('abcde'))), key=len)
  1434. True
  1435. >>> list(unique_everseen('AAAABBBCCDAABBB'))
  1436. ['A', 'B', 'C', 'D']
  1437. >>> list(unique_everseen('ABBCcAD', str.lower))
  1438. ['A', 'B', 'C', 'D']
  1439. >>> list(unique_justseen('AAAABBBCCDAABBB'))
  1440. ['A', 'B', 'C', 'D', 'A', 'B']
  1441. >>> list(unique_justseen('ABBCcAD', str.lower))
  1442. ['A', 'B', 'C', 'A', 'D']
  1443. """
  1444. __test__ = {'libreftest' : libreftest}
  1445. def test_main(verbose=None):
  1446. test_classes = (TestBasicOps, TestVariousIteratorArgs, TestGC,
  1447. RegressionTests, LengthTransparency,
  1448. SubclassWithKwargsTest, TestExamples)
  1449. test_support.run_unittest(*test_classes)
  1450. # verify reference counting
  1451. if verbose and hasattr(sys, "gettotalrefcount"):
  1452. import gc
  1453. counts = [None] * 5
  1454. for i in xrange(len(counts)):
  1455. test_support.run_unittest(*test_classes)
  1456. gc.collect()
  1457. counts[i] = sys.gettotalrefcount()
  1458. print counts
  1459. # doctest the examples in the library reference
  1460. test_support.run_doctest(sys.modules[__name__], verbose)
  1461. if __name__ == "__main__":
  1462. test_main(verbose=True)