History log of /external/python/cpython3/Lib/test/test_call.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
38c707e7e0322f9139bb51ad73ede1e3b46985ef 13-Apr-2015 Zachary Ware <zachary.ware@gmail.com> Issue #21741: Update 147 test modules to use test discovery.

I have compared output between pre- and post-patch runs of these tests
to make sure there's nothing missing and nothing broken, on both
Windows and Linux. The only differences I found were actually tests
that were previously *not* run.
/external/python/cpython3/Lib/test/test_call.py
ee8712cda46338d223509cc5751fd36509ad3860 20-May-2008 Benjamin Peterson <benjamin@python.org> #2621 rename test.test_support to test.support
/external/python/cpython3/Lib/test/test_call.py
e2b70bcf7401477936fba99a8bf4a1f759ecc8a3 19-Aug-2006 Guido van Rossum <guido@python.org> Get rid of dict.has_key(). Boy this has a lot of repercussions!
Not all code has been fixed yet; this is just a checkpoint...
The C API still has PyDict_HasKey() and _HasKeyString(); not sure
if I want to change those just yet.
/external/python/cpython3/Lib/test/test_call.py
31017aed36a5c5b0e4b16ca58bea09c9ce360134 04-Mar-2004 Raymond Hettinger <python@rcn.com> SF #904720: dict.update should take a 2-tuple sequence like dict.__init_
(Championed by Bob Ippolito.)

The update() method for mappings now accepts all the same argument forms
as the dict() constructor. This includes item lists and/or keyword
arguments.
/external/python/cpython3/Lib/test/test_call.py
21d3a32b99c5763444c34c189ef653ac9745f3c4 01-May-2003 Walter Dörwald <walter@livinglogic.de> Combine the functionality of test_support.run_unittest()
and test_support.run_classtests() into run_unittest()
and use it wherever possible.

Also don't use "from test.test_support import ...", but
"from test import test_support" in a few spots.

From SF patch #662807.
/external/python/cpython3/Lib/test/test_call.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/cpython3/Lib/test/test_call.py
2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 20-Sep-2001 Fred Drake <fdrake@acm.org> Change the PyUnit-based tests to use the test_main() approach. This
allows using the tests with unittest.py as a script. The tests will
still run when run as a script themselves.
/external/python/cpython3/Lib/test/test_call.py
bea3947fb8426bf3af423fdc7b9e2f4006b2d796 29-May-2001 Jeremy Hylton <jeremy@alum.mit.edu> Variety of test cases for call to builtin functions
/external/python/cpython3/Lib/test/test_call.py