1. b9a4391 #10218: return timeout status from Condition.wait, mirroring other primitives' behavior. by Georg Brandl · 14 years ago
  2. 4d54088 #7351: add more consistent exception name alias. by Georg Brandl · 14 years ago
  3. d72402e Recode modules from latin-1 to utf-8 by Antoine Pitrou · 14 years ago
  4. 6b03ee6 Issue #5027: The standard `xml` namespace is now understood by by Antoine Pitrou · 14 years ago
  5. c1a6836 Issue #10193: Simplified instrospection used by turtle module by Alexander Belopolsky · 14 years ago
  6. 7424dd3 #5975: add unix_dialect to csv module. by Georg Brandl · 14 years ago
  7. 6a65c5d logging: Improved Formatter implementation. by Vinay Sajip · 14 years ago
  8. ba488d1 #7761: fix telnetlib.interact failures on Windows. by R. David Murray · 14 years ago
  9. 0256b2a Fix issue10192 - add urlencode to urllib.parse.__all__ by Senthil Kumaran · 14 years ago
  10. d0557bf logging: Formatter implementation tweak. by Vinay Sajip · 14 years ago
  11. a39c571 logging: Added style option to Formatter to allow %, {} or himBHformatting. by Vinay Sajip · 14 years ago
  12. 97019ff test_gdb should be skipped on darwin (not up to v7 yet) by Skip Montanaro · 14 years ago
  13. e882aac str.encode() doesn't accept None as errors: use 'strict' instead by Victor Stinner · 14 years ago
  14. 2ebe697 Issue #10161: test_pep277 formats filenames with ascii() on error by Victor Stinner · 14 years ago
  15. df6d6cb os: fsencode(), fsdecode() and os.environ(b) internal encode-decode methods by Victor Stinner · 14 years ago
  16. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  17. b75b639 Remove usage of exception indexing. by Georg Brandl · 14 years ago
  18. 543af75 Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer) by Nick Coghlan · 14 years ago
  19. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  20. 8451c4b #1349106: add linesep argument to generator.flatten and header.encode. by R. David Murray · 14 years ago
  21. 57f7579 Revert r85801. The test ought to pass without rounding. by Martin v. Löwis · 14 years ago
  22. fbb1c61 Follow up to #9778: fix regressions on 64-bit Windows builds by Antoine Pitrou · 14 years ago
  23. 1e908af #6518: enable context manager protocol for ossaudiodev types. by Georg Brandl · 14 years ago
  24. 1cae8b5 Also guard other SOCK_NONBLOCK test by Antoine Pitrou · 14 years ago
  25. 75d8c5c Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error by Victor Stinner · 14 years ago
  26. acd0fda Fix SOCK_CLOEXEC and SOCK_NONBLOCK tests on recent glibcs with old Linux kernels. by Antoine Pitrou · 14 years ago
  27. 2b9af63 Try to fix test_tarfile on AMD64 debian parallel 3.x by Victor Stinner · 14 years ago
  28. ff150f2 Revert r85797 (and r85798): it broke the Windows buildbots because of by Antoine Pitrou · 14 years ago
  29. 7eecffd Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 14 years ago
  30. eb585ad Fix test_ssl on Ubuntu buildbot with patched OpenSSL by Antoine Pitrou · 14 years ago
  31. d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 14 years ago
  32. 4ebfdf0 Only hack cmd.library_dirs when running under Py_ENABLE_SHARED. Tested both by Barry Warsaw · 14 years ago
  33. 9a8439d Refactor interesting use of try-finally. by Georg Brandl · 14 years ago
  34. eb7e569 Make top_level attribute a set instead of a dict with None values. by Georg Brandl · 14 years ago
  35. 8393843 #10166: rewrite self-recursion to iteration in pstats.Stats.add(). Also add a unittest and a stats test file. by Georg Brandl · 14 years ago
  36. 68fc9aa Apply fix from r85784 on py3k too. by Éric Araujo · 14 years ago
  37. 6ce1dae Fix r85774 editor fail. Had a dangling try and incorrect indent. by Brian Curtin · 14 years ago
  38. 000f974 Fix #10162: Add try/except around _winreg.OpenKey for keys that are by Brian Curtin · 14 years ago
  39. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  40. 50de5f5 #10159: sort completion matches before comparing to dir() result. by Georg Brandl · 14 years ago
  41. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  42. 073f759 Move non-ascii test from test_run_code() to a new function: test_non_ascii() by Victor Stinner · 14 years ago
  43. f6211ed Move test_undecodable_code() from test_sys to test_cmd_line by Victor Stinner · 14 years ago
  44. 6722b5f test_zipimport_support: use ascii() on bytes output to avoid BytesWarning by Victor Stinner · 14 years ago
  45. 2a20dfc logging: Made StreamHandler terminator configurable. by Vinay Sajip · 14 years ago
  46. 9450cc0 Fix r85728: use "" to mean the system default locale, which should work on more systems. by Georg Brandl · 14 years ago
  47. fc082ca logging: Documented usage of callables as filters. by Vinay Sajip · 14 years ago
  48. 6dbed2e logging: Allowed filters to be just callables. by Vinay Sajip · 14 years ago
  49. 6fac817 logging: Added tests for _logRecordClass changes. by Vinay Sajip · 14 years ago
  50. 7004bd1 #10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this. by Georg Brandl · 14 years ago
  51. f87cc04 Fixed the docstring for calendar.isleap() function. by Alexander Belopolsky · 14 years ago
  52. 062d56b logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to increase flexibility of LogRecord creation. by Vinay Sajip · 14 years ago
  53. 9a90900 PyUnicode_FromFormatV(): Fix %A format by Victor Stinner · 14 years ago
  54. eebccfb Reverted inadvertent change that slipped into r85695 by Alexander Belopolsky · 14 years ago
  55. 4a98e3b Issue #10117: Tools/scripts/reindent.py now accepts source files that by Alexander Belopolsky · 14 years ago
  56. b08820a Issue #5117: Case normalization was needed on ntpath.relpath(). And by Hirokazu Yamamoto · 14 years ago
  57. a90032a #1343: Add short_empty_elements option to XMLGenerator. by R. David Murray · 14 years ago
  58. 6fb4575 test_httpservers: Python CGI scripts have to be encoded to utf-8 by Victor Stinner · 14 years ago
  59. 3218c31 test_httpservers: Fix skip test check, the python executable path have to be by Victor Stinner · 14 years ago
  60. 0b0ca0c test_httpservers: skip CGI tests if Python executable path is not encodable by Victor Stinner · 14 years ago
  61. ee2538b Fix Issue10119 - test_urllibnet failure when using support.transient_internet. by Senthil Kumaran · 14 years ago
  62. feedda2 Avoid hanging the test on netbsd5. by Gregory P. Smith · 14 years ago
  63. 0f61dd0 skip test_itimer_virtual on NetBSD to prevent the test suite from hanging. by Gregory P. Smith · 14 years ago
  64. e3874ed test_cmd_line_script: format paths with ascii() instead of repr() by Victor Stinner · 14 years ago
  65. ca9f128 use assertion methods by Benjamin Peterson · 14 years ago
  66. cb17094 disable the garbage collector while collecting traces, so that __del__s don't get caught by Benjamin Peterson · 14 years ago
  67. fc49f2a remove rather pointless test by Benjamin Peterson · 14 years ago
  68. b603d03 fix for netbsd. by Gregory P. Smith · 14 years ago
  69. f6782ac test_subprocess: use surrogateescape error handler to write shell scripts by Victor Stinner · 14 years ago
  70. 9d39639 Issue #10123: Don't use non-ascii filenames in test_doctest tests. Add a by Victor Stinner · 14 years ago
  71. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  72. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  73. 4231173 revert change in inappropiate branch by Benjamin Peterson · 14 years ago
  74. 3844f0d #6098: Refrain from claiming DOM level 3 conformance in minidom. by Georg Brandl · 14 years ago
  75. b9cd72a #5762: fix handling of empty namespace in minidom, which would result in AttributeError on toxml(). by Georg Brandl · 14 years ago
  76. d4460aa #4785: document strict argument of JSONDecoder, plus add object_pairs_hook in the docstrings. by Georg Brandl · 14 years ago
  77. e8f5832 Issue #9308: Removed redundant coding cookies. Added tests for by Alexander Belopolsky · 14 years ago
  78. c1c4bf8 #9683: remove broken dead code dealing with nested arguments removed from Py3k, and update the docs and docstrings accordingly. by Georg Brandl · 14 years ago
  79. 1f7fffb #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. by Georg Brandl · 14 years ago
  80. 91d2a3f #5355 followup: add unit test for new dictionaries, and provide submodules from xml.parsers.expat as advertised. by Georg Brandl · 14 years ago
  81. f668df5 Fix #10098. Fix sporadic test_os failures. by Brian Curtin · 14 years ago
  82. ba80712 Revert debug printout by Antoine Pitrou · 14 years ago
  83. fe97913 Enable debug output at the start of the regression suite instead. by Antoine Pitrou · 14 years ago
  84. f64317e Temporary debug printout for buildbots by Antoine Pitrou · 14 years ago
  85. 3e46b25 remove empty file by Benjamin Peterson · 14 years ago
  86. f37eb3a Merged revisions 83852-83853,83857,84042,84216,84274-84276,84375,85388,85478,85506-85508 via svnmerge from by Benjamin Peterson · 14 years ago
  87. 92f60ed More proper closing of files by Antoine Pitrou · 14 years ago
  88. 73315e9 revert change that was in wrong branch by Benjamin Peterson · 14 years ago
  89. 3504944 Add test case for issue #9409, non-ascii char in doctest. It passes in 3.2 but needs fixing in 2.7. by Florent Xicluna · 14 years ago
  90. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  91. d9f5763 Fix the regex to match all kind of filenames, for interactive debugging in doctests. (issue #9409) by Florent Xicluna · 14 years ago
  92. d778e56 Increase timeouts in test_ftplib (for very slow buildbots) by Antoine Pitrou · 14 years ago
  93. 8c8f1ac Oops by Antoine Pitrou · 14 years ago
  94. b3a88b5 Really fix bug by Antoine Pitrou · 14 years ago
  95. 270800c Fix issue 10094, by narrowing down the test for PROXY environment variables. by Barry Warsaw · 14 years ago
  96. 1bcbaab Issue 9183: Intern UTC timezone. by Alexander Belopolsky · 14 years ago
  97. 5bc4fa7 Replace the "compiler" resource with the more generic "cpu", so by Antoine Pitrou · 14 years ago
  98. b1c5496 Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module, by Antoine Pitrou · 14 years ago
  99. 383c32d Issue10063 - file:// scheme will stop accessing remote hosts via ftp protocol by Senthil Kumaran · 14 years ago
  100. 1b03f2c Inherit interpreter flags in parallel testing by Antoine Pitrou · 14 years ago