bpo-36390: IDLE: Combine region formatting methods. (GH-12481)

Rename paragraph.py to format.py and add region formatting methods
from editor.py.  Add tests for the latter.
This commit is contained in:
Cheryl Sabella 2019-07-17 09:44:44 -04:00 committed by Terry Jan Reedy
parent fb26504d14
commit 82494aa6d9
7 changed files with 589 additions and 327 deletions

View file

@ -29,7 +29,7 @@ from idlelib.textview import view_text
from idlelib.autocomplete import AutoComplete
from idlelib.codecontext import CodeContext
from idlelib.parenmatch import ParenMatch
from idlelib.paragraph import FormatParagraph
from idlelib.format import FormatParagraph
from idlelib.squeezer import Squeezer
changes = ConfigChanges()