From 06d8022675a66f1ffe18a43ed0642847921e439b Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 16 Apr 2021 02:08:07 -0400 Subject: [PATCH] [3.9] bpo-43723: Revert IDLE doc change (GH-25174) Change threading.activeCount to synonym threading.active_count. (cherry picked from commit 56c76df6e861322bdff77bfb21e5cd55fbacfad2) Co-authored-by: Terry Jan Reedy --- Doc/library/idle.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index 6ef15653eacb55..3c302115b5f408 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -732,7 +732,7 @@ intended to be the same as executing the same code by the default method, directly with Python in a text-mode system console or terminal window. However, the different interface and operation occasionally affect visible results. For instance, ``sys.modules`` starts with more entries, -and ``threading.activeCount()`` returns 2 instead of 1. +and ``threading.active_count()`` returns 2 instead of 1. By default, IDLE runs user code in a separate OS process rather than in the user interface process that runs the shell and editor. In the execution