[Python-checkins] cpython: Issue #27891: Tweak new idlelib README entry.

terry.reedy python-checkins at python.org
Wed Aug 31 19:37:43 EDT 2016


https://hg.python.org/cpython/rev/28ce37a2d888
changeset:   102979:28ce37a2d888
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Wed Aug 31 19:37:28 2016 -0400
summary:
  Issue #27891: Tweak new idlelib README entry.

files:
  Lib/idlelib/README.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/idlelib/README.txt b/Lib/idlelib/README.txt
--- a/Lib/idlelib/README.txt
+++ b/Lib/idlelib/README.txt
@@ -242,8 +242,8 @@
 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

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


More information about the Python-checkins mailing list