[Python-checkins] CVS: python/dist/src/Modules _cursesmodule.c,2.54,2.55
A.M. Kuchling
akuchling@users.sourceforge.net
Tue, 04 Sep 2001 12:34:39 -0700
Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv3995
Modified Files:
_cursesmodule.c
Log Message:
[Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it should
have used the attribute argument provided as a parameter
Index: _cursesmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_cursesmodule.c,v
retrieving revision 2.54
retrieving revision 2.55
diff -C2 -d -r2.54 -r2.55
*** _cursesmodule.c 2001/07/19 20:48:32 2.54
--- _cursesmodule.c 2001/09/04 19:34:32 2.55
***************
*** 525,529 ****
}
! return PyCursesCheckERR(wbkgd(self->win, bkgd | A_NORMAL), "bkgd");
}
--- 525,529 ----
}
! return PyCursesCheckERR(wbkgd(self->win, bkgd | attr), "bkgd");
}