mirror of
https://github.com/python/cpython.git
synced 2025-11-25 12:44:13 +00:00
Merge with 3.2
This commit is contained in:
commit
d3cebd790d
3 changed files with 7 additions and 1 deletions
|
|
@ -3,6 +3,9 @@ What's New in IDLE 3.3?
|
||||||
|
|
||||||
- IDLE can be launched as `python -m idlelib`
|
- IDLE can be launched as `python -m idlelib`
|
||||||
|
|
||||||
|
- Issue #14409: IDLE doesn't not execute commands from shell,
|
||||||
|
error with default keybinding for Return. (Patch by Roger Serwy)
|
||||||
|
|
||||||
- Issue #3573: IDLE hangs when passing invalid command line args
|
- Issue #3573: IDLE hangs when passing invalid command line args
|
||||||
(directory(ies) instead of file(s)).
|
(directory(ies) instead of file(s)).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -596,7 +596,7 @@ class IdleConf:
|
||||||
'<<replace>>': ['<Control-h>'],
|
'<<replace>>': ['<Control-h>'],
|
||||||
'<<goto-line>>': ['<Alt-g>'],
|
'<<goto-line>>': ['<Alt-g>'],
|
||||||
'<<smart-backspace>>': ['<Key-BackSpace>'],
|
'<<smart-backspace>>': ['<Key-BackSpace>'],
|
||||||
'<<newline-and-indent>>': ['<Key-Return> <Key-KP_Enter>'],
|
'<<newline-and-indent>>': ['<Key-Return>', '<Key-KP_Enter>'],
|
||||||
'<<smart-indent>>': ['<Key-Tab>'],
|
'<<smart-indent>>': ['<Key-Tab>'],
|
||||||
'<<indent-region>>': ['<Control-Key-bracketright>'],
|
'<<indent-region>>': ['<Control-Key-bracketright>'],
|
||||||
'<<dedent-region>>': ['<Control-Key-bracketleft>'],
|
'<<dedent-region>>': ['<Control-Key-bracketleft>'],
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #14409: IDLE doesn't not execute commands from shell,
|
||||||
|
error with default keybinding for Return. (Patch by Roger Serwy)
|
||||||
|
|
||||||
- Issue #14416: syslog now defines the LOG_ODELAY and LOG_AUTHPRIV constants
|
- Issue #14416: syslog now defines the LOG_ODELAY and LOG_AUTHPRIV constants
|
||||||
if they are defined in <syslog.h>.
|
if they are defined in <syslog.h>.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue