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