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 akuchling
Recipients akuchling, maswan, nnorwitz, psmedley
Date 2008-01-21.13:48:02
SpamBayes Score 0.01639913
Marked as misclassified No
Message-id <1200923284.08.0.799143518594.issue1745108@psf.upfronthosting.co.za>
In-reply-to
Content
I don't see how win->win could be uninitialized.  curses.newwin() creates 
a PyCursesWindowObject using PyCursesWindow_New(), which always fills in
the ->win field.

I'm puzzled by the 2007-06-28 traceback.  Pycurses_new_panel has args =
0x0000000110246dc0; args should be a Python tuple containing the
function's arguments.  But the new_panel call has
win=0x0000000110246dc0, the exact same pointer, which is obviously
wrong.  The code in PyCurses_new_panel does win->win, though, so the
pointer should be different.  Perhaps the traceback is wrong?  Or
perhaps this is a code-generation bug affecting PyCurses_new_panel? 
(But that function is small and straightforward -- I find it hard to
imagine a compiler getting it wrong.)
History
Date User Action Args
2008-01-21 13:48:04akuchlingsetspambayes_score: 0.0163991 -> 0.01639913
recipients: + akuchling, nnorwitz, psmedley, maswan
2008-01-21 13:48:04akuchlingsetspambayes_score: 0.0163991 -> 0.0163991
messageid: <1200923284.08.0.799143518594.issue1745108@psf.upfronthosting.co.za>
2008-01-21 13:48:02akuchlinglinkissue1745108 messages
2008-01-21 13:48:02akuchlingcreate