diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-06-03 04:54:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-06-03 04:54:32 (GMT) |
commit | 453163d842568dd066cfb5f047f3948d177743d7 (patch) | |
tree | 79d56026ba883ec59810d1eb8dfa476d10ddb39a /Lib/test/test_mutants.py | |
parent | 7b5d0afb1ec0e9cc10e74779d0e80bb1bee83577 (diff) | |
download | cpython-453163d842568dd066cfb5f047f3948d177743d7.zip cpython-453163d842568dd066cfb5f047f3948d177743d7.tar.gz cpython-453163d842568dd066cfb5f047f3948d177743d7.tar.bz2 |
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.
Diffstat (limited to 'Lib/test/test_mutants.py')
-rw-r--r-- | Lib/test/test_mutants.py | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Lib/test/test_mutants.py b/Lib/test/test_mutants.py index 88a3a02..9ee1bb7 100644 --- a/Lib/test/test_mutants.py +++ b/Lib/test/test_mutants.py @@ -215,3 +215,71 @@ print >> f, str(dict) f.close() os.unlink(TESTFN) del f, dict + + +########################################################################## +# And another core-dumper from Michael Hudson. + +dict = {} + +# let's force dict to malloc its table +for i in range(1, 10): + dict[i] = i + +class Machiavelli2: + def __eq__(self, other): + dict.clear() + return 1 + + def __hash__(self): + return 0 + +dict[Machiavelli2()] = Machiavelli2() + +try: + dict[Machiavelli2()] +except KeyError: + pass + +del dict + +########################################################################## +# And another core-dumper from Michael Hudson. + +dict = {} + +# let's force dict to malloc its table +for i in range(1, 10): + dict[i] = i + +class Machiavelli3: + def __init__(self, id): + self.id = id + + def __eq__(self, other): + if self.id == other.id: + dict.clear() + return 1 + else: + return 0 + + def __repr__(self): + return "%s(%s)"%(self.__class__.__name__, self.id) + + def __hash__(self): + return 0 + +dict[Machiavelli3(1)] = Machiavelli3(0) +dict[Machiavelli3(2)] = Machiavelli3(0) + +f = open(TESTFN, "w") +try: + try: + print >> f, dict[Machiavelli3(2)] + except KeyError: + pass +finally: + f.close() + os.unlink(TESTFN) + +del dict |