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.

Author terry.reedy
Recipients terry.reedy, zach.ware
Date 2015-09-23.03:42:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442979755.02.0.25591432423.issue25218@psf.upfronthosting.co.za>
In-reply-to
Content
This continues #16893, which replaced help.txt with help.html for the Idle doc display.  It also replaced the display classes with new classes in help.py.  I currently create help.html in a .bat file.  With Doc as current directory, it uses
  ..\pcbuild\python_d.exe -c "from idlelib.help import copy_strip; copy_strip()"
With a change to the help.py if __name__ block so that
  ..\pcbuild\python_d.exe -m idlelib.help copy_strip
would work.

This issue is first about revising Zack Ware's makefile patch, https://bugs.python.org/file36975/issue16893-v4.diff, which adds an 'idledoc' target.  It is attached to #16893.  It needs 'copy' replaced by 'copy, strip, and rename'. The command above requires finding a compatible python.exe, and I do not know if that is a problem.

In normal use, 'idledoc' should only be invoked for the earliest 3.x getting maintenance patches, and the result merged forward.

If this is resolved, it would be nice if the new 'idledoc' target were built as apart of the release process, and any changes checked in.  But the latter should currently still be done for all 3.x branches
History
Date User Action Args
2015-09-23 03:42:35terry.reedysetrecipients: + terry.reedy, zach.ware
2015-09-23 03:42:35terry.reedysetmessageid: <1442979755.02.0.25591432423.issue25218@psf.upfronthosting.co.za>
2015-09-23 03:42:34terry.reedylinkissue25218 messages
2015-09-23 03:42:34terry.reedycreate