[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.6 ___ Python tracker

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-08-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 5c89c2fd8a0be0ad2f89f084775c5f9f76687237 by Terry Jan Reedy in branch '3.6': [3.6] bpo-30617: IDLE: docstrings and unittest for outwin.py (GH-2046) (#3223) https://github.com/python/cpython/commit/5c89c2fd8a0be0ad2f89f084775c5f9f76687237

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +3265 ___ Python tracker ___ ___

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-08-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 998f4966bf0c591f3e8b3d07eccad7501f60f524 by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-30617: IDLE: docstrings and unittest for outwin.py (#2046) https://github.com/python/cpython/commit/998f4966bf0c591f3e8b3d07eccad7501f60f524

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-08-27 Thread Cheryl Sabella
Changes by Cheryl Sabella : -- pull_requests: +3261 ___ Python tracker ___ ___

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-06-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks! I've added more unittests. They are passing, but I'm getting a callback error that I don't understand. The same _utest flag that's on the textview dialog didn't seem to work and I was just blindly trying things without success. Also, the window is

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-06-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: A1: yes, add if __name__ == '__main__': import unittest unittest.main('idlelib.idle_test.test_outwin', verbosity=2, exit=False) I will have to think about whether and how to add an htest. The grep (find in files) test actually displays greps results

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-06-09 Thread Cheryl Sabella
Cheryl Sabella added the comment: Questions about outwin.py: 1. Should a main() be added for htest and unittest? 2. In _file_line_helper, to test if the file exists, the file is opened, then closed. Would os.path.isfile work here? Questions about tests: 1. OutputWindow is an EditorWindow

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-06-09 Thread Cheryl Sabella
New submission from Cheryl Sabella: For issue 30422. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-06-09 Thread Cheryl Sabella
Changes by Cheryl Sabella : -- pull_requests: +2108 ___ Python tracker ___ ___

[issue30617] IDLE: Add docstrings and unittests to outwin.py

2017-06-09 Thread Cheryl Sabella
Changes by Cheryl Sabella : -- assignee: terry.reedy components: IDLE nosy: csabella, terry.reedy priority: normal severity: normal status: open title: IDLE: Add docstrings and unittests to outwin.py type: enhancement versions: Python 3.7