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 Mark.Shannon
Recipients Mark.Shannon
Date 2012-01-29.23:35:51
SpamBayes Score 0.00070849893
Marked as misclassified No
Message-id <1327880152.89.0.0711859595035.issue13911@psf.upfronthosting.co.za>
In-reply-to
Content
Changing PyDict_MINSIZE to 4 causes the following failure
python -m test.test_trace  
... 
======================================================================
ERROR: test_coverage (__main__.TestCoverage)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/mark/python/cpython/Lib/test/test_trace.py", line 307, in test_coverage
    self._coverage(tracer)
  File "/home/mark/python/cpython/Lib/test/test_trace.py", line 300, in _coverage
    tracer.run(cmd)
  File "/home/mark/python/cpython/Lib/trace.py", line 501, in run
    self.runctx(cmd, dict, dict)
  File "/home/mark/python/cpython/Lib/trace.py", line 509, in runctx
    exec(cmd, globals, locals)
  File "<string>", line 1, in <module>
  File "/home/mark/python/cpython/Lib/test/test_pprint.py", line 479, in test_main
    test.support.run_unittest(QueryTestCase)
  File "/home/mark/python/cpython/Lib/test/support.py", line 1403, in run_unittest
    _run_suite(suite)
  File "/home/mark/python/cpython/Lib/test/support.py", line 1378, in _run_suite
    raise TestFailed(err)
test.support.TestFailed: Traceback (most recent call last):
  File "/home/mark/python/cpython/Lib/test/test_pprint.py", line 273, in test_set_reprs
    self.assertEqual(pprint.pformat(cube), cube_repr_tgt)
AssertionError: '{frozenset(): frozenset({frozenset({2}), frozenset({0}), frozenset({1})}),\n fr [truncated]... != '{frozenset(): frozenset({frozenset({2}), frozenset({0}), frozenset({1})}),\n fr [truncated]...
Diff is 1436 characters long. Set self.maxDiff to None to see it.


======================================================================
ERROR: test_coverage_ignore (__main__.TestCoverage)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/mark/python/cpython/Lib/test/test_trace.py", line 322, in test_coverage_ignore
    self._coverage(tracer)
  File "/home/mark/python/cpython/Lib/test/test_trace.py", line 300, in _coverage
    tracer.run(cmd)
  File "/home/mark/python/cpython/Lib/trace.py", line 501, in run
    self.runctx(cmd, dict, dict)
  File "/home/mark/python/cpython/Lib/trace.py", line 509, in runctx
    exec(cmd, globals, locals)
  File "<string>", line 1, in <module>
  File "/home/mark/python/cpython/Lib/test/test_pprint.py", line 479, in test_main
    test.support.run_unittest(QueryTestCase)
  File "/home/mark/python/cpython/Lib/test/support.py", line 1403, in run_unittest
    _run_suite(suite)
  File "/home/mark/python/cpython/Lib/test/support.py", line 1378, in _run_suite
    raise TestFailed(err)
test.support.TestFailed: Traceback (most recent call last):
  File "/home/mark/python/cpython/Lib/test/test_pprint.py", line 273, in test_set_reprs
    self.assertEqual(pprint.pformat(cube), cube_repr_tgt)
AssertionError: '{frozenset(): frozenset({frozenset({2}), frozenset({0}), frozenset({1})}),\n fr [truncated]... != '{frozenset(): frozenset({frozenset({2}), frozenset({0}), frozenset({1})}),\n fr [truncated]...
Diff is 1436 characters long. Set self.maxDiff to None to see it.
History
Date User Action Args
2012-01-29 23:35:52Mark.Shannonsetrecipients: + Mark.Shannon
2012-01-29 23:35:52Mark.Shannonsetmessageid: <1327880152.89.0.0711859595035.issue13911@psf.upfronthosting.co.za>
2012-01-29 23:35:52Mark.Shannonlinkissue13911 messages
2012-01-29 23:35:51Mark.Shannoncreate