- 42ead48 Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424. by Vinay Sajip · 16 years ago
- cbabd7e Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronisms in the code. by Vinay Sajip · 16 years ago
- affbd87 Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler. by Vinay Sajip · 16 years ago
- 96f05e5 Use a real bool for a flag option. by Georg Brandl · 16 years ago
- 6268cbc Issue 5013: Fixed bug in FileHandler when delay was set - added fix for RotatingFileHandler and changed header comment slightly. by Vinay Sajip · 16 years ago
- 458ad47 Merged revisions 68459 via svnmerge from by Benjamin Peterson · 16 years ago
- fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 17 years ago
- 029986a Fix old urllib/urllib2/urlparse usage. by Georg Brandl · 17 years ago
- 2442015 Create http package. #2883. by Georg Brandl · 17 years ago
- a37cfc6 Merged revisions 63402,63405,63411,63457,63467-63468,63480,63507-63508,63516,63534,63541 via svnmerge from by Benjamin Peterson · 17 years ago
- ad9d48d Merged revisions 62090-62091,62096,62100,62102,62110-62114 via svnmerge from by Benjamin Peterson · 17 years ago
- 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 17 years ago
- e7a15bb Merged revisions 60234-60244 via svnmerge from by Christian Heimes · 17 years ago
- 86def6c Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from by Georg Brandl · 17 years ago
- d348b25 Remove several mentions of old Python versions that don't apply anymore. by Georg Brandl · 17 years ago
- 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 18 years ago
- ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 18 years ago
- 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 18 years ago
- 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 18 years ago
- e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 18 years ago
- 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
- fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
- 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- ba205d6 If cPickle isn't available, use pickle. by Guido van Rossum · 19 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 19 years ago
- 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 19 years ago
- 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
- 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
- d952041 TimedRotatingFileHandler now calculates next rollover from previous rollover rather than current time. by Vinay Sajip · 19 years ago
- 74a83e9 Fixed bug in time-to-midnight calculation. by Vinay Sajip · 19 years ago
- 8b6b53f Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch) by Vinay Sajip · 20 years ago
- 245a5ab Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 20 years ago
- 85c1909 Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 20 years ago
- b793506 Added Host and Content-type headers to requests sent by HTTPHandler (suggested by Steven Vereecken) by Vinay Sajip · 20 years ago
- 4600f11 Added optional encoding argument to file handlers. by Vinay Sajip · 20 years ago
- a1974c1 Improved SysLogHandler error recovery (patch by Erik Forsberg) by Vinay Sajip · 20 years ago
- e7d4066 Changes made to maintain 1.5.2 compatibility. by Vinay Sajip · 21 years ago
- fb15417 Fixed bug in DatagramHandler.send() by Vinay Sajip · 21 years ago
- 318a12e Patch #791776: Replace SMTPHandler.date_time with email.Utils.formatdate. by Martin v. Löwis · 21 years ago
- 5e9e9e1 Removed debugging print statements from TimedRotatingFileHandler, and sorted list returned by glob.glob() (SF #987166) by Vinay Sajip · 21 years ago
- 3970c11 Add exception handling for BaseRotatingFileHandler (SF #979252) by Vinay Sajip · 21 years ago
- 4e0e1b6 Whitespace normalization. by Tim Peters · 21 years ago
- 17c52d8 Refactored RotatingFileHandler to create a base class for rotating handlers. Added TimedRotatingFileHandler. by Vinay Sajip · 21 years ago
- 4102478 Removed spurious import statement by Vinay Sajip · 21 years ago
- 3f74284 Minor documentation changes by Vinay Sajip · 21 years ago
- f42d95e Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.close() [SF #901330] by Vinay Sajip · 21 years ago
- 48cfe38 Copyright year change. by Vinay Sajip · 21 years ago
- e21f606 SF bug #835457: Small typo in logging documentation by Raymond Hettinger · 22 years ago
- 6f3eaa6 SF patch #761519: Fixes for bugs 760703 and 757821 by Raymond Hettinger · 22 years ago
- f297bd1 SF patch #725904, Minor changes to logging from module author (Vinay Sajip) by Neal Norwitz · 22 years ago
- 6fa635d SF patch #687683, Patches to logging (updates from Vinay) by Neal Norwitz · 22 years ago
- f4cdb47 amk pointed out that syslog may use UDP or TCP sockets. by Neal Norwitz · 22 years ago
- d89c406 SF #642974, logging SysLogHandler proto type wrong by Neal Norwitz · 22 years ago
- 455ab77 Get rid of #! lines, references to usage as __main__, README.txt, and by Guido van Rossum · 23 years ago
- 57102f8 Adding Vinay Sajip's logging package. by Guido van Rossum · 23 years ago