1. 80f0ed5 allow keyword args to be passed in after *args #3473 by Benjamin Peterson · 17 years ago
  2. a161f60 Forward-port new test from r64300. by Georg Brandl · 17 years ago
  3. d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
  4. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  5. 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 18 years ago
  6. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 18 years ago
  7. 6290305 Backport PEP 3110's new 'except' syntax to 2.6. by Collin Winter · 18 years ago
  8. 85dbec6 Bug #1588287: fix invalid assertion for `1,2` in debug builds. by Neal Norwitz · 19 years ago
  9. abd8a33 Whitespace normalization. by Tim Peters · 19 years ago
  10. facd273 Test assert if __debug__ is true. by Georg Brandl · 19 years ago
  11. b21e081 make test_grammar pass with python -O by Georg Brandl · 19 years ago
  12. c6fdec6 Convert test_global, test_scope and test_grammar to unittest. by Georg Brandl · 19 years ago
  13. dac090d Bug #1520864 (again): unpacking singleton tuples in list comprehensions and by Neal Norwitz · 19 years ago
  14. edef2be Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again. by Neal Norwitz · 19 years ago
  15. ced6cdd Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test by Thomas Wouters · 19 years ago
  16. 33b730e Fix SF bug #1458903 with AST compiler. by Neal Norwitz · 19 years ago
  17. 03bdedd Update comments by Neal Norwitz · 19 years ago
  18. 7b03bad Test case to cover subscription bug from SF 1333982 by Jeremy Hylton · 19 years ago
  19. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 19 years ago
  20. f8d403d SF #1377897, Bus error in ast by Neal Norwitz · 20 years ago
  21. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  22. 4ebc7e3 Add test for ``class B1(): pass``. by Brett Cannon · 20 years ago
  23. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 21 years ago
  24. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 21 years ago
  25. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  26. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 22 years ago
  27. f545baa Whitespace normalization. by Tim Peters · 22 years ago
  28. 4d508ad Fix for SF [ 734869 ] Lambda functions in list comprehensions by Jeremy Hylton · 22 years ago
  29. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  30. f0253f2 Restore the hex/oct constant tests that Barry commented out for fear by Guido van Rossum · 23 years ago
  31. 18bd112 Fixed three exceptions in the Plain integers test, although I'm not by Barry Warsaw · 23 years ago
  32. 266e6b1 Quite down some FutureWarnings. by Barry Warsaw · 23 years ago
  33. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
  34. 4ab7adb The initial patch #468662 was not applied quite verbatim. This should one by Finn Bock · 24 years ago
  35. 7d3dff2 SF patch [ #468662 ] Allow jython to complete test_grammar by Jeremy Hylton · 24 years ago
  36. 80d373c Test case for SF bugs #463359 and #462937, added to test_grammar for lack of by Thomas Wouters · 24 years ago
  37. dbb718f Make these modules work when Python is compiled without Unicode support. by Guido van Rossum · 24 years ago
  38. 9f44815 Fix another test still expecting overflow on big int literals. by Tim Peters · 24 years ago
  39. e241e29 Add test for a list comprehension that is nested in the left-hand part by Jeremy Hylton · 24 years ago
  40. 2922ea8 Add test case for global stmt at module level. by Jeremy Hylton · 24 years ago
  41. f828e2d Add simple section for assert, including assert w/ lambdas by Jeremy Hylton · 24 years ago
  42. 4779399 Add test for syntax error on "x = 1 + 1". by Jeremy Hylton · 24 years ago
  43. 97a0167 update test cases for recent compiler changes: exec/import * in nested by Jeremy Hylton · 24 years ago
  44. 10fb386 Whitespace normalization. by Tim Peters · 24 years ago
  45. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 25 years ago
  46. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 25 years ago
  47. ac25a38 add test for illegal imports by Jeremy Hylton · 25 years ago
  48. 619eea6 PEP 227 implementation by Jeremy Hylton · 25 years ago
  49. 92e9f29 add extra tests to verify that co_varnames is being set up properly by Jeremy Hylton · 25 years ago
  50. 578ceee Add simple test of list comprehension that uses a name that isn't by Jeremy Hylton · 25 years ago
  51. e1bb5f9 make error msg more informative when test of exec fails by Jeremy Hylton · 25 years ago
  52. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 25 years ago
  53. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 25 years ago
  54. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 25 years ago
  55. 7e3e1c1 Added test cases for extended printing to an instance. This picked up by Barry Warsaw · 25 years ago
  56. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 25 years ago
  57. 9182b45 Added tests of "print >> None" by Barry Warsaw · 25 years ago
  58. 46dfa5f require list comprehensions to start with a for clause by Skip Montanaro · 25 years ago
  59. efc92ee PEP 214, Extended print Statement, has been accepted by the BDFL. by Barry Warsaw · 25 years ago
  60. 803d6e5 list comprehensions. see by Skip Montanaro · 25 years ago
  61. aed0d8d add test cases for Greg Ewing's extended call syntax patch by Jeremy Hylton · 25 years ago
  62. 505043f No need to define assert, it's built in. by Guido van Rossum · 28 years ago
  63. 51b1c1c avoid math, don't abort when overflow check fails by Guido van Rossum · 30 years ago
  64. 1f97612 Fix exec test so presence of __builtins__ doesn't break it by Guido van Rossum · 31 years ago
  65. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 31 years ago
  66. dd8cb44 Some minute changes. by Guido van Rossum · 32 years ago
  67. b31c7f7 * test_select.py: (some) tests for built-in select module by Guido van Rossum · 32 years ago
  68. e65cce5 * string.py: added rindex(), rfind(); changed index() to interpret by Guido van Rossum · 32 years ago
  69. b3b09c9 added builtin b/w compat module. changed testing of exec. by Guido van Rossum · 32 years ago
  70. 85f1820 Added some new tests and two new files for testing: test_types.py by Guido van Rossum · 33 years ago
  71. 33693ea '+' no longer accepted for varargs list by Guido van Rossum · 33 years ago
  72. 627efd9 Some weird forms of try statements are no longer allowed. by Guido van Rossum · 33 years ago
  73. 3bead09 Initial revision by Guido van Rossum · 34 years ago