[issue21787] Idle: make 3.x Hyperparser.get_expression recognize ...

2017-09-28 Thread Tal Einat
Change by Tal Einat : -- nosy: -taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue21787] Idle: make 3.x Hyperparser.get_expression recognize ...

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker ___ __

[issue21787] Idle: make 3.x Hyperparser.get_expression recognize ...

2014-06-16 Thread Terry J. Reedy
New submission from Terry J. Reedy: 3.0 introduced ... as Ellipsis literal. Test: add '...\n' to the end of the test code. In test_get_expression, add at the end p = get('12.3') self.assertEqual(p.get_expression(), '...') which now fails with AssertionError: '' != '...'. --