(help_label=help_label, help_file=help_file)
| 321 | |
| 322 | for help_label, help_file in help_entries: |
| 323 | def show(help_label=help_label, help_file=help_file): |
| 324 | view_text(self.root, help_label, help_file) |
| 325 | menu.add_command(label=help_label, font=menufont, command=show) |
| 326 | return menu |
| 327 |
nothing calls this directly
no test coverage detected