diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-21 01:44:33 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-21 01:44:33 -0400 |
commit | a43ee1da14ee992df3081b49e458bb82bf0c9ae8 (patch) | |
tree | b4df1723c5763bdbe6ab3acd7f2d3687a3f3337f | |
parent | ff9d875514b03cf9573d03f2de1ef7057da8cfe9 (diff) | |
parent | a4950d875a6d42a910cbbe0e3f9aca2dea206106 (diff) | |
download | cpython-git-a43ee1da14ee992df3081b49e458bb82bf0c9ae8.tar.gz |
Merge with 3.5
-rw-r--r-- | Lib/idlelib/__init__.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Lib/idlelib/__init__.py b/Lib/idlelib/__init__.py index 7a83ddea76..711f61bb69 100644 --- a/Lib/idlelib/__init__.py +++ b/Lib/idlelib/__init__.py @@ -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. +""" |