summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/HyperParser.py
Commit message (Collapse)AuthorAgeFilesLines
* [2.7] bpo-35133: Fix mistakes when concatenate string literals on different ↵Serhiy Storchaka2018-11-051-1/+1
| | | | | | | | | | | | lines. (GH-10284) (GH-10335) (GH-10336) Two kind of mistakes: 1. Missed space. After concatenating there is no space between words. 2. Missed comma. Causes unintentional concatenating in a list of strings. (cherry picked from commit 34fd4c20198dea6ab2fe8dc6d32d744d9bde868d) (cherry picked from commit 7054e5c80b6e98cd44e22d1bc2d7f0a94343089d)
* Issue #21686: add unittest for idlelib.HyperParser. Original patch by SaimadhavTerry Jan Reedy2014-06-161-3/+8
| | | | Heblikar.
* whitespaceTerry Jan Reedy2014-06-161-1/+1
|
* Issue #21686: idlelib/HyperParser.py - Update docstrings and comments andTerry Jan Reedy2014-06-161-80/+84
| | | | replace \ line contiuation. Tested against nearly done test_hyperparser.py.
* Issue #16819: IDLE method completion now correctly works for unicode literals.Serhiy Storchaka2013-01-011-0/+5
|
* #7092: silence some py3k warningsFlorent Xicluna2010-04-021-1/+1
|
* #7092: Fix additional "-3" warnings in the idlelib package, and convert to ↵Florent Xicluna2010-04-021-1/+1
| | | | absolute imports.
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-181-0/+241
A idlelib/AutoCompleteWindow.py A idlelib/AutoComplete.py A idlelib/HyperParser.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/configDialog.py M idlelib/EditorWindow.py M idlelib/PyParse.py M idlelib/CallTips.py M idlelib/CallTipWindow.py M idlelib/run.py M idlelib/config-extensions.def A idlelib/MultiCall.py