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
af43e9a2
Commit
af43e9a2
authored
Aug 07, 2010
by
Mark Dickinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #8433: Fix test_curses failure for platforms with recent versions of ncurses.
parent
a62207c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/test/test_curses.py
Lib/test/test_curses.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_curses.py
View file @
af43e9a2
...
...
@@ -220,8 +220,8 @@ def module_funcs(stdscr):
if
availmask
!=
0
:
curses
.
mouseinterval
(
10
)
# just verify these don't cause errors
curses
.
ungetmouse
(
0
,
0
,
0
,
0
,
curses
.
BUTTON1_PRESSED
)
m
=
curses
.
getmouse
()
curses
.
ungetmouse
(
*
m
)
if
hasattr
(
curses
,
'is_term_resized'
):
curses
.
is_term_resized
(
*
stdscr
.
getmaxyx
())
...
...
Misc/NEWS
View file @
af43e9a2
...
...
@@ -126,6 +126,8 @@ Tools/Demos
Tests
-----
- Issue #8433: Fix test_curses failure with newer versions of ncurses.
- Issue #9496: Provide a test suite for the rlcompleter module. Patch by
Michele Orrù.
...
...
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