History log of /external/python/cpython2/Lib/test/test_mutants.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
9a118f1dc3f23ead28f31fdc5144ad5ce01e5b7f 17-Apr-2016 Serhiy Storchaka <storchaka@gmail.com> Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
/external/python/cpython2/Lib/test/test_mutants.py
dde5b94875460e704099593766f4a5bc3279483d 03-Feb-2010 Ezio Melotti <ezio.melotti@gmail.com> #7092: Silence more py3k warnings. Patch by Florent Xicluna.
/external/python/cpython2/Lib/test/test_mutants.py
ce8e33a095030e7af94f58f9da196b240bdf0476 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
/external/python/cpython2/Lib/test/test_mutants.py
3ddc435af6873c6304058d7bcbcb19ee4fba7781 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
/external/python/cpython2/Lib/test/test_mutants.py
a22975fb35e1bae0f85fc6ede1572264a7bcd1e6 05-Sep-2006 Neal Norwitz <nnorwitz@gmail.com> Fix SF bug #1546288, crash in dict_equal.
/external/python/cpython2/Lib/test/test_mutants.py
2fcf206a6f916003e891232a08d3a98cdf48a024 25-Nov-2005 Neal Norwitz <nnorwitz@gmail.com> Fix typo in comment.

Delete globals which contain variable information at the end of the test.
This makes the test stable (no reported leaks) when running regrtest -R
to find reference leaks.
/external/python/cpython2/Lib/test/test_mutants.py
57179feec8b0b22a81ec70b4f4037a17f06fd415 15-May-2005 Armin Rigo <arigo@tunes.org> This test relied on short-circuiting details of dictobject.py to avoid
crashing, and indirectly on the fact that hash codes in
random.randrange(1000000000) were very unlikely to exhibit collisions.
To see the problem, replace this number with 500 and observe the crash on
either del target[key] or del keys[i].

The fix prevents recursive mutation, just as in the key insertion case.
/external/python/cpython2/Lib/test/test_mutants.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_mutants.py
453163d842568dd066cfb5f047f3948d177743d7 03-Jun-2001 Tim Peters <tim.peters@gmail.com> lookdict: stop more insane core-dump mutating comparison cases. Should
be possible to provoke unbounded recursion now, but leaving that to someone
else to provoke and repair.
Bugfix candidate -- although this is getting harder to backstitch, and the
cases it's protecting against are mondo contrived.
/external/python/cpython2/Lib/test/test_mutants.py
fa517b277f716bb3fb79e40b0bfb682d4f49ac29 02-Jun-2001 Tim Peters <tim.peters@gmail.com> Fix comment.
/external/python/cpython2/Lib/test/test_mutants.py
23cf6be23cc4cd1efa8b7100ff1a6a179cb16092 02-Jun-2001 Tim Peters <tim.peters@gmail.com> Coredumpers from Michael Hudson, mutating dicts while printing or
converting to string.
Critical bugfix candidate -- if you take this seriously <wink>.
/external/python/cpython2/Lib/test/test_mutants.py
4c02fecf9c1f8a890b04ed3501aa68a636050e38 10-May-2001 Tim Peters <tim.peters@gmail.com> Make test_mutants stronger by also adding random keys during comparisons.
A Mystery: test_mutants ran amazingly slowly even before dictobject.c
"got fixed". I don't have a clue as to why. dict comparison was and
remains linear-time in the size of the dicts, and test_mutants only tries
100 dict pairs, of size averaging just 50. So "it should" run in less than
an eyeblink; but it takes at least a second on this 800MHz box.
/external/python/cpython2/Lib/test/test_mutants.py
8c3e91efaf6508e73fa997b95ef85b66f7cb5d63 10-May-2001 Tim Peters <tim.peters@gmail.com> Repair typos in comments.
/external/python/cpython2/Lib/test/test_mutants.py
95bf9390a488004f66db1eccaa049203ef8ab5b3 10-May-2001 Tim Peters <tim.peters@gmail.com> SF bug #422121 Insecurities in dict comparison.
Fixed a half dozen ways in which general dict comparison could crash
Python (even cause Win98SE to reboot) in the presence of kay and/or
value comparison routines that mutate the dict during dict comparison.
Bugfix candidate.
/external/python/cpython2/Lib/test/test_mutants.py