[Python-checkins] cpython (3.5): Issue #24759: Add 'private' notice for idlelib.idle_test.

terry.reedy python-checkins at python.org
Sat Jun 4 16:16:29 EDT 2016


https://hg.python.org/cpython/rev/d75a25b3abe1
changeset:   101714:d75a25b3abe1
branch:      3.5
parent:      101711:ab974f1ebebe
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sat Jun 04 16:15:58 2016 -0400
summary:
  Issue #24759: Add 'private' notice for idlelib.idle_test.

files:
  Lib/idlelib/idle_test/__init__.py |  6 ++++++
  1 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Lib/idlelib/idle_test/__init__.py b/Lib/idlelib/idle_test/__init__.py
--- a/Lib/idlelib/idle_test/__init__.py
+++ b/Lib/idlelib/idle_test/__init__.py
@@ -1,3 +1,9 @@
+'''idlelib.idle_test is a private implementation of test.test_idle,
+which tests the IDLE application as part of the stdlib test suite.
+Run IDLE tests alone with "python -m test.test_idle".
+This package and its contained modules are subject to change and
+any direct use is at your own risk.
+'''
 from os.path import dirname
 
 def load_tests(loader, standard_tests, pattern):

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list