mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
The 'with' statement is now a Code Context block opener
This commit is contained in:
parent
4dc5dd1f3b
commit
2a7ff297c5
2 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,7 @@ import re
|
|||
from sys import maxint as INFINITY
|
||||
|
||||
BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for",
|
||||
"if", "try", "while"])
|
||||
"if", "try", "while", "with"])
|
||||
UPDATEINTERVAL = 100 # millisec
|
||||
FONTUPDATEINTERVAL = 1000 # millisec
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue