This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Idle: make 3.x Hyperparser.get_expression recognize ...
Type: enhancement Stage: needs patch
Components: IDLE Versions: Python 3.7, Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: terry.reedy
Priority: normal Keywords:

Created on 2014-06-17 06:58 by terry.reedy, last changed 2022-04-11 14:58 by admin.

Messages (1)
msg220800 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-17 06:58
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: '' != '...'.
History
Date User Action Args
2022-04-11 14:58:05adminsetgithub: 65986
2017-09-28 06:59:39taleinatsetnosy: - taleinat
2017-06-19 23:17:08terry.reedysetassignee: terry.reedy
components: + IDLE
versions: + Python 3.6, Python 3.7, - Python 3.4, Python 3.5
2014-06-17 06:58:02terry.reedycreate