mirror of
https://github.com/python/cpython.git
synced 2025-10-21 14:12:27 +00:00
Issue #20358: Tests for curses.window.overlay and curses.window.overwrite
no longer specify min{row,col} > max{row,col}.
This commit is contained in:
parent
f0537e8d1c
commit
23e37aa7b7
2 changed files with 5 additions and 2 deletions
|
@ -115,8 +115,8 @@ def window_funcs(stdscr):
|
||||||
stdscr.notimeout(1)
|
stdscr.notimeout(1)
|
||||||
win2.overlay(win)
|
win2.overlay(win)
|
||||||
win2.overwrite(win)
|
win2.overwrite(win)
|
||||||
win2.overlay(win, 1, 2, 3, 3, 2, 1)
|
win2.overlay(win, 1, 2, 2, 1, 3, 3)
|
||||||
win2.overwrite(win, 1, 2, 3, 3, 2, 1)
|
win2.overwrite(win, 1, 2, 2, 1, 3, 3)
|
||||||
stdscr.redrawln(1,2)
|
stdscr.redrawln(1,2)
|
||||||
|
|
||||||
stdscr.scrollok(1)
|
stdscr.scrollok(1)
|
||||||
|
|
|
@ -142,6 +142,9 @@ IDLE
|
||||||
Tests
|
Tests
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #20358: Tests for curses.window.overlay and curses.window.overwrite
|
||||||
|
no longer specify min{row,col} > max{row,col}.
|
||||||
|
|
||||||
- Issue #19886: Use better estimated memory requirements for bigmem tests.
|
- Issue #19886: Use better estimated memory requirements for bigmem tests.
|
||||||
|
|
||||||
Tools/Demos
|
Tools/Demos
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue