diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-31 23:37:28 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-31 23:37:28 (GMT) |
commit | 83a1045200b6224d76fad823a0c6f9c8f929c516 (patch) | |
tree | c8e7f54c96bcaf706996ad514b98046c148500f2 | |
parent | 112835cb3e8423046a21e427d050f3e3fefe622b (diff) | |
download | cpython-83a1045200b6224d76fad823a0c6f9c8f929c516.zip cpython-83a1045200b6224d76fad823a0c6f9c8f929c516.tar.gz cpython-83a1045200b6224d76fad823a0c6f9c8f929c516.tar.bz2 |
Issue #27891: Tweak new idlelib README entry.
-rw-r--r-- | Lib/idlelib/README.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/README.txt b/Lib/idlelib/README.txt index e52b5cd..a879c17 100644 --- a/Lib/idlelib/README.txt +++ b/Lib/idlelib/README.txt @@ -242,8 +242,8 @@ Sort 'from idlelib import mod1' and 'from idlelib.mod2 import object' together by module, ignoring within module objects. Put 'import __main__' after other idlelib imports. -Imports only needed for testing are not at the top but are put in the -htest function def or the "if __name__ == '__main__'" clause. +Imports only needed for testing are put not at the top but in an +htest function def or "if __name__ == '__main__'" clause. Within module imports like "from idlelib.mod import class" may cause circular imports to deadlock. Even without this, circular imports may |