1. fa0cf4f Add support for absolute/relative imports and if/else expressions: by Thomas Wouters · 18 years ago
  2. 4954b38 Fix mismatch opening and closing quotes on a string. by Brett Cannon · 18 years ago
  3. 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 18 years ago
  4. d9bfeac Reformat the exception message by going through a list. by Martin v. Löwis · 18 years ago
  5. 5ddfe41 Whitespace normalization. by Tim Peters · 18 years ago
  6. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  7. 15bfc3b Make failures in test cases print failing source file. by Martin v. Löwis · 18 years ago
  8. a9f0687 Fix a bug in nested() - if one of the sub-context-managers swallows the by Guido van Rossum · 18 years ago
  9. 1a57296 Set svn:eol-style to native. by Tim Peters · 18 years ago
  10. 6b4ed74 Fix parsing of exception_hierarchy.txt when a platform-specific exception is by Brett Cannon · 18 years ago
  11. 7c187bc Remove redundant isinstance() check. by Thomas Wouters · 18 years ago
  12. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  13. 1f1c16a Regenerate. by Thomas Wouters · 18 years ago
  14. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  15. cd8ca80 Add a note about removing the file once the bug is fixed by Neal Norwitz · 18 years ago
  16. 9193491 Make __future__ features similar for with and absolute import since they were both added before a1 by Neal Norwitz · 18 years ago
  17. dfc2404 Gave README a .txt extension. by Tim Peters · 18 years ago
  18. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  19. edc8f13 Add directory which contains known ref leaks. Some of these are likely to be system dependent (like test_gestalt). by Neal Norwitz · 18 years ago
  20. 400cbc3 Set EOL style to native. by Tim Peters · 18 years ago
  21. 710ab3b Whitespace normalization. by Tim Peters · 18 years ago
  22. 14ca327 Instead of printing the exception when you interrupt a test (Ctrl-C), by Neal Norwitz · 18 years ago
  23. 03bdedd Update comments by Neal Norwitz · 18 years ago
  24. 7b03bad Test case to cover subscription bug from SF 1333982 by Jeremy Hylton · 18 years ago
  25. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  26. baf3eb2 Forgot to explain the effect of the new opcode. by Guido van Rossum · 18 years ago
  27. 7ad94f0 Update the compiler package to compile the with-statement. by Guido van Rossum · 18 years ago
  28. 0023a2f Finish removal of CO_GENERATOR_ALLOWED. by Neal Norwitz · 18 years ago
  29. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  30. 9aaad88 Even though we don't currently use unicode or complex numbers in the test, by Neal Norwitz · 18 years ago
  31. be66e94 Don't filter out OverflowWarning; should be a test failure if it is raised by by Brett Cannon · 18 years ago
  32. 59977a6 Make or_test similar to test, not testlist. by Martin v. Löwis · 18 years ago
  33. 415ed93 Skip over doc strings. by Martin v. Löwis · 18 years ago
  34. 16c7f71 Handle testlist_safe and or_test like testlist. by Martin v. Löwis · 18 years ago
  35. 49a1302 Alias non-terminals introduced for backwards compatibility. by Martin v. Löwis · 18 years ago
  36. 322a23f regenerated. please read PEP 306 when changing Python's grammar! by Anthony Baxter · 18 years ago
  37. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  38. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  39. d6e7e73 Whitespace normalization. by Tim Peters · 18 years ago
  40. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  41. de540e2 Got rid of byte-order dependencies. by Jack Jansen · 18 years ago
  42. 418a1ef RFE #1436243: make integers in [0..256] preallocated. by Georg Brandl · 18 years ago
  43. 6a29c32 Add test for classmethod ./. keyword args. by Georg Brandl · 18 years ago
  44. 42a3deb Suppress another deprecation warning in the tests. by Tim Peters · 18 years ago
  45. 32cbc96 Whitespace normalization. by Tim Peters · 18 years ago
  46. a223d2c Bug #1210377: close bsddb cursor correctly after NotFoundError. by Georg Brandl · 18 years ago
  47. de2cde6 Detect Win64 builds. by Martin v. Löwis · 18 years ago
  48. e46af8c Let the SDK setup override distutils logic. by Martin v. Löwis · 18 years ago
  49. 5771310 Bug #1101233: fix test_fcntl on netbsd2 platform. by Georg Brandl · 18 years ago
  50. 8f7c54e Bug #1413790: zipfile now sanitizes absolute archive names that are by Georg Brandl · 18 years ago
  51. 200a580 Whitespace normalization. by Tim Peters · 18 years ago
  52. 4d7cad1 Repair new test failures on Windows due to by Tim Peters · 18 years ago
  53. fe4b34c Fix the encodings package codec search function to only search by Marc-André Lemburg · 18 years ago
  54. c98eeed Patch #1215184: FileInput now can be given an opening hook which can by Georg Brandl · 18 years ago
  55. c029f87 Patch #1212287: fileinput.input() now has a mode parameter for by Georg Brandl · 18 years ago
  56. 67e9fb9 Patch #1215184: fileinput now has a fileno() function for getting the by Georg Brandl · 18 years ago
  57. 602b9ba Patch #1349274: gettext.install() now optionally installs additional by Georg Brandl · 18 years ago
  58. e466217 Patch #1337756: fileinput now accepts Unicode filenames. by Georg Brandl · 18 years ago
  59. 2a8ec99 test_gopher(): Squash another deprecation warning about gopherlib. by Tim Peters · 18 years ago
  60. 19e2203 Add a unit test for bug fix #1396678. by Georg Brandl · 18 years ago
  61. 26caeba Bug #1396678: a closed bsddb.DB raises AttributeError on repr(). by Georg Brandl · 18 years ago
  62. bb45973 This fixes test _locale failing on macteagle (Mac OS 10.4 AFAIK). by Neal Norwitz · 18 years ago
  63. 1f63670 Patch #1426648: urllib proxy_bypass broken by Georg Brandl · 18 years ago
  64. d5b6715 This should get test_timeout to pass when running on any python.org host. Will backport by Neal Norwitz · 18 years ago
  65. 7b4e7c2 Patch #1373643: The chunk module can now read chunks larger than two gigabytes. by Georg Brandl · 18 years ago
  66. e2c9a6c Suppress new deprecation warnings when running the test suite. by Tim Peters · 18 years ago
  67. 24f7cad Changed the new deprecation warning to show the by Tim Peters · 18 years ago
  68. b6be87f Whitespace normalization. by Tim Peters · 18 years ago
  69. 4cbd1e3 Move test case for HTTP response dict to httplib. by Georg Brandl · 18 years ago
  70. 6aab16e Move "httpresponses" dict from urllib2 to httplib where it belongs. by Georg Brandl · 18 years ago
  71. 5d07696 Patch #1417555: SimpleHTTPServer now returns Last-Modified headers. by Georg Brandl · 18 years ago
  72. b86a54f Add deprecation warning to modules deprecated since 2000. by Georg Brandl · 18 years ago
  73. bd3bc4d Bug #1430298: It is now possible to send a mail with an empty by Georg Brandl · 18 years ago
  74. 501dd0d The names of lambda functions are now properly displayed in pydoc. by Georg Brandl · 18 years ago
  75. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  76. cffcfed New test code failed to close the file. This caused by Tim Peters · 18 years ago
  77. c45251a SF patch #1397960: When mixing file-iteration and by Thomas Wouters · 18 years ago
  78. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  79. ed1992f Added function name to LogRecord. by Vinay Sajip · 18 years ago
  80. 260ce43 Propagate exceptions from shutdown() if raiseExceptions is not set. by Vinay Sajip · 18 years ago
  81. 1eb77a5 Added lock acquisition/release around shared data structure manipulation by Vinay Sajip · 18 years ago
  82. e58df82 Port relevant patches for SF 1409455 to the trunk for email 3.0/Python 2.5. by Barry Warsaw · 18 years ago
  83. a871ef2 Added the cProfile module. by Armin Rigo · 18 years ago
  84. e0f8592 Removed defensive test in Handler.close by Vinay Sajip · 18 years ago
  85. f0a95ec Saved and restored logging._handlerList at the same time as saving/restoring logging._handlers. by Vinay Sajip · 18 years ago
  86. 0075690 Patch #1412872: zipfile: use correct system type on unixy systems. by Martin v. Löwis · 19 years ago
  87. 55cd82f Get test_logging to not hang when running under regrtest.py -R :: by Neal Norwitz · 19 years ago
  88. 0e6bc8c Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same by Neal Norwitz · 19 years ago
  89. e3dd5b2 Resolves SF bug #1423972. by Barry Warsaw · 19 years ago
  90. faa26df Fix typo by Neal Norwitz · 19 years ago
  91. 602426e parsedate_tz(): Minor cleanup. by Barry Warsaw · 19 years ago
  92. 54814881 Patch #1413711: Certain patterns of differences were making difflib by Gustavo Niemeyer · 19 years ago
  93. c26cf5a fix test import for use in standalone pybsddb project bsddb3 module as well by Gregory P. Smith · 19 years ago
  94. 249c7b0 Whitespace normalization. by Tim Peters · 19 years ago
  95. 5b1e003 Try a number of ports, in case 9020 is already in use. by Martin v. Löwis · 19 years ago
  96. f684888 Explicitly close the server socket. by Martin v. Löwis · 19 years ago
  97. 35f34f8 Work around a Solaris peculiarity that caused test_pty to sometimes fail: a by Thomas Wouters · 19 years ago
  98. c960f26 Improved handling of syntax errors. by Jeremy Hylton · 19 years ago
  99. 3d344e8 Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER by Gregory P. Smith · 19 years ago
  100. 08e301f There was a race condition where the connector would try to connect by Neal Norwitz · 19 years ago