summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2022-08-31 09:50:29 (GMT)
committerGitHub <noreply@github.com>2022-08-31 09:50:29 (GMT)
commit29f1b0bb1ff73dcc28f0ca7e11794141b6de58c9 (patch)
treedaf510cf627f7543a608ee60799fcf2a059d4660 /Misc
parentf7e7bf161aaec5a5cffdcec7c97e1f09e445421b (diff)
downloadcpython-29f1b0bb1ff73dcc28f0ca7e11794141b6de58c9.zip
cpython-29f1b0bb1ff73dcc28f0ca7e11794141b6de58c9.tar.gz
cpython-29f1b0bb1ff73dcc28f0ca7e11794141b6de58c9.tar.bz2
gh-89258: Add a getChildren() method to logging.Logger. (GH-96444)
Co-authored-by: Éric <merwok@netwok.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-08-29-07-04-03.gh-issue-89258.ri7ncj.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-08-29-07-04-03.gh-issue-89258.ri7ncj.rst b/Misc/NEWS.d/next/Library/2022-08-29-07-04-03.gh-issue-89258.ri7ncj.rst
new file mode 100644
index 0000000..74300c1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-08-29-07-04-03.gh-issue-89258.ri7ncj.rst
@@ -0,0 +1,2 @@
+Added a :meth:`~logging.Logger.getChildren` method to
+:class:`logging.Logger`, to get the immediate child loggers of a logger.