File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed
Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -489,9 +489,10 @@ Lib/test/test_html*.py @ezio-melotti
489489Tools /build /parse_html5_entities.py @ ezio-melotti
490490
491491# IDLE
492- Doc /library /idle.rst @ terryjreedy
493- Lib /idlelib / @ terryjreedy
494- Lib /turtledemo / @ terryjreedy
492+ Doc /library /idle.rst @ terryjreedy
493+ Lib /idlelib / @ terryjreedy
494+ Lib /turtledemo / @ terryjreedy
495+ Tools /build /generate_idle_help.py @ terryjreedy
495496
496497# importlib.metadata
497498Doc /library /importlib.metadata.rst @ jaraco @ warsaw
Original file line number Diff line number Diff line change 5050 uses : ./.github/workflows/reusable-docs.yml
5151
5252 check-idle-help-doc :
53- name : " Check if IDLE's help.html is up to date "
53+ name : IDLE help doc
5454 needs : check-docs
5555 uses : ./.github/workflows/reusable-idle-help-doc.yml
5656
Original file line number Diff line number Diff line change 1111
1212jobs :
1313 check-idle-doc-sync :
14- name : ' Check IDLE help.html sync '
14+ name : ' Check if Lib/idlelib/ help.html needs to be regenerated '
1515 runs-on : ubuntu-latest
16- timeout-minutes : 10 # XXX run and possibly lower!
16+ timeout-minutes : 5
1717 steps :
1818 - uses : actions/checkout@v4
1919 with :
2828 with :
2929 python-version : ' 3'
3030 - name : ' Regenerate Lib/idlelib/help.html'
31- run : python Tools/build/generate_idle_help.py
31+ run : python ../ Tools/build/generate_idle_help.py
3232 working-directory : Doc
3333 - name : ' Check for changes'
3434 run : |
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ IDLE --- Python editor and shell
1313 single: Integrated Development Environment
1414
1515..
16- Remember to update Lib/idlelib/help.html with idlelib.help.copy_strip() when modifying this file.
16+ Remember to update Lib/idlelib/help.html with make idlehelp when modifying this file.
1717
1818--------------
1919
Original file line number Diff line number Diff line change @@ -3231,6 +3231,10 @@ rmtestturds:
32313231docclean:
32323232 $(MAKE) -C $(srcdir)/Doc clean
32333233
3234+ .PHONY: idlehelp
3235+ idlehelp:
3236+ @echo "To regenerate Lib/idlelib/help.html, run make idlehelp in the Doc directory."
3237+
32343238# like the 'clean' target but retain the profile guided optimization (PGO)
32353239# data. The PGO data is only valid if source code remains unchanged.
32363240.PHONY: clean-retain-profile
You can’t perform that action at this time.
0 commit comments