Commit 0e59346e authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

The 'with' statement is now a Code Context block opener

parent 6421af02
...@@ -15,7 +15,7 @@ import re ...@@ -15,7 +15,7 @@ import re
from sys import maxint as INFINITY from sys import maxint as INFINITY
BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for", BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for",
"if", "try", "while"]) "if", "try", "while", "with"])
UPDATEINTERVAL = 100 # millisec UPDATEINTERVAL = 100 # millisec
FONTUPDATEINTERVAL = 1000 # millisec FONTUPDATEINTERVAL = 1000 # millisec
......
...@@ -3,6 +3,8 @@ What's New in IDLE 1.2c1? ...@@ -3,6 +3,8 @@ What's New in IDLE 1.2c1?
*Release date: XX-AUG-2006* *Release date: XX-AUG-2006*
- The 'with' statement is now a Code Context block opener
- Retrieval of previous shell command was not always preserving indentation - Retrieval of previous shell command was not always preserving indentation
(since 1.2a1) Patch 1528468 Tal Einat. (since 1.2a1) Patch 1528468 Tal Einat.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment