]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #24861: Add docstring to idlelib.__init__ with 'private' warning.
authorTerry Jan Reedy <tjreedy@udel.edu>
Mon, 21 Sep 2015 05:44:00 +0000 (01:44 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Mon, 21 Sep 2015 05:44:00 +0000 (01:44 -0400)
Lib/idlelib/__init__.py

index 7a83ddea76ca8d00b438223c6130fc9a903b3669..32b7eacd1eac93f43b870bd91a337d7138e0bdec 100644 (file)
@@ -1 +1,8 @@
-# Dummy file to make this a package.
+"""The idlelib package implements the Idle application.
+
+Idle includes an interactive shell and editor.
+Use the files named idle.* to start Idle.
+
+The other files are private implementations.  Their details are subject
+to change.  See PEP 434 for more.  Import them at your own risk.
+"""