diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2017-07-30 09:41:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-30 09:41:45 (GMT) |
commit | 2543f50033208c1a8df04999082b11aa09e82a04 (patch) | |
tree | b74c99e4821404d6dfdc4d0076e0810690bcff73 /Misc | |
parent | 78c18a9b9a1445f7c755929917a790ba02b4a5e0 (diff) | |
download | cpython-2543f50033208c1a8df04999082b11aa09e82a04.zip cpython-2543f50033208c1a8df04999082b11aa09e82a04.tar.gz cpython-2543f50033208c1a8df04999082b11aa09e82a04.tar.bz2 |
bpo-30522: Implemented a method to allow setting a logging.StreamHander's stream. (GH-2921)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-07-30-10-07-58.bpo-30522.gAX1N-.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-07-30-10-07-58.bpo-30522.gAX1N-.rst b/Misc/NEWS.d/next/Library/2017-07-30-10-07-58.bpo-30522.gAX1N-.rst new file mode 100644 index 0000000..214f98e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-07-30-10-07-58.bpo-30522.gAX1N-.rst @@ -0,0 +1,2 @@ +Added a ``setStream`` method to ``logging.StreamHandler`` to allow the +stream to be set after creation. |