1. 31f5929 Issue #10990: Prevent tests from clobbering a set trace function. by Brett Cannon · 13 years ago
  2. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  3. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  4. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  5. dfa9b29 Use the "if 1:" prefix so that quoted code appears nicely by Amaury Forgeot d'Arc · 14 years ago
  6. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  7. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  8. 9b86b9a Merged revisions 79100 via svnmerge from by Florent Xicluna · 14 years ago
  9. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  10. 6f82818 Merged revisions 73683,73786 via svnmerge from by Alexandre Vassalotti · 15 years ago
  11. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  12. f37708e Merged revisions 70801,70809 via svnmerge from by Jeremy Hylton · 15 years ago
  13. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  14. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  15. 18c6689 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60873 via svnmerge from by Christian Heimes · 16 years ago
  16. e670bd4 fix #1409: cell variables were not initialized, by Amaury Forgeot d'Arc · 17 years ago
  17. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  18. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  19. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  20. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  21. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  22. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  23. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  24. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  25. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  26. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  27. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  28. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  29. d403c45 Fix arigo's funky LOAD_NAME bug: implicit globals inside classes have by Neil Schemenauer · 19 years ago
  30. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  31. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  32. 954aed8 Add test for eval() w/ free variables. by Jeremy Hylton · 22 years ago
  33. 290d31e SF #506611, fix sys.setprofile(), sys.settrace() core dumps by Neal Norwitz · 22 years ago
  34. 796e1e0 Don't call resetwarnings(). Be more restrictive in what we filter out instead. by Guido van Rossum · 23 years ago
  35. f36cfef Undo inadvertent change to test_scope in previous checkin by Jeremy Hylton · 23 years ago
  36. ccae8377 Add test for SF bug [ #492403 ] exec() segfaults on closure's func_code by Jeremy Hylton · 23 years ago
  37. cf672f1 Add test for local assigned to only in a nested list comp by Jeremy Hylton · 23 years ago
  38. d48004f test_support should be imported directly, not via test.test_support. by Tim Peters · 23 years ago
  39. cd73836 silence warnings about import * by Jeremy Hylton · 23 years ago
  40. 5121e7d Fix for SF bug [ #443866 ] Evaluating func_code causing core dump by Jeremy Hylton · 23 years ago
  41. c4889c4 Remove now-unnecessary "from __future__ import nested_scopes" stmts. by Tim Peters · 23 years ago
  42. 4c88901 SF patch 419176 from MvL; fixed bug 418977 by Jeremy Hylton · 23 years ago
  43. ddc4fd0 Fix 2.1 nested scopes crash reported by Evan Simpson by Jeremy Hylton · 23 years ago
  44. c76770c Change error message raised when free variable is not yet bound. It by Jeremy Hylton · 23 years ago
  45. 5c7a251 Add tests for recent changes: by Jeremy Hylton · 23 years ago
  46. 30edd23 Whitespace normalization. by Tim Peters · 23 years ago
  47. 5b44a67 Add test to verify that nested functions with free variables don't by Jeremy Hylton · 23 years ago
  48. 9aa643c Test interaction of global and nested scopes -- thanks to Samuele Pedroni. by Guido van Rossum · 23 years ago
  49. 5941d19 add from __future__ import nested_scopes to strings passed to compile by Jeremy Hylton · 23 years ago
  50. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 23 years ago
  51. 4779399 Add test for syntax error on "x = 1 + 1". by Jeremy Hylton · 23 years ago
  52. 0e6d213 Whitespace normalization. by Tim Peters · 23 years ago
  53. 97a0167 update test cases for recent compiler changes: exec/import * in nested by Jeremy Hylton · 23 years ago
  54. 10fb386 Whitespace normalization. by Tim Peters · 23 years ago
  55. de60248 Fix test 9 (caught by ?!ng) Add tests for unbound locals (Nick Mathewson) by Jeremy Hylton · 24 years ago
  56. 251ef96 Fix test for free ref to global. This test should have caught a by Jeremy Hylton · 24 years ago
  57. 4588c78 PEP 227 implementation by Jeremy Hylton · 24 years ago