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 donmez
Recipients donmez, serhiy.storchaka, twouters
Date 2016-01-13.13:53:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452693219.36.0.704649618765.issue25720@psf.upfronthosting.co.za>
In-reply-to
Content
Thats not an issue for ncurses because Include/py_curses.h does:

  #ifdef HAVE_NCURSES_H
  /* configure was checking <curses.h>, but we will
     use <ncurses.h>, which has all these features. */
  #ifndef WINDOW_HAS_FLAGS
  #define WINDOW_HAS_FLAGS 1
  #endif
  #ifndef MVWDELCH_IS_EXPRESSION
  #define MVWDELCH_IS_EXPRESSION 1
  #endif
  #endif

So it overrides WINDOW_HAS_FLAGS for ncurses case.
History
Date User Action Args
2016-01-13 13:53:39donmezsetrecipients: + donmez, twouters, serhiy.storchaka
2016-01-13 13:53:39donmezsetmessageid: <1452693219.36.0.704649618765.issue25720@psf.upfronthosting.co.za>
2016-01-13 13:53:39donmezlinkissue25720 messages
2016-01-13 13:53:39donmezcreate