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