1. 2c10538 bpo-36903: Fix ResourceWarning in test_logging (GH-13283) by Xtreak · 5 years ago
  2. ca87eeb bpo-36015: Handle StreamHandler representaton of stream with an integer name (GH-11908) by Riccardo Magliocchetti · 5 years ago
  3. 64aa6d2 bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) by Gregory P. Smith · 5 years ago
  4. 3d6f61e bpo-36681: Remove duplicate test_regression_29220 function (GH-12894) by Windson yang · 5 years ago
  5. 2dad960 bpo-35726: Add test for QueueHandler with multiple handlers (GH-11659) by Xtreak · 5 years ago
  6. 65f64b1 bpo-36272: Logging now propagates RecursionError (GH-12312) by Rémi Lapeyre · 5 years ago
  7. 137b063 bpo-34997: Fix test_logging.ConfigDictTest.test_out_of_order (GH-9913) by Pablo Galindo · 6 years ago
  8. 18fb1fb bpo-34844: logging.Formatter enhancement - Ensure style and format string matches in logging.Formatter (GH-9703) by BNMetrics · 6 years ago
  9. d345bb4 bpo-34334: Don't log traceback twice in QueueHandler (GH-9537) by Cheryl Sabella · 6 years ago
  10. 1900384 bpo-6721: Hold logging locks across fork() (GH-4071) by Gregory P. Smith · 6 years ago
  11. 31b50b8 bpo-34092, test_logging: increase SMTPHandlerTest timeout (GH-8245) by Victor Stinner · 6 years ago
  12. 087570a bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008) by Xtreak · 6 years ago
  13. cf67d6a bpo-33897: Add a 'force' keyword argument to logging.basicConfig(). (GH-7873) by Dong-hee Na · 6 years ago
  14. 214f18e bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524) by Łukasz Langa · 6 years ago
  15. dde9fdb bpo-33165: Added stacklevel parameter to logging APIs. (GH-7424) by Vinay Sajip · 6 years ago
  16. 6e3ca64 bpo-33606: improve logging performance when logger is disabled (GH-7285) by Timo Furrer · 6 years ago
  17. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 7 years ago
  18. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 7 years ago
  19. bf2b65e bpo-28668: test.support.requires_multiprocessing_queue is removed (GH-4560) by xdegaye · 7 years ago
  20. ce9e625 bpo-31457: Don't omit inner ``process()`` calls with nested LogAdapters (#4044) by Łukasz Langa · 7 years ago
  21. 0b6a118 bpo-31457: Make the `LoggerAdapter.manager` property settable (#4042) by Łukasz Langa · 7 years ago
  22. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 7 years ago
  23. b9b6900 bpo-31234: Add support.join_thread() helper (#3587) by Victor Stinner · 7 years ago
  24. 1bbd482 bpo-31457: Allow for nested LoggerAdapter objects (#3551) by Łukasz Langa · 7 years ago
  25. b8f4163 bpo-31233: socketserver.ThreadingMixIn.server_close() (#3523) by Victor Stinner · 7 years ago
  26. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  27. a7719e2 bpo-31235: Fix ResourceWarning in test_logging (#3147) by Victor Stinner · 7 years ago
  28. 6966960 bpo-30830: test_logging uses threading_setup/cleanup (#3137) by Victor Stinner · 7 years ago
  29. 6ea56d2 bpo-31080: Allowed logging.config.fileConfig() to accept both args and kwargs. (GH-2979) by Preston Landers · 7 years ago
  30. adfe344 bpo-31084: QueueHandler now formats messages correctly. (GH-2954) by favll · 7 years ago
  31. 2543f50 bpo-30522: Implemented a method to allow setting a logging.StreamHander's stream. (GH-2921) by Vinay Sajip · 7 years ago
  32. 78c18a9 bpo-30962: Added caching to Logger.isEnabledFor() (GH-2752) by Avram Lubkin · 7 years ago
  33. 6260d9f bpo-30520: Implemented pickling for loggers. (#1956) by Vinay Sajip · 7 years ago
  34. 0b4b57d bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1676) by Xiang Zhang · 7 years ago
  35. 8ca2f2f bpo-30131: test_logging now joins queue threads (#1298) by Victor Stinner · 7 years ago
  36. 4bcfa3a bpo-30131: Cleanup threads in test_logging (#1275) by Victor Stinner · 7 years ago
  37. d4f5001 Issue #29220: Merged fixes from 3.6. by Vinay Sajip · 8 years ago
  38. a861d48 Issue #292Merged fixes from 3.5. by Vinay Sajip · 8 years ago
  39. 924aaae Issue #29220: Improved fix and test. by Vinay Sajip · 8 years ago
  40. 8b866d5 Closes #29220: Fixed regression in logging.getLevelName(). by Vinay Sajip · 8 years ago
  41. 9ebb245 Closes #29177: Merged fix from 3.6. by Vinay Sajip · 8 years ago
  42. 1e6499c Fixes #29177: Improved resilience of logging tests which use socket servers. by Vinay Sajip · 8 years ago
  43. d489ac9 Closes #28524: added default level for logging.disable(). by Vinay Sajip · 8 years ago
  44. d178e69 Issue 28668: Merge 3.5 by Xavier de Gaye · 8 years ago
  45. 49e8f2d Issue 28668: Skip tests where instanciation of multiprocessing.Queue by Xavier de Gaye · 8 years ago
  46. 94332cb Issue #28480: Adjust or skip tests if multithreading is disabled by Martin Panter · 8 years ago
  47. d61910c Fixes #27930: improved QueueListener behaviour. by Vinay Sajip · 8 years ago
  48. db8f463 Added back test code lost during merge. by Vinay Sajip · 8 years ago
  49. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  50. 1bf197e Fixed #27251: corrected string/bytes handling in credentials. by Vinay Sajip · 8 years ago
  51. 3f445f7 Closes #25411: Merged fix from 3.4. by Vinay Sajip · 9 years ago
  52. 277640a Closes #25411: Improved Unicode support in SMTPHandler. by Vinay Sajip · 9 years ago
  53. 479ac66 Issue #25097: Merge with 3.4 by Zachary Ware · 9 years ago
  54. 106ddf0 Issue #25097: Re-raise any other pywin32 error by Zachary Ware · 9 years ago
  55. af34b24 Issue #25097: Merge with 3.4 by Zachary Ware · 9 years ago
  56. 22226c5 Issue #25097: fix Windows error number access by Zachary Ware · 9 years ago
  57. d5963e6 Fixes #25097: Merged fi from 3.4. by Vinay Sajip · 9 years ago
  58. 223349c Fixes #25097: Windows test is skipped if there are insufficient privileges, rather than failing. by Vinay Sajip · 9 years ago
  59. 750eae1 Issue #24678: Fixed raiseExceptions typo in logging tests. by Serhiy Storchaka · 9 years ago
  60. 296b347 Issue #24678: Fixed raiseExceptions typo in logging tests. by Serhiy Storchaka · 9 years ago
  61. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  62. 3505bd8 Issue #23207: merged fix from 3.4. by Vinay Sajip · 9 years ago
  63. d55436a Issue #23207: Improved kwarg validation. by Vinay Sajip · 9 years ago
  64. 365701a Added respect_handler_level to QueueListener. by Vinay Sajip · 9 years ago
  65. 3bbb37e Issue #23211: Fix patch for 3.4 differences. by Ned Deily · 10 years ago
  66. cad3eb6 Issue #23211: merge from 3.4 by Ned Deily · 10 years ago
  67. 1e012e6 Issue #23211: Workaround test_logging failure on some OS X 10.6 systems: by Ned Deily · 10 years ago
  68. 43052a1 add context parameter to HTTPHandler (closes #22788) by Benjamin Peterson · 10 years ago
  69. 6c22e65 merge 3.4 (#22788) by Benjamin Peterson · 10 years ago
  70. 1cca273 merge 3.4 (#22417) by Benjamin Peterson · 10 years ago
  71. 4ffb075 PEP 476: enable HTTPS certificate verification by default (#22417) by Benjamin Peterson · 10 years ago
  72. 02a8f9e Closes #20537: logging methods now accept an exception instance as well as a Boolean value or exception tuple. Thanks to Yury Selivanov for the patch. by Vinay Sajip · 10 years ago
  73. a56411e Closes #22386: merged fix from 3.4. by Vinay Sajip · 10 years ago
  74. d1d4fbf Issue #22386: fixed regression. by Vinay Sajip · 10 years ago
  75. 1144da5 #19662: Eliminate warnings in other test modules that use smtpd. by R David Murray · 10 years ago
  76. 8ff3737 (Merge 3.4) Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on by Victor Stinner · 10 years ago
  77. ec5a860 Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows. by Victor Stinner · 10 years ago
  78. 1feedb4 Closes #21583: Improved test_logging. Thanks to Diana Joan Clarke for the patch. by Vinay Sajip · 10 years ago
  79. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  80. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  81. 30e6a64 Closes #20242: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  82. 1fd1202 Issue #20242: Fixed basicConfig() format strings for the alternative formatting styles. by Vinay Sajip · 11 years ago
  83. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
  84. dc96ca2 Added some diagnostics to help with #19690. by Vinay Sajip · 11 years ago
  85. ef2d8a5 Closes #19665: Merged fi from 3.3. by Vinay Sajip · 11 years ago
  86. 827f5d3 Issue #19665: Increased timeout for SMTPHandler test. by Vinay Sajip · 11 years ago
  87. cb2c4fe Updated test_logging so that errors don't occur in the absence of threading. by Vinay Sajip · 11 years ago
  88. f6cdffe Streamlined logging tests by moving common code to a helper function. by Vinay Sajip · 11 years ago
  89. 5421f35 logging: added support for Unix domain sockets to SocketHandler and DatagramHandler. by Vinay Sajip · 11 years ago
  90. 04d4d6a Avoid test_logging failure when run after test_unittest, by renaming a conflicting logger by Antoine Pitrou · 11 years ago
  91. 48e6a8c Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  92. 50254c5 Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  93. 30298b4 Closes #11959: SMTPServer and SMTPChannel now take an optional map, use of which avoids affecting global state. by Vinay Sajip · 11 years ago
  94. 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
  95. 10e8c49 Re-enabled skipped test. by Vinay Sajip · 11 years ago
  96. 43473e3 Diagnostics collected, test disabled for now. by Vinay Sajip · 11 years ago
  97. caf9eb8 Re-enabled test with more diagnostics. by Vinay Sajip · 11 years ago
  98. 577abe1 Skip failing test pending investigation. by Vinay Sajip · 11 years ago
  99. 66940a1 Issue #17713: Added failure diagnostics to test. by Vinay Sajip · 11 years ago
  100. 8b4c719 Issue #17713: additional tweak to test. by Vinay Sajip · 11 years ago