1. 750eae1 Issue #24678: Fixed raiseExceptions typo in logging tests. by Serhiy Storchaka · 9 years ago
  2. d55436a Issue #23207: Improved kwarg validation. by Vinay Sajip · 10 years ago
  3. 3bbb37e Issue #23211: Fix patch for 3.4 differences. by Ned Deily · 10 years ago
  4. 1e012e6 Issue #23211: Workaround test_logging failure on some OS X 10.6 systems: by Ned Deily · 10 years ago
  5. 43052a1 add context parameter to HTTPHandler (closes #22788) by Benjamin Peterson · 10 years ago
  6. 4ffb075 PEP 476: enable HTTPS certificate verification by default (#22417) by Benjamin Peterson · 10 years ago
  7. d1d4fbf Issue #22386: fixed regression. by Vinay Sajip · 10 years ago
  8. ec5a860 Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows. by Victor Stinner · 10 years ago
  9. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  10. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  11. 30e6a64 Closes #20242: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  12. 1fd1202 Issue #20242: Fixed basicConfig() format strings for the alternative formatting styles. by Vinay Sajip · 11 years ago
  13. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
  14. dc96ca2 Added some diagnostics to help with #19690. by Vinay Sajip · 11 years ago
  15. ef2d8a5 Closes #19665: Merged fi from 3.3. by Vinay Sajip · 11 years ago
  16. 827f5d3 Issue #19665: Increased timeout for SMTPHandler test. by Vinay Sajip · 11 years ago
  17. cb2c4fe Updated test_logging so that errors don't occur in the absence of threading. by Vinay Sajip · 11 years ago
  18. f6cdffe Streamlined logging tests by moving common code to a helper function. by Vinay Sajip · 11 years ago
  19. 5421f35 logging: added support for Unix domain sockets to SocketHandler and DatagramHandler. by Vinay Sajip · 11 years ago
  20. 04d4d6a Avoid test_logging failure when run after test_unittest, by renaming a conflicting logger by Antoine Pitrou · 11 years ago
  21. 48e6a8c Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  22. 50254c5 Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  23. 30298b4 Closes #11959: SMTPServer and SMTPChannel now take an optional map, use of which avoids affecting global state. by Vinay Sajip · 11 years ago
  24. 3b84eae Closes #18046: Simplified logging internals relating to levels and their names. Thanks to Alex Gaynor for the patch. by Vinay Sajip · 11 years ago
  25. 10e8c49 Re-enabled skipped test. by Vinay Sajip · 11 years ago
  26. 43473e3 Diagnostics collected, test disabled for now. by Vinay Sajip · 11 years ago
  27. caf9eb8 Re-enabled test with more diagnostics. by Vinay Sajip · 11 years ago
  28. 577abe1 Skip failing test pending investigation. by Vinay Sajip · 11 years ago
  29. 66940a1 Issue #17713: Added failure diagnostics to test. by Vinay Sajip · 11 years ago
  30. 8b4c719 Issue #17713: additional tweak to test. by Vinay Sajip · 11 years ago
  31. d86ac96 Closes #17713: Fixed bug in test_compute_rollover_weekly_attime. by Vinay Sajip · 11 years ago
  32. 171bb26 Issue #17713: Test temporarily skipped while failure investigated. by Vinay Sajip · 11 years ago
  33. a713079 Closed #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler to rotate. by Vinay Sajip · 11 years ago
  34. 04cc55a Closes #17540: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  35. 28421c6 Issue #17540: Added style to Formatter configuration by dict. by Vinay Sajip · 12 years ago
  36. 8ec95b8 Closes #17521: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  37. 9b862b9 Issue #17521: Merged fix from 3.2. by Vinay Sajip · 12 years ago
  38. 68b4cc8 Issue #17521: Corrected non-enabling of logger following two calls to fileConfig(). by Vinay Sajip · 12 years ago
  39. 5a63fe6 Closes #17508: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  40. 340a4bb Issue #17508: Merged fix from 3.2. by Vinay Sajip · 12 years ago
  41. 3f885b5 Issue #17508: Handled out-of-order handler configuration correctly. by Vinay Sajip · 12 years ago
  42. becf5c6 Issue #17384: Consolidated cleanup operations in tests. by Vinay Sajip · 12 years ago
  43. f9e9754 Closes #17313: Deleted test file created by test_logging. by Vinay Sajip · 12 years ago
  44. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  45. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 12 years ago
  46. 6d8a122 Issue #16704: Get rid of select.error in stdlib. Use OSError instead. by Andrew Svetlov · 12 years ago
  47. 8d27023 Allow configuration of handler properties. by Vinay Sajip · 12 years ago
  48. da201fa Try to fix issue #16264 (test_logging failure on some buildbots). by Antoine Pitrou · 12 years ago
  49. 284529d test_logging.py: where needed use unittest's assertGreater, assertLesser, assertIs rather than assertTrue (also in order to debug issue 16264) by Giampaolo Rodola' · 12 years ago
  50. cf9e2f2 Closes #16110: fileConfig now accepts a pre-initialised ConfigParser instance. by Vinay Sajip · 12 years ago
  51. 3ffd29b Remove unnecessary []. by Ezio Melotti · 12 years ago
  52. 4ded551 Issue #15452: Added verify option for logging configuration socket listener. by Vinay Sajip · 12 years ago
  53. d27e05d Closes #16521: Improved error handling for basicConfig(), added tests for same. by Vinay Sajip · 12 years ago
  54. ed1f7c8 Closes #14902: Fixed timezone conversion of a date/time in the past. Thanks to Yuriy Syrovetskiy for the report and Juancarlo Añez for the patch on which this fix is based. by Vinay Sajip · 12 years ago
  55. d70be9b Added test skip under Windows, as not applicable there. by Vinay Sajip · 12 years ago
  56. 5e86eed Reapplied skip logic for test on Windows, which appears to have been lost during a merge. by Vinay Sajip · 12 years ago
  57. d1a30c9 #8739: upgrade smtpd to RFC 5321 and 1870. by R David Murray · 12 years ago
  58. ac20f46 Merged hanged order of cleanup operations from 3.2. by Vinay Sajip · 12 years ago
  59. 89282af Changed order of cleanup operations to be more sensible. by Vinay Sajip · 12 years ago
  60. c94871a Merged fixed test from 3.2. by Vinay Sajip · 12 years ago
  61. c2ad0aa Fixed test to work on Windows. by Vinay Sajip · 12 years ago
  62. a5798de Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. by Vinay Sajip · 12 years ago
  63. 66b8b08 Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. by Vinay Sajip · 12 years ago
  64. 4c3f478 Issue #14644: Increased default timeout for SMTPHandler. Note: last commit message referred to the wrong issue number. by Vinay Sajip · 12 years ago
  65. 7706d9a Closes #14452: brought tests in line with removal of BOM insertion code. by Vinay Sajip · 12 years ago
  66. 17160fd Fixes #14314: Improved SMTP timeout handling. by Vinay Sajip · 13 years ago
  67. 851cad7 Make test_logging no longer fail if zlib not present. Closes #14256. Patch by Pedro Kroger. by Eric V. Smith · 13 years ago
  68. b2fcd3a Added delay before record creation. by Vinay Sajip · 13 years ago
  69. 8d217c6 Issue #12151: Added more info to diagnostics. by Vinay Sajip · 13 years ago
  70. b6f6670 Added more diagnostics for diagnosing #12151. by Vinay Sajip · 13 years ago
  71. d263d18 Fixed problem with diagnostic output. by Vinay Sajip · 13 years ago
  72. 19b1d50 Added additional diagnostics to help with #12151. by Vinay Sajip · 13 years ago
  73. 2c94cdd Closes #13732: now use os.linesep instead of a literal newline. by Vinay Sajip · 13 years ago
  74. 23b94d0 Refactored logging rotating handlers for improved flexibility. by Vinay Sajip · 13 years ago
  75. e41f0de Merge 3.2, fix typos. by Florent Xicluna · 13 years ago
  76. 5252f9f logging: replace codecs.open with builtins.open, remove '_encoded' sort, add some tests. by Florent Xicluna · 13 years ago
  77. e2618f3 Closes #13361: Merge fix from 3.2. by Vinay Sajip · 13 years ago
  78. 3bd5638 Closes #13361: Raise correct exception type. by Vinay Sajip · 13 years ago
  79. 39b53c5 Merged fix for #13361 from 3.2. by Vinay Sajip · 13 years ago
  80. 61b787e Closes #13661: Check added for type of logger name. by Vinay Sajip · 13 years ago
  81. b9e46e9 Changed warn() to warning() in logging tests. by Vinay Sajip · 13 years ago
  82. e674747 Issue #12326: refactor usage of sys.platform by Victor Stinner · 13 years ago
  83. 9c3de4a Issue #12326: don't test the major version of sys.platform by Victor Stinner · 13 years ago
  84. 8188f58 Fixes #12637: Merged fix from 3.2 and added test. by Vinay Sajip · 13 years ago
  85. 2353e35 Closes #12419: Added ident to SysLogHandler. by Vinay Sajip · 13 years ago
  86. 8dd8d58 Merged fix for issue #12168 from 3.2. by Vinay Sajip · 13 years ago
  87. 5056c8c Closes issue #11557: removal of non-idiomatic code in test_logging. by Vinay Sajip · 13 years ago
  88. b7b1930 Updated test_rollover delay to just over a second. by Vinay Sajip · 13 years ago
  89. 3ef1229 Issue #12151: Test now ignores datagram socket errors after server is closed. by Vinay Sajip · 13 years ago
  90. acd902b Issue #12151: Correction to diagnostic code. by Vinay Sajip · 13 years ago
  91. ba980db Issue #12151: Added diagnostics to help diagnose intermittent socket errors. by Vinay Sajip · 13 years ago
  92. 949c890 Issue #12151: test_logging writes debug messages to stderr, not stdout by Victor Stinner · 13 years ago
  93. 39e3528 Issue #12136: Added change to handle non-availability of the ssl module. by Vinay Sajip · 13 years ago
  94. 9ba8761 Added SSL test for HTTPHandler. by Vinay Sajip · 13 years ago
  95. 32565b6 Added SSL capability to TestHTTPServer. by Vinay Sajip · 13 years ago
  96. bd3d5cf Skip some tests in the absence of multiprocessing. by Vinay Sajip · 13 years ago
  97. ce7c978 Skip some more tests in the absence of threading. by Vinay Sajip · 13 years ago
  98. 252048c test_logging: extended time range for rollover test. by Vinay Sajip · 13 years ago
  99. a171f9c test_logging: fixed bug in failure diagnostics. by Vinay Sajip · 13 years ago
  100. a552ca6 Issue #12068: Fix appears to have worked; added more diagnostics for rare failures. by Vinay Sajip · 13 years ago