Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/3.6
/
Lib
/
logging
tag
29731c007987cef7fa1aac6d6bdd8ab6e27af679
tagger
Ned Deily <nad@python.org>
Sat Jan 01 00:57:13 2022
object
8d999cbf4adea053be6dbb612b9844635c4dfb8e
Final head of the former 3.6 branch
fed8718
bpo-34415: Updated logging.Formatter docstring. (GH-8811) (GH-8816)
by Miss Islington (bot)
· 7 years ago
b6c1989
[3.6] bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008). (GH-8045)
by Xtreak
· 7 years ago
eb5abdc
bpo-33400: Clarified documentation to indicate no strict adherence to ISO 8601. (GH-6703)
by Miss Islington (bot)
· 7 years ago
b071a5e
bpo-30904: Removed duplicated Host: header. (GH-4465) (#4468)
by Miss Islington (bot)
· 8 years ago
65dffe5
bpo-30989: Sort in TimedRotatingFileHandler only when needed. (GH-2812) (GH-4466)
by Miss Islington (bot)
· 8 years ago
4d9a8f2
bpo-31457: Don't omit inner ``process()`` calls with nested LogAdapters (GH-4044) (GH-4050)
by Miss Islington (bot)
· 8 years ago
537ed75
[3.6] bpo-31457: Make the `LoggerAdapter.manager` property settable (GH-4042) (#4043)
by Miss Islington (bot)
· 8 years ago
20fa05d
[3.6] bpo-31457: Allow for nested LoggerAdapter objects (GH-3551) (#3576)
by Miss Islington (bot)
· 8 years ago
95b4da2
bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1676) (#1903)
by Xiang Zhang
· 8 years ago
46e81d3
bpo-29808: Do not fail in SysLogHandler constructor if syslog isn't available. (#696)
by Vinay Sajip
· 8 years ago
a861d48
Issue #292Merged fixes from 3.5.
by Vinay Sajip
· 9 years ago
924aaae
Issue #29220: Improved fix and test.
by Vinay Sajip
· 9 years ago
d61910c
Fixes #27930: improved QueueListener behaviour.
by Vinay Sajip
· 9 years ago
ab7b0a0
Fixes #27937: optimise code used in all logging calls.
by Vinay Sajip
· 9 years ago
93e6b33
Closes #27930: Merged fix from 3.5.
by Vinay Sajip
· 9 years ago
2500c98
Closes #27935: returned numeric value for 'FATAL' logging level.
by Vinay Sajip
· 9 years ago
0a7b7e3
Fixes #27937: optimise code used in all logging calls.
by Vinay Sajip
· 9 years ago
c075201
Closes #27650: Implemented repr methods for logging objects.
by Vinay Sajip
· 9 years ago
638e622
Closes #27493: accepted Path objects in file handlers for logging.
by Vinay Sajip
· 9 years ago
cccf606
Closes #26559: Allow configuring flush-on-close behaviour of MemoryHandler.
by Vinay Sajip
· 9 years ago
24a72ca
Fixed #27251: merged fix from 3.5.
by Vinay Sajip
· 9 years ago
1bf197e
Fixed #27251: corrected string/bytes handling in credentials.
by Vinay Sajip
· 9 years ago
6d6dd73
merge with 3.5
by Georg Brandl
· 9 years ago
8c16cb9
Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak.
by Georg Brandl
· 9 years ago
c168167
Closes #25685: Merged fix from 3.5.
by Vinay Sajip
· 10 years ago
9cdfd18
Closes #25685: Made SocketHandler emission more efficient.
by Vinay Sajip
· 10 years ago
19e69c5
Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej
by Martin Panter
· 10 years ago
03de71d
Closes #25411: Merged fix from 3.5.
by Vinay Sajip
· 10 years ago
3f445f7
Closes #25411: Merged fix from 3.4.
by Vinay Sajip
· 10 years ago
277640a
Closes #25411: Improved Unicode support in SMTPHandler.
by Vinay Sajip
· 10 years ago
29a1445
Closes #24884: refactored WatchedFileHandler file reopening into a separate method, based on a suggestion and patch by Marian Horban.
by Vinay Sajip
· 10 years ago
7e7a3db
Issue #23865: close() methods in multiple modules now are idempotent and more
by Serhiy Storchaka
· 10 years ago
2116b12
Issue #23865: close() methods in multiple modules now are idempotent and more
by Serhiy Storchaka
· 10 years ago
3505bd8
Issue #23207: merged fix from 3.4.
by Vinay Sajip
· 10 years ago
d55436a
Issue #23207: Improved kwarg validation.
by Vinay Sajip
· 10 years ago
365701a
Added respect_handler_level to QueueListener.
by Vinay Sajip
· 11 years ago
ecb5de3
Closes #23207: logging.basicConfig() now does additional validation of its arguments.
by Vinay Sajip
· 11 years ago
5abca70
Issue #23207: logging.basicConfig() now does additional validation of its arguments.
by Vinay Sajip
· 11 years ago
0298042
Closes #21980: Added a __repr__ for LogRecord.
by Vinay Sajip
· 11 years ago
2fb1efe
Closes #23151: Removed unnecessary initialization.
by Vinay Sajip
· 11 years ago
43052a1
add context parameter to HTTPHandler (closes #22788)
by Benjamin Peterson
· 11 years ago
6c22e65
merge 3.4 (#22788)
by Benjamin Peterson
· 11 years ago
1be0c61
Closes #22776: Merged fix from 3.4.
by Vinay Sajip
· 11 years ago
c33a0cc
Brought excluded code into the scope of a try block in SysLogHandler.emit().
by Vinay Sajip
· 11 years ago
c2c62b1
Closes #22646: Accept list as well as tuple to support initialisation via dictConfig().
by Vinay Sajip
· 11 years ago
16c41ab
Issue #22646: Accept list as well as tuple to support initialisation via dictConfig().
by Vinay Sajip
· 11 years ago
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
a56411e
Closes #22386: merged fix from 3.4.
by Vinay Sajip
· 11 years ago
d1d4fbf
Issue #22386: fixed regression.
by Vinay Sajip
· 11 years ago
f8e9ba0
Closes #21742: Merged fix from 3.4.
by Vinay Sajip
· 11 years ago
0220048
Issue #21742: Set stream to None after closing.
by Vinay Sajip
· 11 years ago
b6cf631
Issue #21709: Merged update from 3.4.
by Vinay Sajip
· 11 years ago
194bcaf
Issue #21709: Improved implementation to cover the frozen module case.
by Vinay Sajip
· 11 years ago
9953762
Closes #21709: Merged fix from 3.4.
by Vinay Sajip
· 11 years ago
80f2262d
Issue #21709: Remove references to __file__ when part of a frozen application.
by Vinay Sajip
· 11 years ago
ddbd2ee
Closes #21203: Updated fileConfig and dictConfig to remove inconsistencies. Thanks to Jure Koren for the patch.
by Vinay Sajip
· 11 years ago
1b76114
Issue #21172: isinstance check relaxed from dict to collections.Mapping.
by Vinay Sajip
· 11 years ago
156307b
Issue #21149: Improved thread-safety in logging cleanup during interpreter shutdown.
by Vinay Sajip
· 11 years ago
b1698d4
Issue #20444: Reduced code duplication.
by Vinay Sajip
· 11 years ago
71dcb28
Issue #20558: Improved implementation of error handling.
by Vinay Sajip
· 11 years ago
7fa767e
Issue #20976: pyflakes: Remove unused imports
by Victor Stinner
· 11 years ago
698abe7
Closes #20918: Added handling for exceptions during fallback output of logging exceptions.
by Vinay Sajip
· 11 years ago
30e6a64
Closes #20242: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
1fd1202
Issue #20242: Fixed basicConfig() format strings for the alternative formatting styles.
by Vinay Sajip
· 12 years ago
a76157d
Issue #19523: Closed FileHandler leak which occurred when delay was set.
by Vinay Sajip
· 12 years ago
5e75829
Closes #19523: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
38c741c
Issue #19182: Fixed socket leak on exception when connecting.
by Vinay Sajip
· 12 years ago
5421f35
logging: added support for Unix domain sockets to SocketHandler and DatagramHandler.
by Vinay Sajip
· 12 years ago
f7b436c
Closes #18941: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
43c6ef1
Issue #18941: Respected delay when doing rollover.
by Vinay Sajip
· 12 years ago
a92a356
Closes #18940: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
d859926
Issue #18940: Handled low-volume logging when delay is True.
by Vinay Sajip
· 12 years ago
3f58277
Closes #18671: Output more information when logging exceptions occur.
by Vinay Sajip
· 12 years ago
cd171c8
Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)
by Brett Cannon
· 12 years ago
0a14066
Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError.
by Brett Cannon
· 12 years ago
3b84eae
Closes #18046: Simplified logging internals relating to levels and their names. Thanks to Alex Gaynor for the patch.
by Vinay Sajip
· 12 years ago
862b15e
Issue #17981: Closed socket on error in SysLogHandler.
by Vinay Sajip
· 12 years ago
3a8f510
Closes #17981: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
40589f4
Closes #17795: Reverted backwards-incompatible change in SysLogHandler with Unix domain sockets.
by Vinay Sajip
· 12 years ago
e917052
Issue #17795: Reverted backwards-incompatible change in SysLogHandler with Unix domain sockets.
by Vinay Sajip
· 12 years ago
a713079
Closed #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler to rotate.
by Vinay Sajip
· 12 years ago
04cc55a
Closes #17540: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
28421c6
Issue #17540: Added style to Formatter configuration by dict.
by Vinay Sajip
· 12 years ago
765531d
Issue #17516: use comment syntax for comments, instead of multiline string
by Victor Stinner
· 12 years ago
8ec95b8
Closes #17521: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
9b862b9
Issue #17521: Merged fix from 3.2.
by Vinay Sajip
· 12 years ago
68b4cc8
Issue #17521: Corrected non-enabling of logger following two calls to fileConfig().
by Vinay Sajip
· 12 years ago
5a63fe6
Closes #17508: Merged fix from 3.3.
by Vinay Sajip
· 12 years ago
340a4bb
Issue #17508: Merged fix from 3.2.
by Vinay Sajip
· 12 years ago
3f885b5
Issue #17508: Handled out-of-order handler configuration correctly.
by Vinay Sajip
· 12 years ago
0166a28
modernize some modules' code by replacing OSError->ENOENT/ENOTDIR/EPERM/EEXIST occurrences with the corresponding pep-3151 exceptions (FileNotFoundError, NotADirectoryError, etc.)
by Giampaolo Rodola'
· 13 years ago
b51aa7b
Issue #9501: Merged fix from 3.3.
by Vinay Sajip
· 13 years ago
6e669fb
Issue #9501: Merged fix from 3.2.
by Vinay Sajip
· 13 years ago
5e1c3ce
Issue #9501: Improved shutdown handling to deal with module attributes correctly.
by Vinay Sajip
· 13 years ago
f7a17b4
Replace IOError with OSError (#16715)
by Andrew Svetlov
· 13 years ago
0832af6
Issue #16717: get rid of socket.error, replace with OSError
by Andrew Svetlov
· 13 years ago
a191959
Issue #16714: use 'raise' exceptions, don't 'throw'.
by Andrew Svetlov
· 13 years ago
5b89840
Issue #16714: use 'raise' exceptions, don't 'throw'.
by Andrew Svetlov
· 13 years ago
737fb89
Issue #16714: use 'raise' exceptions, don't 'throw'.
by Andrew Svetlov
· 13 years ago
d27e05d
Closes #16521: Improved error handling for basicConfig(), added tests for same.
by Vinay Sajip
· 13 years ago
Next »