This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Make turtledemo 2.7 help show file contents, not file name.
Type: behavior Stage: resolved
Components: Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: python-dev, terry.reedy
Priority: normal Keywords:

Created on 2014-06-22 05:50 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg221219 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-22 05:50
When Demo/turtle/turtleDemo.py is run and the user selects any of the 3 Help menu entries, the filename is displayed in the test viewer instead of the file contents. The bug is that the 3 showxyz functions call textView.TextViewer directly, with the filename, instead of the viewfile function that opens and reads the file and passes the contents on to TextViewer.
msg221222 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-06-22 06:32
New changeset 9778d37c2d18 by Terry Jan Reedy in branch '2.7':
Issue #21824: Turtledemo 2.7 help menu entries now display help text instead
http://hg.python.org/cpython/rev/9778d37c2d18
History
Date User Action Args
2022-04-11 14:58:05adminsetgithub: 66023
2014-06-22 06:33:14terry.reedysetstatus: open -> closed
resolution: fixed
stage: needs patch -> resolved
2014-06-22 06:32:42python-devsetnosy: + python-dev
messages: + msg221222
2014-06-22 06:02:29terry.reedylinkissue17172 dependencies
2014-06-22 05:50:45terry.reedycreate