History log of /external/python/cpython2/Lib/test/test_curses.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
ad6a99c0111a9291b5b0c09507cd821e9c4937fb 10-Sep-2016 Martin Panter <vadmium+py@gmail.com> Correct print() calls to print a blank line in various test cases
/external/python/cpython2/Lib/test/test_curses.py
505989c0e701b105bb67b8b4c55681b0328171fe 16-Aug-2016 Benjamin Peterson <benjamin@python.org> fail when negative values are passed to instr()
/external/python/cpython2/Lib/test/test_curses.py
f670120cb76f0aa66ec29c683e740eddcf45ca4a 14-Aug-2016 Benjamin Peterson <benjamin@python.org> do not allow reading negative values with getstr()
/external/python/cpython2/Lib/test/test_curses.py
4183387e7920e385b492273cc32232a7cf3ea84f 18-Jun-2016 Serhiy Storchaka <storchaka@gmail.com> Issue #27294: Numerical state in the repr for Tkinter event objects is now
represented as a compination of known flags.
/external/python/cpython2/Lib/test/test_curses.py
a8a259eedb6a78d5d157f4868b066b90ff9092da 22-May-2016 Serhiy Storchaka <storchaka@gmail.com> Backported curses tests.
/external/python/cpython2/Lib/test/test_curses.py
aa6c297316a62baed42f10508cf21d781b0fbee4 22-Jun-2013 Andrew Kuchling <amk@amk.ca> #18113: avoid segfault if Py_XDECREF triggers code that calls set_panel_userptr again

Problem noted & original patch by Serhiy Storchaka; I tweaked the patch a bit.
/external/python/cpython2/Lib/test/test_curses.py
a49dcc51b8fcdcdf06f1e5b136b5835d754a0d05 15-Jun-2013 Andrew Kuchling <amk@amk.ca> #18113: Objects associated to a curses.panel object with set_userptr() were leaked.

Reported by Atsuo Ishimoto.
/external/python/cpython2/Lib/test/test_curses.py
2866933cd63dd32ba2a0ce7f888d765265636b41 07-Aug-2010 Mark Dickinson <dickinsm@gmail.com> Merged revisions 83780 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r83780 | mark.dickinson | 2010-08-07 13:33:36 +0100 (Sat, 07 Aug 2010) | 1 line

Issue #8433: Fix test_curses failure for platforms with recent versions of ncurses.
........
/external/python/cpython2/Lib/test/test_curses.py
449aa86bd6a7d41f810dc85c86a7cfaf9c50bc9a 03-Jun-2010 Stefan Krah <stefan@bytereef.org> Issue #7384: If the system readline library is linked against ncurses,
the curses module must be linked against ncurses as well. Otherwise it
is not safe to load both the readline and curses modules in an application.

Thanks Thomas Dickey for answering questions about ncurses/ncursesw
and readline!
/external/python/cpython2/Lib/test/test_curses.py
45ad801ed0a4ec2554251b247fd7f506d6f815eb 21-Feb-2010 Mark Dickinson <dickinsm@gmail.com> Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests to complete.
/external/python/cpython2/Lib/test/test_curses.py
d9f1944fc30510e8c4f8c159602d202a5f2293f6 19-Oct-2009 R. David Murray <rdmurray@bitdance.com> Only run test_curses when sys.__stdout__ is a tty. This eliminates the
last false positive when running regrtest with -j.
/external/python/cpython2/Lib/test/test_curses.py
b49e53ee16eba81fb9548843d24d1cc328f2095a 26-Sep-2009 Andrew M. Kuchling <amk@amk.ca> #6243: fix segfault when keyname() returns a NULL pointer.

