1. b1e11c3 bpo-40443: Remove unused imports in tests (GH-19804) by Victor Stinner · 5 years ago
  2. 515fce4 bpo-40275: Avoid importing logging in test.support (GH-19601) by Serhiy Storchaka · 5 years ago
  3. 1699491 bpo-40275: Avoid importing socket in test.support (GH-19603) by Serhiy Storchaka · 5 years ago
  4. 06a3554 bpo-40300: Allow empty logging.Formatter.default_msec_format. (GH-19551) by Mariusz Felisiak · 5 years ago
  5. 278c1e1 bpo-40094: Add test.support.wait_process() (GH-19254) by Victor Stinner · 5 years ago
  6. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  7. 46abfc1 bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-17773) by Vinay Sajip · 6 years ago
  8. c98b019 bpo-38614: Use test.support.LONG_TIMEOUT constant (GH-17562) by Victor Stinner · 6 years ago
  9. bbc8b79 bpo-38614: Use default join_thread() timeout in tests (GH-17559) by Victor Stinner · 6 years ago
  10. 991b02d update a deprecated assert in logging tests (GH-17079) by l0rb · 6 years ago
  11. 519cb87 bpo-38716: stop rotating handlers from setting inherited namer and rotator to None (GH-17072) by l0rb · 6 years ago
  12. b15100f bpo-38586: setting logging.Handler .name property in fileConfig (GH-16918) by Lucas Cimon · 6 years ago
  13. 1d094af Updated incorrect level-setting code to use setLevel(). (GH-16325) by Vinay Sajip · 6 years ago
  14. cb65b3a bpo-37742: Return the root logger when logging.getLogger('root') is c… (#15077) by Vinay Sajip · 6 years ago
  15. 0150001 bpo-37258: Not a bug, but added a unit test and updated documentation. (GH-14229) by Vinay Sajip · 6 years ago
  16. ca7b504 bpo-37111: Add 'encoding' and 'errors' parameters to logging.basicCon… (GH-14008) by Vinay Sajip · 6 years ago
  17. 6b282e1 bpo-36813: Fix QueueListener to call task_done() upon termination. (GH-13113) by Bar Harel · 6 years ago
  18. 2c10538 bpo-36903: Fix ResourceWarning in test_logging (GH-13283) by Xtreak · 6 years ago
  19. ca87eeb bpo-36015: Handle StreamHandler representaton of stream with an integer name (GH-11908) by Riccardo Magliocchetti · 6 years ago
  20. 64aa6d2 bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) by Gregory P. Smith · 6 years ago
  21. 3d6f61e bpo-36681: Remove duplicate test_regression_29220 function (GH-12894) by Windson yang · 6 years ago
  22. 2dad960 bpo-35726: Add test for QueueHandler with multiple handlers (GH-11659) by Xtreak · 6 years ago
  23. 65f64b19 bpo-36272: Logging now propagates RecursionError (GH-12312) by Rémi Lapeyre · 6 years ago
  24. 137b063 bpo-34997: Fix test_logging.ConfigDictTest.test_out_of_order (GH-9913) by Pablo Galindo · 7 years ago
  25. 18fb1fb bpo-34844: logging.Formatter enhancement - Ensure style and format string matches in logging.Formatter (GH-9703) by BNMetrics · 7 years ago
  26. d345bb4 bpo-34334: Don't log traceback twice in QueueHandler (GH-9537) by Cheryl Sabella · 7 years ago
  27. 1900384 bpo-6721: Hold logging locks across fork() (GH-4071) by Gregory P. Smith · 7 years ago
  28. 31b50b8 bpo-34092, test_logging: increase SMTPHandlerTest timeout (GH-8245) by Victor Stinner · 7 years ago
  29. 087570a bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008) by Xtreak · 7 years ago
  30. cf67d6a bpo-33897: Add a 'force' keyword argument to logging.basicConfig(). (GH-7873) by Dong-hee Na · 7 years ago
  31. 214f18e bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524) by Łukasz Langa · 7 years ago
  32. dde9fdb bpo-33165: Added stacklevel parameter to logging APIs. (GH-7424) by Vinay Sajip · 7 years ago
  33. 6e3ca64 bpo-33606: improve logging performance when logger is disabled (GH-7285) by Timo Furrer · 7 years ago
  34. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 8 years ago
  35. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 8 years ago
  36. bf2b65e bpo-28668: test.support.requires_multiprocessing_queue is removed (GH-4560) by xdegaye · 8 years ago
  37. ce9e625 bpo-31457: Don't omit inner ``process()`` calls with nested LogAdapters (#4044) by Łukasz Langa · 8 years ago
  38. 0b6a118 bpo-31457: Make the `LoggerAdapter.manager` property settable (#4042) by Łukasz Langa · 8 years ago
  39. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 8 years ago
  40. b9b6900 bpo-31234: Add support.join_thread() helper (#3587) by Victor Stinner · 8 years ago
  41. 1bbd482 bpo-31457: Allow for nested LoggerAdapter objects (#3551) by Łukasz Langa · 8 years ago
  42. b8f4163 bpo-31233: socketserver.ThreadingMixIn.server_close() (#3523) by Victor Stinner · 8 years ago
  43. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 8 years ago
  44. a7719e2 bpo-31235: Fix ResourceWarning in test_logging (#3147) by Victor Stinner · 8 years ago
  45. 6966960 bpo-30830: test_logging uses threading_setup/cleanup (#3137) by Victor Stinner · 8 years ago
  46. 6ea56d2 bpo-31080: Allowed logging.config.fileConfig() to accept both args and kwargs. (GH-2979) by Preston Landers · 8 years ago
  47. adfe344 bpo-31084: QueueHandler now formats messages correctly. (GH-2954) by favll · 8 years ago
  48. 2543f50 bpo-30522: Implemented a method to allow setting a logging.StreamHander's stream. (GH-2921) by Vinay Sajip · 8 years ago
  49. 78c18a9 bpo-30962: Added caching to Logger.isEnabledFor() (GH-2752) by Avram Lubkin · 8 years ago
  50. 6260d9f bpo-30520: Implemented pickling for loggers. (#1956) by Vinay Sajip · 8 years ago
  51. 0b4b57d bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1676) by Xiang Zhang · 8 years ago
  52. 8ca2f2f bpo-30131: test_logging now joins queue threads (#1298) by Victor Stinner · 8 years ago
  53. 4bcfa3a bpo-30131: Cleanup threads in test_logging (#1275) by Victor Stinner · 8 years ago
  54. d4f5001 Issue #29220: Merged fixes from 3.6. by Vinay Sajip · 9 years ago
  55. a861d48 Issue #292Merged fixes from 3.5. by Vinay Sajip · 9 years ago
  56. 924aaae Issue #29220: Improved fix and test. by Vinay Sajip · 9 years ago
  57. 8b866d5 Closes #29220: Fixed regression in logging.getLevelName(). by Vinay Sajip · 9 years ago
  58. 9ebb245 Closes #29177: Merged fix from 3.6. by Vinay Sajip · 9 years ago
  59. 1e6499c Fixes #29177: Improved resilience of logging tests which use socket servers. by Vinay Sajip · 9 years ago
  60. d489ac9 Closes #28524: added default level for logging.disable(). by Vinay Sajip · 9 years ago
  61. d178e69 Issue 28668: Merge 3.5 by Xavier de Gaye · 9 years ago
  62. 49e8f2d Issue 28668: Skip tests where instanciation of multiprocessing.Queue by Xavier de Gaye · 9 years ago
  63. 94332cb Issue #28480: Adjust or skip tests if multithreading is disabled by Martin Panter · 9 years ago
  64. d61910c Fixes #27930: improved QueueListener behaviour. by Vinay Sajip · 9 years ago
  65. db8f463 Added back test code lost during merge. by Vinay Sajip · 9 years ago
  66. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 9 years ago
  67. 1bf197e Fixed #27251: corrected string/bytes handling in credentials. by Vinay Sajip · 9 years ago
  68. 3f445f7 Closes #25411: Merged fix from 3.4. by Vinay Sajip · 10 years ago
  69. 277640a Closes #25411: Improved Unicode support in SMTPHandler. by Vinay Sajip · 10 years ago
  70. 479ac66 Issue #25097: Merge with 3.4 by Zachary Ware · 10 years ago
  71. 106ddf0 Issue #25097: Re-raise any other pywin32 error by Zachary Ware · 10 years ago
  72. af34b24 Issue #25097: Merge with 3.4 by Zachary Ware · 10 years ago
  73. 22226c5 Issue #25097: fix Windows error number access by Zachary Ware · 10 years ago
  74. d5963e6 Fixes #25097: Merged fi from 3.4. by Vinay Sajip · 10 years ago
  75. 223349c Fixes #25097: Windows test is skipped if there are insufficient privileges, rather than failing. by Vinay Sajip · 10 years ago
  76. 750eae1 Issue #24678: Fixed raiseExceptions typo in logging tests. by Serhiy Storchaka · 10 years ago
  77. 296b347 Issue #24678: Fixed raiseExceptions typo in logging tests. by Serhiy Storchaka · 10 years ago
  78. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 10 years ago
  79. 3505bd8 Issue #23207: merged fix from 3.4. by Vinay Sajip · 10 years ago
  80. d55436a Issue #23207: Improved kwarg validation. by Vinay Sajip · 10 years ago
  81. 365701a Added respect_handler_level to QueueListener. by Vinay Sajip · 10 years ago
  82. 3bbb37e Issue #23211: Fix patch for 3.4 differences. by Ned Deily · 11 years ago
  83. cad3eb6 Issue #23211: merge from 3.4 by Ned Deily · 11 years ago
  84. 1e012e6 Issue #23211: Workaround test_logging failure on some OS X 10.6 systems: by Ned Deily · 11 years ago
  85. 43052a1 add context parameter to HTTPHandler (closes #22788) by Benjamin Peterson · 11 years ago
  86. 6c22e65 merge 3.4 (#22788) by Benjamin Peterson · 11 years ago
  87. 1cca273 merge 3.4 (#22417) by Benjamin Peterson · 11 years ago
  88. 4ffb075 PEP 476: enable HTTPS certificate verification by default (#22417) by Benjamin Peterson · 11 years ago
  89. 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 · 11 years ago
  90. a56411e Closes #22386: merged fix from 3.4. by Vinay Sajip · 11 years ago
  91. d1d4fbf Issue #22386: fixed regression. by Vinay Sajip · 11 years ago
  92. 1144da5 #19662: Eliminate warnings in other test modules that use smtpd. by R David Murray · 11 years ago
  93. 8ff3737 (Merge 3.4) Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on by Victor Stinner · 11 years ago
  94. ec5a860 Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows. by Victor Stinner · 11 years ago
  95. 1feedb4 Closes #21583: Improved test_logging. Thanks to Diana Joan Clarke for the patch. by Vinay Sajip · 11 years ago
  96. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 12 years ago
  97. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 12 years ago
  98. 30e6a64 Closes #20242: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  99. 1fd1202 Issue #20242: Fixed basicConfig() format strings for the alternative formatting styles. by Vinay Sajip · 12 years ago
  100. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 12 years ago