File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,27 @@ Released on 2017-03-26?
3
3
======================================
4
4
5
5
6
+ bpo-21474: Update word/identifier definition from ascii to unicode.
7
+ In text and entry boxes, this affects selection by double-click,
8
+ movement left/right by control-left/right, and deletion left/right
9
+ by control-BACKSPACE/DEL.
10
+
11
+ bpo-33204: Consistently color invalid string prefixes.
12
+ A 'u' string prefix cannot be paired with either 'r' or 'f'.
13
+ IDLE now consistently colors as much of the prefix, starting at the
14
+ right, as is valid. Revise and extend colorizer test.
15
+
16
+ bpo-32984: Set __file__ while running a startup file.
17
+ Like Python, IDLE optionally runs 1 startup file in the Shell window
18
+ before presenting the first interactive input prompt. For IDLE,
19
+ option -s runs a file named in environmental variable IDLESTARTUP or
20
+ PYTHONSTARTUP; -r file runs file. Python sets __file__ to the startup
21
+ file name before running the file and unsets it before the first
22
+ prompt. IDLE now does the same when run normally, without the -n
23
+ option.
24
+
25
+ bpo-32940: Replace StringTranslatePseudoMapping with faster code.
26
+
6
27
bpo-32916: Change 'str' to 'code' in idlelib.pyparse and users.
7
28
8
29
bpo-32905: Remove unused code in pyparse module.
You can’t perform that action at this time.
0 commit comments