This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nnorwitz
Recipients Thorben, nnorwitz
Date 2007-10-12.05:22:21
SpamBayes Score 0.17103185
Marked as misclassified No
Message-id <1192166546.56.0.219755007952.issue1266@psf.upfronthosting.co.za>
In-reply-to
Content
What platform are you on?  I can reproduce this with 2.5.1+ and trunk on
Ubuntu.  I can reproduce with a trivial C program that does the same
thing.  This could be a bug in the curses implementation.  Or it could
be misuse of the API.  I don't know enough to suggest which is the case.  

The C program is:

#include <curses.h>

int main(int argc, char**argv) {
  WINDOW *win = initscr();
  WINDOW *win2 = newwin(50, 50, 50, 50);
  redrawwin(win2);
  return 0;
}

Perhaps a bug should be filed against curses.
History
Date User Action Args
2007-10-12 05:22:27nnorwitzsetspambayes_score: 0.171032 -> 0.17103185
recipients: + nnorwitz, Thorben
2007-10-12 05:22:26nnorwitzsetspambayes_score: 0.171032 -> 0.171032
messageid: <1192166546.56.0.219755007952.issue1266@psf.upfronthosting.co.za>
2007-10-12 05:22:26nnorwitzlinkissue1266 messages
2007-10-12 05:22:25nnorwitzcreate