1. 0d62a06 Patch #1531113: Fix augmented assignment with yield expressions. by Neal Norwitz · 18 years ago
  2. ddbaa66 Patch #1346214: correctly optimize away "if 0"-style stmts by Georg Brandl · 18 years ago
  3. b8f81d4 Add missing DECREF to PyErr_WriteUnraisable(). That function reports by Thomas Wouters · 18 years ago
  4. 60eab2b Consolidate 'leak_test1' and 'refleaks_tests', since they both test for the by Thomas Wouters · 18 years ago
  5. b3deb94 Add missing PyObject_GC_Track call, causing *some* itertools.tee objects to by Thomas Wouters · 18 years ago
  6. 7f09811 Changed comments to make sense now that the LazyList-based by Tim Peters · 18 years ago
  7. 8ebb28d Fix SF#1470508: crash in generator cycle finalization. There were two by Phillip J. Eby · 18 years ago
  8. cde8750 Move the old test_generator_cycle.py which leaked but was removed into the test by Neal Norwitz · 18 years ago
  9. a6126ba Fix the reference leak in test_generators, by explicitly breaking the cycle by Thomas Wouters · 18 years ago
  10. 4054b97 In true regression-test spirit, make sure the by Thomas Wouters · 18 years ago
  11. bee0712 Support throw() of string exceptions. by Phillip J. Eby · 18 years ago
  12. 536cf99 Whitespace normalization. by Tim Peters · 19 years ago
  13. fcf4435 Improve test coverage. Hope the test_file changes work the same on windows. by Neal Norwitz · 19 years ago
  14. ebc3457 Revert previous checkin: by Neal Norwitz · 19 years ago
  15. f21c8ed Add comment lost from AST merge by Neal Norwitz · 19 years ago
  16. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  17. 9e34c04 Whitespace normalization (via reindent.py). by Tim Peters · 19 years ago
  18. 52715f6 [ 1113421 ] New tutorial tests in test_generators.py by Georg Brandl · 19 years ago
  19. e9fe7e0 Whitespace normalization (ran reindent.py over the whole tree). by Tim Peters · 19 years ago
  20. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  21. c568478 DocTestFinder._find(): for tests derived from a module __test__ global, by Tim Peters · 20 years ago
  22. cca0183 Removed old "if 0:" block for leak detection; wouldn't work anymore anyway. by Tim Peters · 20 years ago
  23. aef8cfa Don't really need ellipsis doctests for the syntax errors, because by Tim Peters · 20 years ago
  24. 77dcccc Fixed 6 failures due to doctest changes. by Tim Peters · 20 years ago
  25. 103d26e Fixed doctest error (wrong prompts) by Edward Loper · 20 years ago
  26. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  27. dd24a9f This test depends on the exact ordering produced by the WichmannHill by Raymond Hettinger · 22 years ago
  28. 56d1266 Add tests for weakref support for generator-iterators. by Fred Drake · 22 years ago
  29. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  30. c411dba Whitespace normalization. by Tim Peters · 22 years ago
  31. c5fe5eb SF bug 567538: Generator can crash the interpreter (Finn Bock). by Guido van Rossum · 22 years ago
  32. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  33. 496563a Remove some now-obsolete generator future statements. by Tim Peters · 22 years ago
  34. d674e17 SF patch 499062: Minor typo in test_generators.py. by Tim Peters · 22 years ago
  35. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  36. a0a6222 Teach regrtest how to pass on doctest failure msgs. This is done via a by Tim Peters · 23 years ago
  37. 5d2b77c Make dir() wordier (see the new docstring). The new behavior is a mixed by Tim Peters · 23 years ago
  38. 297abad The change of type(None).__name__ from 'None' to 'NoneType' broke this by Guido van Rossum · 23 years ago
  39. e561463 Move one of the tests into the "PEP 255" section, to reflect a change in by Tim Peters · 23 years ago
  40. 61cf780 The message accompanying the TypeError exception on a readonly by Guido van Rossum · 23 years ago
  41. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  42. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  43. 9a8c8e2 Having fun on my own time: quicker flat_conjoin; Knights Tour solver by Tim Peters · 23 years ago
  44. a1d5455 Remove the last remnants of the hacks to worm around leaks. by Tim Peters · 23 years ago
  45. 3446365 Repair flawed example. by Tim Peters · 23 years ago
  46. c4889c4 Remove now-unnecessary "from __future__ import nested_scopes" stmts. by Tim Peters · 23 years ago
  47. b20e9db Remove reference cycle breaking code. The GC now takes care of it. by Neil Schemenauer · 23 years ago
  48. 3156956 Added a non-recursive implementation of conjoin(), and a Knight's Tour by unknown · 23 years ago
  49. 3530266 A clever union-find implementation from c.l.py, due to David Eppstein. by Tim Peters · 23 years ago
  50. c468fd2 Derive an industrial-strength conjoin() via cross-recursion loop unrolling, by Tim Peters · 23 years ago
  51. be4f0a7 Added a simple but general backtracking generator (conjoin), and a couple by Tim Peters · 23 years ago
  52. 08a898f Another "if 0:" hack, this time to complain about otherwise invisible by Tim Peters · 23 years ago
  53. f6ed074 This no longer leaks memory when run in an infinite loop. However, by Tim Peters · 23 years ago
  54. e77f2e2 gen_getattr: make the gi_running and gi_frame members discoverable (but by Tim Peters · 23 years ago
  55. b6c3cea SF bug #436207: "if 0: yield x" is ignored. by Tim Peters · 23 years ago
  56. 3e7b1a0 Teach the types module about generators. Thanks to James Althoff on the by Tim Peters · 23 years ago
  57. 2106ef0 Repair indentation in comment. by Tim Peters · 23 years ago
  58. b2bc6a9 Added a "generate k-combinations of a list" example posted to c.l.py. by Tim Peters · 23 years ago
  59. ea2e97a New tests to provoke SyntaxErrors unique to generators. Minor fiddling by Tim Peters · 23 years ago
  60. ee30927 Another variant of the 2-3-5 test, mixing generators with a LazyList class. by Tim Peters · 23 years ago
  61. b9e9ff1 More tests. by Tim Peters · 23 years ago
  62. 0f9da0a Add a recursive Sieve of Eratosthenes prime generator. Not practical, by Tim Peters · 23 years ago
  63. 6ba5f79 Add all the examples from PEP 255, and a few email examples. by Tim Peters · 23 years ago
  64. 1def351 New std test for generators, initially populated with doctests NeilS put by Tim Peters · 23 years ago