1. 8c16cb9 Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. by Georg Brandl · 8 years ago
  2. 2116b12 Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  3. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  4. 3505bd8 Issue #23207: merged fix from 3.4. by Vinay Sajip · 9 years ago
  5. d55436a Issue #23207: Improved kwarg validation. by Vinay Sajip · 9 years ago
  6. ecb5de3 Closes #23207: logging.basicConfig() now does additional validation of its arguments. by Vinay Sajip · 9 years ago
  7. 5abca70 Issue #23207: logging.basicConfig() now does additional validation of its arguments. by Vinay Sajip · 9 years ago
  8. 0298042 Closes #21980: Added a __repr__ for LogRecord. by Vinay Sajip · 10 years ago
  9. 2fb1efe Closes #23151: Removed unnecessary initialization. by Vinay Sajip · 10 years ago
  10. 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
  11. d1d4fbf Issue #22386: fixed regression. by Vinay Sajip · 10 years ago
  12. 194bcaf Issue #21709: Improved implementation to cover the frozen module case. by Vinay Sajip · 10 years ago
  13. 80f2262 Issue #21709: Remove references to __file__ when part of a frozen application. by Vinay Sajip · 10 years ago
  14. 1b76114 Issue #21172: isinstance check relaxed from dict to collections.Mapping. by Vinay Sajip · 10 years ago
  15. 156307b Issue #21149: Improved thread-safety in logging cleanup during interpreter shutdown. by Vinay Sajip · 10 years ago
  16. 698abe7 Closes #20918: Added handling for exceptions during fallback output of logging exceptions. by Vinay Sajip · 10 years ago
  17. 30e6a64 Closes #20242: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  18. 1fd1202 Issue #20242: Fixed basicConfig() format strings for the alternative formatting styles. by Vinay Sajip · 11 years ago
  19. a76157d Issue #19523: Closed FileHandler leak which occurred when delay was set. by Vinay Sajip · 11 years ago
  20. 5e75829 Closes #19523: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  21. f7b436c Closes #18941: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  22. 43c6ef1 Issue #18941: Respected delay when doing rollover. by Vinay Sajip · 11 years ago
  23. 3f58277 Closes #18671: Output more information when logging exceptions occur. by Vinay Sajip · 11 years ago
  24. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  25. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  26. 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
  27. b51aa7b Issue #9501: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  28. 6e669fb Issue #9501: Merged fix from 3.2. by Vinay Sajip · 12 years ago
  29. 5e1c3ce Issue #9501: Improved shutdown handling to deal with module attributes correctly. by Vinay Sajip · 12 years ago
  30. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  31. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  32. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  33. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  34. d27e05d Closes #16521: Improved error handling for basicConfig(), added tests for same. by Vinay Sajip · 12 years ago
  35. d06d540 Closes #16366: Improve diagnostics from handleError(). Thanks to Antoine Pitrou for the suggestion. by Vinay Sajip · 12 years ago
  36. 8cf4eb1 Issue #16141: replaced old-style exception handling code in logging with the modern idiom. by Vinay Sajip · 12 years ago
  37. 323e4fb Merged fix added for recent changes in non-threading environments. by Vinay Sajip · 12 years ago
  38. f050903 Fix added for recent changes in non-threading environments. by Vinay Sajip · 12 years ago
  39. 57c2237 Merged logging flush/close changes from 3.2. by Vinay Sajip · 12 years ago
  40. 0abf61d logging: Added locking in flush() and close() handler methods. Thanks to Fayaz Yusuf Khan for the suggestion. by Vinay Sajip · 12 years ago
  41. 9b727ec Closes #13859: Merged fix from 3.2 - thanks to Matt Joiner for spotting this and the patch. by Vinay Sajip · 12 years ago
  42. a50c284 Closes #13859: Replaced reference to StandardError with reference to Exception. Thanks to Matt Joiner for spotting this and submitting a patch. by Vinay Sajip · 12 years ago
  43. 5d116b7 Closes #13807: Merged fix from 3.2. by Vinay Sajip · 13 years ago
  44. 315a62b Closes #13807: Merged fix from 3.1. by Vinay Sajip · 13 years ago
  45. 889bb29 Closes #13807: Now checks for sys.stderr being there before writing to it. by Vinay Sajip · 13 years ago
  46. e85488c Mention that level can be an int or str in the setLevel docstring. by Gregory P. Smith · 13 years ago
  47. 5252f9f logging: replace codecs.open with builtins.open, remove '_encoded' sort, add some tests. by Florent Xicluna · 13 years ago
  48. e2618f3 Closes #13361: Merge fix from 3.2. by Vinay Sajip · 13 years ago
  49. 3bd5638 Closes #13361: Raise correct exception type. by Vinay Sajip · 13 years ago
  50. 39b53c5 Merged fix for #13361 from 3.2. by Vinay Sajip · 13 years ago
  51. 61b787e Closes #13661: Check added for type of logger name. by Vinay Sajip · 13 years ago
  52. 0a88953 Closes #13235: Changed PendingDeprecationWarning to DeprecationWarning. by Vinay Sajip · 13 years ago
  53. 04d5bc0 Closes #13235: Added deprecation for warn() methods and function in logging. by Vinay Sajip · 13 years ago
  54. 444be16 Issue #12780: Merged fix from 3.2. by Vinay Sajip · 13 years ago
  55. 2da23ca Issue #12780: Removed checks in logging for .pyc/.pyo in __file__. by Vinay Sajip · 13 years ago
  56. 8188f58 Fixes #12637: Merged fix from 3.2 and added test. by Vinay Sajip · 13 years ago
  57. 45dedaa Fixes #12637: Last resort messages now correctly handled. Thanks to Xavier de Gaye for the patch." by Vinay Sajip · 13 years ago
  58. ae5740f Made time formats in Formatter more configurable. by Vinay Sajip · 13 years ago
  59. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  60. 312cc0d Updated usage of boolean values. by Vinay Sajip · 13 years ago
  61. 7fe1d51 Improved test_logging coverage. by Vinay Sajip · 13 years ago
  62. 985ef87 More test_logging coverage improvements. by Vinay Sajip · 13 years ago
  63. 26fe4b7 test_logging coverage improvements. by Vinay Sajip · 13 years ago
  64. a3359ee Whitespace normalized. by Vinay Sajip · 13 years ago
  65. 4a0a31d Added 'handlers' argument to logging.basicConfig. by Vinay Sajip · 13 years ago
  66. e6c1eb9 Closes issue #11557: Added Natalia Bidart's patch to improve test coverage. by Vinay Sajip · 13 years ago
  67. d9512e9 Issue #11444: Merge fix from 3.1. by Vinay Sajip · 13 years ago
  68. c8ab6ee Issue #11444: Lock handlers while flushing/closing during shutdown. by Vinay Sajip · 13 years ago
  69. 89807a5 Issue #11330: Updated tests for correct asctime handling. by Vinay Sajip · 13 years ago
  70. 2a4c0f8 Removed typo. by Vinay Sajip · 13 years ago
  71. 10914b7 Issue #11330: asctime format bug fixed. by Vinay Sajip · 13 years ago
  72. 5a27d40 logging: added handler of last resort. by Vinay Sajip · 14 years ago
  73. fad058f logging: tidied up some docstrings. by Vinay Sajip · 14 years ago
  74. 6156152 logging: Added getLogRecordFactory/setLogRecordFactory with docs and tests. by Vinay Sajip · 14 years ago
  75. 8593ae6 Logging: added stack_info argument. by Vinay Sajip · 14 years ago
  76. c5b2730 Added style argument to logging.basicConfig() and documented this change. by Vinay Sajip · 14 years ago
  77. 6a65c5d logging: Improved Formatter implementation. by Vinay Sajip · 14 years ago
  78. d0557bf logging: Formatter implementation tweak. by Vinay Sajip · 14 years ago
  79. a39c571 logging: Added style option to Formatter to allow %, {} or himBHformatting. by Vinay Sajip · 14 years ago
  80. 2a20dfc logging: Made StreamHandler terminator configurable. by Vinay Sajip · 14 years ago
  81. fc082ca logging: Documented usage of callables as filters. by Vinay Sajip · 14 years ago
  82. 6dbed2e logging: Allowed filters to be just callables. by Vinay Sajip · 14 years ago
  83. 6fac817 logging: Added tests for _logRecordClass changes. by Vinay Sajip · 14 years ago
  84. 062d56b logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to increase flexibility of LogRecord creation. by Vinay Sajip · 14 years ago
  85. 1c71b2a Issue #9948: logging: fixed problem of losing filename case information. by Vinay Sajip · 14 years ago
  86. 8382d0f Removed duplicated method. by Vinay Sajip · 14 years ago
  87. 3ab905f Issue #9945: logging: backported locking fixes from py3k. by Vinay Sajip · 14 years ago
  88. 4fbe4b3 logging: NullHandler optimisation. by Vinay Sajip · 14 years ago
  89. 32fb6a8 Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler. by Vinay Sajip · 14 years ago
  90. 212b590 logging: Updated LoggerAdapter implementation. by Vinay Sajip · 14 years ago
  91. c84f016 Added some methods to LoggerAdapter, and updated documentation. by Vinay Sajip · 14 years ago
  92. 61c3f0d logging: added hasHandlers() to LoggerAdapter. by Vinay Sajip · 14 years ago
  93. b4a0809 logging: Add hasHandlers() method to Logger. by Vinay Sajip · 14 years ago
  94. 9907918 Removed unused, commented-out code. by Vinay Sajip · 14 years ago
  95. 2314fc7 logging: Added threading interlock in basicConfig(). by Vinay Sajip · 14 years ago
  96. dc5097f Removed _unicode variable which is always False in Python 3.x. by Vinay Sajip · 14 years ago
  97. 609364a Logging: removed some old commented out code. by Vinay Sajip · 14 years ago
  98. 40d9a4e Improved logging.Formatter date/time formatting documentation. by Vinay Sajip · 14 years ago
  99. de6e9d6 Issue #9501: Fixed logging regressions in cleanup code. by Vinay Sajip · 14 years ago
  100. 22005fc Merged revisions 79279,79284,79293,79373,79376,79379,79876,79888 via svnmerge from by Benjamin Peterson · 14 years ago