1. 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
  2. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  3. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  4. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  5. 486364b Merged revisions 56020-56124 via svnmerge from by Guido van Rossum · 17 years ago
  6. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  7. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  8. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  9. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  10. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  11. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  12. 8b8a543 Make test_logging pass. by Guido van Rossum · 18 years ago
  13. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  14. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  15. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  16. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
  17. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  18. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  19. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  20. b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
  21. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  22. 9366241 More has_key() fixes. by Guido van Rossum · 18 years ago
  23. ba205d6 If cPickle isn't available, use pickle. by Guido van Rossum · 18 years ago
  24. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  25. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  26. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  27. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  28. 7c30724 More apply() cleanup by Neal Norwitz · 18 years ago
  29. d910855 Remove apply() by Neal Norwitz · 18 years ago
  30. d364a07 Added logThreads and logProcesses to allow conditional omission of logging this information by Vinay Sajip · 18 years ago
  31. ed1992f Added function name to LogRecord. by Vinay Sajip · 19 years ago
  32. 260ce43 Propagate exceptions from shutdown() if raiseExceptions is not set. by Vinay Sajip · 19 years ago
  33. e0f8592 Removed defensive test in Handler.close by Vinay Sajip · 19 years ago
  34. 55cd82f Get test_logging to not hang when running under regrtest.py -R :: by Neal Norwitz · 19 years ago
  35. 7a7160b Added the ability to specify a class attribute in Formatter configuration. Contributed by Shane Hathaway. by Vinay Sajip · 19 years ago
  36. 989b69a Refactoring for fileConfig. Contributed by Shane Hathaway. by Vinay Sajip · 19 years ago
  37. 814fa0f Exceptions raised during renaming in rotating file handlers are now passed to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). by Vinay Sajip · 19 years ago
  38. e928977 Exceptions raised during renaming in rotating file handlers are now passed to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). by Vinay Sajip · 19 years ago
  39. d952041 TimedRotatingFileHandler now calculates next rollover from previous rollover rather than current time. by Vinay Sajip · 19 years ago
  40. 74a83e9 Fixed bug in time-to-midnight calculation. by Vinay Sajip · 19 years ago
  41. 8b6b53f Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch) by Vinay Sajip · 19 years ago
  42. 245a5ab Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 19 years ago
  43. 85c1909 Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 19 years ago
  44. 1e86beb One-off "No handlers..." error message only raised if raiseExceptions is set. by Vinay Sajip · 19 years ago
  45. 1e8659b Don't use a string exception since it's deprecated by Neal Norwitz · 19 years ago
  46. 239322b Optimised Placeholders handling of child loggers by using a dict rather than a list (much slower in the pathological case of hundreds of child Loggers to a Placeholder - problem reported by Ryan Blazecka). by Vinay Sajip · 19 years ago
  47. b793506 Added Host and Content-type headers to requests sent by HTTPHandler (suggested by Steven Vereecken) by Vinay Sajip · 19 years ago
  48. 43d6e81 Fixed bug where the logging message was wrongly being demoted from Unicode to string (SF #1314107) by Vinay Sajip · 19 years ago
  49. 116f16e Added lock acquisition around handler removal from logger by Vinay Sajip · 19 years ago
  50. 0ee9ba2 Added _handlerList to allow shutdown to flush and close handlers in reverse order of creation (see SF# 1282539) by Vinay Sajip · 19 years ago
  51. c384fc2 Changed _srcfile determination to support py2exe. by Vinay Sajip · 19 years ago
  52. 4c1423b Documentation clarified re. config socket listener protocol by Vinay Sajip · 19 years ago
  53. 4a70486 Added threadName and now using re-entrant lock by Vinay Sajip · 19 years ago
  54. 8e628d2 Made traceback unconditional, to avoid lock contention problems when logging errors occur in a custom importer (SF path #1158052). by Vinay Sajip · 19 years ago
  55. 4600f11 Added optional encoding argument to file handlers. by Vinay Sajip · 19 years ago
  56. b89e7c9 Added optional encoding argument to file handlers. Made traceback import unconditional, to avoid lock contention problems which occur when logging from custom importers (SF patch #1158052) by Vinay Sajip · 19 years ago
  57. 612df8e Handle errors in imports of thread, threading by Vinay Sajip · 20 years ago
  58. 829dc51 Improved frame handling for 1.5.2, and now return func from findCaller (not actually used yet) by Vinay Sajip · 20 years ago
  59. a1974c1 Improved SysLogHandler error recovery (patch by Erik Forsberg) by Vinay Sajip · 20 years ago
  60. dccd432 Fixed bug in handling of args in LogRecord.__init__. by Vinay Sajip · 20 years ago
  61. 4ed315a Changed handling of args in LogRecord.__init__. by Vinay Sajip · 20 years ago
  62. e7d4066 Changes made to maintain 1.5.2 compatibility. by Vinay Sajip · 20 years ago
  63. 2d5fee0 Version number updated to 0.4.9.5 by Vinay Sajip · 20 years ago
  64. b2635b2 Added log() function by Vinay Sajip · 20 years ago
  65. 02dd994 Added exception handling during handler initialization in fileConfig() by Vinay Sajip · 20 years ago
  66. b959117 Added getLoggerClass() by Vinay Sajip · 20 years ago
  67. fb15417 Fixed bug in DatagramHandler.send() by Vinay Sajip · 20 years ago
  68. 318a12e Patch #791776: Replace SMTPHandler.date_time with email.Utils.formatdate. by Martin v. Löwis · 20 years ago
  69. eb477d0 Updated Logger.log() docstring to clarify that lvl parameter should be an integer. by Vinay Sajip · 20 years ago
  70. e12f715 Ignore exceptions which occur when closing files in shutdown() by Vinay Sajip · 20 years ago
  71. 5e9e9e1 Removed debugging print statements from TimedRotatingFileHandler, and sorted list returned by glob.glob() (SF #987166) by Vinay Sajip · 20 years ago
  72. 3970c11 Add exception handling for BaseRotatingFileHandler (SF #979252) by Vinay Sajip · 20 years ago
  73. 4bbab2b FileHandler now stores the basename as an absolute path (fix for SF #982049) by Vinay Sajip · 20 years ago
  74. 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
  75. 17c52d8 Refactored RotatingFileHandler to create a base class for rotating handlers. Added TimedRotatingFileHandler. by Vinay Sajip · 20 years ago
  76. 779e0c9 Changed basicConfig() to add keyword arguments. Changes are backward-compatible. by Vinay Sajip · 20 years ago
  77. 4102478 Removed spurious import statement by Vinay Sajip · 20 years ago
  78. 3f74284 Minor documentation changes by Vinay Sajip · 20 years ago
  79. f42d95e Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.close() [SF #901330] by Vinay Sajip · 21 years ago
  80. 3f9f84d Handler close() functions call flush() [SF #901330] by Vinay Sajip · 21 years ago
  81. ed6bb14 Copyright year & version number/version date changes. by Vinay Sajip · 21 years ago
  82. 48cfe38 Copyright year change. by Vinay Sajip · 21 years ago
  83. 326441e Copyright year change. Corrections to comments. Added RESET_ERROR definition. by Vinay Sajip · 21 years ago
  84. e21f606 SF bug #835457: Small typo in logging documentation by Raymond Hettinger · 21 years ago
  85. 6f3eaa6 SF patch #761519: Fixes for bugs 760703 and 757821 by Raymond Hettinger · 21 years ago
  86. a256f7d Fix SF bug #723801, logging.setLoggerClass() doesn't support new-style classes by Neal Norwitz · 21 years ago
  87. f297bd1 SF patch #725904, Minor changes to logging from module author (Vinay Sajip) by Neal Norwitz · 21 years ago
  88. 0df6442 Undo the apply() removals; this code needs to run under Python 1.5.2. by Guido van Rossum · 21 years ago
  89. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  90. 4c641d0 getpid doesn't exist on MacOS9. by Jack Jansen · 22 years ago
  91. 6fa635d SF patch #687683, Patches to logging (updates from Vinay) by Neal Norwitz · 22 years ago
  92. f4cdb47 amk pointed out that syslog may use UDP or TCP sockets. by Neal Norwitz · 22 years ago
  93. d89c406 SF #642974, logging SysLogHandler proto type wrong by Neal Norwitz · 22 years ago
  94. 250684d Use lightweight introspection instead of the inspect module hammer. by Jeremy Hylton · 22 years ago
  95. 2447589 Fix what I believe is a bug: when removing all previous handlers, by Guido van Rossum · 22 years ago
  96. c4d047a SF Patch #638825 by Neal Norwitz · 22 years ago
  97. d1cade0 SF Patch #638825 logging module by Neal Norwitz · 22 years ago
  98. 3165786 From SF patch 638299 [by Vinaj]: fileConfig() now takes an optional by Guido van Rossum · 22 years ago
  99. 455ab77 Get rid of #! lines, references to usage as __main__, README.txt, and by Guido van Rossum · 22 years ago
  100. 57102f8 Adding Vinay Sajip's logging package. by Guido van Rossum · 22 years ago