[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: The next blockers are the tests for the other 3 tabs: #31001, #31002, #31093. Steps for converting block of ConfigDialog methods for tab X into a class. Steps are updated from #31050. * In create_widgets, change 'self.create_page_/highlight/keys/extensions/

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 48fcc72c83e1b47b200dd39f9dcc9f62fa0d4d17 by Terry Jan Reedy in branch '3.6': [3.6] bpo-31083: IDLE: Describe the Page classes in configdialog (GH-2965) (#2973) https://github.com/python/cpython/commit/48fcc72c83e1b47b200dd39f9dcc9f62fa0d4d17 --

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +3018 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6f446bee4f6ac0c61bb2c3386a0149fd36855793 by Terry Jan Reedy (csabella) in branch 'master': bpo-31083: IDLE: Describe the Page classes in configdialog (#2965) https://github.com/python/cpython/commit/6f446bee4f6ac0c61bb2c3386a0149fd36855793 -

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Cheryl Sabella
Changes by Cheryl Sabella : -- pull_requests: +3012, 3013 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-31 Thread Cheryl Sabella
Changes by Cheryl Sabella : -- pull_requests: +3013 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue31083] IDLE: document new TabPage(Frame) design for configdialog

2017-07-30 Thread Terry J. Reedy
New submission from Terry J. Reedy: We are in the process of moving blocks of ConfigDialog methods pertaining to one tab page to a separate class. FontPage is more or less done. GenPage is in process. This issue is about documenting the generic structure of the classes in a comment block. T