1. 3478ac0 Issue #9606: Updated documentation for Filter objects. by Vinay Sajip · 15 years ago
  2. bd13f45 Merged revisions 83900 via svnmerge from by Senthil Kumaran · 15 years ago
  3. 80eed3e Minor improvements to logging documentation. by Vinay Sajip · 15 years ago
  4. 86aa905 Added information about pickle security and SocketHandler. by Vinay Sajip · 15 years ago
  5. 998cc24 Issue #8890: Documentation changed to avoid reference to temporary files - other cases covered. by Vinay Sajip · 15 years ago
  6. 9a26aab Issue #8890: Documentation changed to avoid reference to temporary files. by Vinay Sajip · 15 years ago
  7. c76defc Updated logging documentation with more dictConfig information. by Vinay Sajip · 15 years ago
  8. a38cd52 Fixed minor typo in ReST markup. by Vinay Sajip · 15 years ago
  9. 1b55347 Add cross-reference to later section by Andrew M. Kuchling · 15 years ago
  10. f09bc66 #8696: add documentation for logging.config.dictConfig (PEP 391) by Andrew M. Kuchling · 15 years ago
  11. 497256b Issue #8331: logging: fixed some grammatical errors in documentation. by Vinay Sajip · 15 years ago
  12. ccd8bc8 Issue #8327: logging: Clarification of propagation functionality in documentation. by Vinay Sajip · 15 years ago
  13. d3bab6a Remove col-spanning cells in logging docs. by Georg Brandl · 15 years ago
  14. 66d19e2 logging: Updated SysLogHandler documentation. by Vinay Sajip · 15 years ago
  15. a3c39c0 logging: Documentation tweak. by Vinay Sajip · 15 years ago
  16. b0623d6 logging: Added LOG_FTP for SysLogHandler and updated documentation. by Vinay Sajip · 15 years ago
  17. 804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. by Vinay Sajip · 15 years ago
  18. 2060e42 Issue #8162: logging: Clarified docstring and documentation for disable function. by Vinay Sajip · 15 years ago
  19. f6d36745 Fix warnings from "make check". by Georg Brandl · 15 years ago
  20. ecfa08f Issue #8117: Updated NEWS entry and added to logging documentation. by Vinay Sajip · 15 years ago
  21. 61afd26 logging: Documented warnings module integration. by Vinay Sajip · 15 years ago
  22. 0e6e97d Issue #7851: logging: clarification on logging configuration files. by Vinay Sajip · 16 years ago
  23. 062d2b5 #7388: "python".capitalize() in the Doc by Ezio Melotti · 16 years ago
  24. 0c6a0e3 Issue #7529: logging: Minor correction to documentation. by Vinay Sajip · 16 years ago
  25. a7d4400 Issue 7199: Documentation made slightly more consistent w.r.t. logging level enumeration. by Vinay Sajip · 16 years ago
  26. 1c77b7f Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronisms in the code. by Vinay Sajip · 16 years ago
  27. 4780c9a Tidied up name of parameter in StreamHandler by Vinay Sajip · 16 years ago
  28. f778bec Fixed a typo, and added sections on optimization and using arbitrary objects as messages. by Vinay Sajip · 16 years ago
  29. 333c6e7 Added section on exceptions raised during logging. by Vinay Sajip · 16 years ago
  30. 5e7f645 Further refined section on logging to one file from multiple processes. by Vinay Sajip · 16 years ago
  31. 1c0b24f Refined section on logging to one file from multiple processes. by Vinay Sajip · 16 years ago
  32. 3a0dc30 Added section on logging to one file from multiple processes. by Vinay Sajip · 16 years ago
  33. 59584c4 Added versionchanged notices for optional 'delay' parameter to file handler classes. by Vinay Sajip · 16 years ago
  34. 9fa61bb #6577: fix (hopefully) all links to builtin instead of module/class-specific objects. by Georg Brandl · 16 years ago
  35. e7dbebb Minor documentation fixes for logging. by Eric Smith · 16 years ago
  36. 353a85f Clarified warning about logging use from asynchronous signal handlers. by Vinay Sajip · 16 years ago
  37. b0b1aa2 Added warning about logging use from asynchronous signal handlers. by Vinay Sajip · 16 years ago
  38. a7b55a3 revert r69777 since all the experts agree that extra import lines distract from the code by Benjamin Peterson · 16 years ago
  39. 5149742 Since we recommend one module per import line, reflect this also in the by Jeroen Ruigrok van der Werven · 16 years ago
  40. 4b78233 Added more cross-reference targets and tidied up list of useful handlers. by Vinay Sajip · 17 years ago
  41. b1a15e4 Minor changes/corrections in markup. by Vinay Sajip · 17 years ago
  42. b5902e6 Made minor changes/corrections in markup. Added a couple of section headings. by Vinay Sajip · 17 years ago
  43. 99234c5 Minor changes/corrections in markup. by Vinay Sajip · 17 years ago
  44. c2211ad Corrected minor typo and added .currentmodule directives to fix missing cross-references. by Vinay Sajip · 17 years ago
  45. 7c303e9 Corrected an incorrect self-reference. by Vinay Sajip · 17 years ago
  46. 99505c8 Minor documentation changes cross-referencing NullHandler to the documentation on configuring logging in a library. by Vinay Sajip · 17 years ago
  47. 5110486 Minor documentation changes relating to NullHandler, the module used for handlers and references to ConfigParser. by Vinay Sajip · 17 years ago
  48. 430effb Handlers are in the `logging.handlers` module. by Georg Brandl · 17 years ago
  49. 7cc9755 Minor documentation change relating to NullHandler. by Vinay Sajip · 17 years ago
  50. 213faca Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging. by Vinay Sajip · 17 years ago
  51. aa5f873 Bug #3738: Documentation is now more accurate in describing handler close methods. by Vinay Sajip · 17 years ago
  52. 34bfda5 Added section about configuring logging in a library. Thanks to Thomas Heller for the idea. by Vinay Sajip · 17 years ago
  53. 2a649f9 Issue #3389: Allow resolving dotted names for handlers in logging configuration files. Thanks to Philip Jenvey for the patch. by Vinay Sajip · 17 years ago
  54. d77554f Markup fix. by Georg Brandl · 17 years ago
  55. 6dd8cca Document 'utc' parameter by Andrew M. Kuchling · 17 years ago
  56. 392c6fc ConfigParser renaming reversal part 3: move module into place and adapt imports. by Georg Brandl · 17 years ago
  57. e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 17 years ago
  58. e2514c6 Updated import statements to use the new `configparser` module name. by Alexandre Vassalotti · 17 years ago
  59. 0a11f96 Update configparser docs for lowercasing rename. by Georg Brandl · 17 years ago
  60. d192c92 Updated all import statements to use the new socketserver module name. by Alexandre Vassalotti · 17 years ago
  61. dfb5bbd Add a sentence to basicConfig() that is in the docstring. by Georg Brandl · 17 years ago
  62. c7b0592 reformat some documentation of classes so methods and attributes are under the class directive by Benjamin Peterson · 17 years ago
  63. 89a01cd Added updates with respect to recent changes to TimedRotatingFileHandler. by Vinay Sajip · 17 years ago
  64. 91f0ee4 Clarified documentation on use of shutdown(). by Vinay Sajip · 17 years ago
  65. e6dab2a Fix factual error. by Georg Brandl · 17 years ago
  66. 72780a4 Make clear that the constants are strings. by Georg Brandl · 17 years ago
  67. 499969a Add minor markup for a string. by Brett Cannon · 17 years ago
  68. 907a720 A lot more typo fixes by Ori Avtalion. by Georg Brandl · 17 years ago
  69. f38ba78 Added documentation for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
  70. 733024a Minor documentation change - hyperlink tidied up. by Vinay Sajip · 18 years ago
  71. f8e6afb Fix markup. by Georg Brandl · 18 years ago
  72. c740335 Added section on passing contextual information to logging and documentation for the LoggerAdapter class. by Vinay Sajip · 18 years ago
  73. aa0665b Added section about adding contextual information to log output. by Vinay Sajip · 18 years ago
  74. e28fa29 Updated docs for basicConfig to indicate it's a no-op if handlers have been defined for the root logger. by Vinay Sajip · 18 years ago
  75. b19be57 Some cleanup in the docs. by Georg Brandl · 18 years ago
  76. 2b92f6b Diverse markup fixes. by Georg Brandl · 18 years ago
  77. c37f288 Add tutorial and examples to logging docs, from GHOP student "oscar8thegrouch". by Georg Brandl · 18 years ago
  78. 5300428 Bug #1313, fix typo (wrong variable name) in example. by Neal Norwitz · 18 years ago
  79. a739503 Add :term:s for "new-style class". by Georg Brandl · 18 years ago
  80. f0e2918 - mark the findCaller 2-element tuple/3-element tuple change as new in 2.4 by Matthias Klose · 18 years ago
  81. 8ec7f65 Move the 2.6 reST doc tree in place. by Georg Brandl · 18 years ago