Bug noted by Trundle, patched by Trundle and Jerry Chen.
/external/python/cpython2/Lib/test/test_curses.py
5217c0848a561aefe3b454189471c2199a06cc18 10-Jun-2009 Amaury Forgeot d'Arc <amauryfa@gmail.com> Missing import in test_curses, uncovered by some buildbots.
(There are still a few test files that don't use the standard layout)
/external/python/cpython2/Lib/test/test_curses.py
3db8a3432bd84b58bdc7da2c9872777c537a4d09 31-Mar-2009 R. David Murray <rdmurray@bitdance.com> Change more tests to use import_module for the modules that
should cause tests to be skipped. Also rename import_function
to the more descriptive get_attribute and add a docstring.
/external/python/cpython2/Lib/test/test_curses.py
bec087f29d7dca0aaf8f51be7d7c135e9b84e7f1 26-Mar-2009 Benjamin Peterson <benjamin@python.org> fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
/external/python/cpython2/Lib/test/test_curses.py
888a39b54c4f47ee25d53b157e2c50402627cd0b 26-Mar-2009 Benjamin Peterson <benjamin@python.org> remove test_support.TestSkipped and just use unittest.SkipTest
/external/python/cpython2/Lib/test/test_curses.py
aa5e3cea7aeabd4d1c2ad61a60b538c0f842799d 25-Feb-2008 Andrew M. Kuchling <amk@amk.ca> Move .setupterm() output so that we don't try to call endwin() if it fails
/external/python/cpython2/Lib/test/test_curses.py
400a49ba794b343a8ff46a6f736ad846be80454a 11-Apr-2007 Andrew M. Kuchling <amk@amk.ca> Add window.chgat() method, submitted via e-mail by Fabian Kreutz
/external/python/cpython2/Lib/test/test_curses.py
ea5962f86e8550978446724dadcacd60e03feef2 12-Mar-2007 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_curses.py
d391f0855c7996ebe82a2980b068dcad1076817a 06-Mar-2007 Walter Dörwald <walter@livinglogic.de> Patch for bug #1633621: if curses.resizeterm() or
curses.resize_term() is called, update _curses.LINES,
_curses.COLS, curses.LINES and curses.COLS.
/external/python/cpython2/Lib/test/test_curses.py
4994d9546c723c01c2f4b34a401c544c859d3404 19-Jun-2006 Walter Dörwald <walter@livinglogic.de> Patch #1506645: add Python wrappers for the curses functions
is_term_resized, resize_term and resizeterm. This uses three
separate configure checks (one for each function).
/external/python/cpython2/Lib/test/test_curses.py
e94e3b440f0619585701970c22e538f9059a38bd 06-Apr-2006 Anthony Baxter <anthonybaxter@gmail.com> In some environments (under screen, in a chroot) curses doesn't support
mouse events. This makes the test fail. Catch that case and don't run
the tests. Should make the debian/ubuntu buildbots that run in a chroot
work again.

Will backport to release24-maint.
/external/python/cpython2/Lib/test/test_curses.py
768018592cabfbf1e3199bd25b14ceec54476ce3 04-Apr-2006 Anthony Baxter <anthonybaxter@gmail.com> cygwin's curses support isn't up to scratch to run the tests.
/external/python/cpython2/Lib/test/test_curses.py
05f5ba9636cb0c8692e186553ce18fb5ab77b744 12-Jan-2006 Georg Brandl <georg@python.org> Test curses.setupterm() before initscr().
/external/python/cpython2/Lib/test/test_curses.py
88bbd73d0763bb4df48d45791dafbef76c2e17a5 10-Jan-2006 Neal Norwitz <nnorwitz@gmail.com> SF bug #1400822, Extended version of _curses over{lay,write} does not work

Fix signatures to conform to doc (also fixed ungetmouse()).

Will backport.
/external/python/cpython2/Lib/test/test_curses.py
5e3d862392acc3b6862c6393bfbca7450523717d 09-Jan-2006 Neal Norwitz <nnorwitz@gmail.com> Bug #1400115, Fix segfault when calling curses.panel.userptr()
without prior setting of the userptr.

Will backport.
/external/python/cpython2/Lib/test/test_curses.py
9f39f6853342df9af677810f65f655cc58c20986 06-Jan-2006 Neal Norwitz <nnorwitz@gmail.com> initscr() will exit if there's an error. Try to catch the obvious failure
cases if TERM isn't set or is unknown (perhaps we should only check if
unset or empty?)

Skip the test if TERM isn't set. This seems to occur when running under
buildbot and presumably cron.

For some more info check here:
http://mail.python.org/pipermail/python-checkins/2006-January/048704.html

Will backport if it works.
/external/python/cpython2/Lib/test/test_curses.py
eeab7da5914f67a54223e17d370318c5cb6b83ba 05-Jan-2006 Neal Norwitz <nnorwitz@gmail.com> Skip test_curses if stdin is not a tty (like when run from cron or buildbot). Will backport.
/external/python/cpython2/Lib/test/test_curses.py
d1badac99c01aeb15a261d262fff1c402c4f24e9 15-Jun-2005 Andrew M. Kuchling <amk@amk.ca> [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite
/external/python/cpython2/Lib/test/test_curses.py
2b3feec58f82fee5a8f74ef78e7061bfb73f09a2 07-Aug-2004 Michael W. Hudson <mwh@python.net> This is more-or-less:

[ 1005123 ] test_curses fails on MacOS X 10.3

Be a bit more guarded about what we expect a terminal to be capable
of.
/external/python/cpython2/Lib/test/test_curses.py
58eb11cf62dd04ccc2c364b62fd51b4265e2e203 18-Jan-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_curses.py
e8792c1f65ebbcbd7958570c66c6bc4132052c12 29-Aug-2003 Andrew M. Kuchling <amk@amk.ca> Add tests for meta- bit set
/external/python/cpython2/Lib/test/test_curses.py
e752e20605f3fbcf9976187d3243b2fb01c7d8de 29-Aug-2003 Andrew M. Kuchling <amk@amk.ca> Add simple unit test for ascii.unctrl() function
/external/python/cpython2/Lib/test/test_curses.py
69f31eb80c86f74cf35ae313870f87b6611293fa 14-Aug-2003 Andrew M. Kuchling <amk@amk.ca> [Patch #739124] Add use_default_colors() to curses module
/external/python/cpython2/Lib/test/test_curses.py
ff41c48a77b7d1411ce97190c8b8405bdaa261e1 06-Apr-2003 Raymond Hettinger <python@rcn.com> SF patch #701494: more apply removals
/external/python/cpython2/Lib/test/test_curses.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_curses.py
2158df0b4d8358b5efdcac3024e8cc6d6c92d981 22-Oct-2001 Andrew M. Kuchling <amk@amk.ca> Patch #473187: Add a test script that exercises most of the functions in
the curses module. It's not run automatically; '-u curses' must be
specified as an argument to regrtest
/external/python/cpython2/Lib/test/test_curses.py