Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
cpython
Commits
fee3126e
Commit
fee3126e
authored
23 years ago
by
Andrew M. Kuchling
Browse files
Options
Download
Email Patches
Plain Diff
Catch curses.error instead of a non-existent global (PyChecker)
Edit comment
parent
40ea6177
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/curses/textpad.py
Lib/curses/textpad.py
+2
-2
No files found.
Lib/curses/textpad.py
View file @
fee3126e
...
...
@@ -66,10 +66,10 @@ class Textbox:
if
y
<
self
.
maxy
or
x
<
self
.
maxx
:
# The try-catch ignores the error we trigger from some curses
# versions by trying to write into the lowest-rightmost spot
# in the
self.
window.
# in the window.
try
:
self
.
win
.
addch
(
ch
)
except
ERR
:
except
curses
.
error
:
pass
elif
ch
==
ascii
.
SOH
:
# ^a
self
.
win
.
move
(
y
,
0
)
...
...
This diff is collapsed.
Click to expand it.
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