Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1822f1cf
Commit
1822f1cf
authored
Jul 18, 2006
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
parent
2beabecc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+11
-0
Lib/idlelib/keybindingDialog.py
Lib/idlelib/keybindingDialog.py
+1
-1
No files found.
Lib/idlelib/NEWS.txt
View file @
1822f1cf
What's New in IDLE 1.2c1?
=========================
*Release date: XX-XXX-2006*
- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
- Colorizer now handles #<builtin> correctly, also unicode strings and
'as' keyword in comment directly following import command. Closes 1325071.
Patch 1479219 Tal Einat
What's New in IDLE 1.2b2?
=========================
...
...
Lib/idlelib/keybindingDialog.py
View file @
1822f1cf
...
...
@@ -202,7 +202,7 @@ class GetKeysDialog(Toplevel):
':'
:
'colon'
,
','
:
'comma'
,
'.'
:
'period'
,
'<'
:
'less'
,
'>'
:
'greater'
,
'/'
:
'slash'
,
'?'
:
'question'
,
'Page Up'
:
'Prior'
,
'Page Down'
:
'Next'
,
'Left Arrow'
:
'Left'
,
'Right Arrow'
:
'Right'
,
'Up Arrow'
:
'Up'
,
'Down Arrow'
:
'Down'
,
'Tab'
:
'
t
ab'
}
'Down Arrow'
:
'Down'
,
'Tab'
:
'
T
ab'
}
if
key
in
translateDict
.
keys
():
key
=
translateDict
[
key
]
if
'Shift'
in
modifiers
and
key
in
string
.
ascii_lowercase
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment