Bug 617846

Summary: curses: refresh() for the subpad object does not take any argument
Product: Red Hat Enterprise Linux 6 Reporter: Lubos Kocman <lkocman>
Component: pythonAssignee: Dave Malcolm <dmalcolm>
Status: CLOSED WONTFIX QA Contact: BaseOS QE - Apps <qe-baseos-apps>
Severity: low Docs Contact:
Priority: low    
Version: 6.0   
Target Milestone: rc   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2010-11-22 21:54:57 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Lubos Kocman 2010-07-24 11:11:42 UTC
Description of problem:

subpad.refresh() does not take any argument. This really make subpad unusable object.

Version-Release number of selected component (if applicable):


How reproducible:

Try something like this:

import curses

curses.initscr()

win = newwin(10,10,0,0)
spad=win.subpad(100, 100, 0,0)
spad.refresh() # should be refresh([pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol])

curses.endwin()
  
Actual results:

spad.refresh() takes no argument, which is quiet unusable

Expected results:

spad.refresh([pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol])

Additional info:

http://docs.python.org/library/curses.html

Comment 3 RHEL Program Management 2010-11-22 21:54:57 UTC
Development Management has reviewed and declined this request.  You may appeal
this decision by reopening this request.