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.

classification
Title: New failures in test_pickletools on 32-bit Windows Vista
Type: Stage: resolved
Components: Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: alexandre.vassalotti Nosy List: alexandre.vassalotti, tim.peters
Priority: normal Keywords:

Created on 2013-11-24 05:09 by tim.peters, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg204180 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-11-24 05:09
Alexandre, this started after your latest checkin (to finish the framing work):

======================================================================
FAIL: test_framing_large_objects (test.test_pickletools.OptimizedPickleTests) (proto=4)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\Code\Python\lib\test\pickletester.py", line 1354, in test_framing_large_objects
    self.assertGreaterEqual(n_frames, len(obj))
AssertionError: 1 not greater than or equal to 3

======================================================================
FAIL: test_framing_many_objects (test.test_pickletools.OptimizedPickleTests) (proto=4)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\Code\Python\lib\test\pickletester.py", line 1342, in test_framing_many_objects
    self.FRAME_SIZE_TARGET * 1)
AssertionError: 368886.0 not less than or equal to 65536

======================================================================
FAIL: test_optional_frames (test.test_pickletools.OptimizedPickleTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\Code\Python\lib\test\pickletester.py", line 1392, in test_optional_frames
    count_opcode(pickle.FRAME, pickled))
AssertionError: 1 not less than 1

----------------------------------------------------------------------
Ran 82 tests in 4.034s

FAILED (failures=3)
test test_pickletools failed
1 test failed:
    test_pickletools
msg204181 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-11-24 05:13
OK!  This went away after a68c303eb8dc was checked in.
History
Date User Action Args
2022-04-11 14:57:54adminsetgithub: 63946
2013-11-24 05:13:02tim.peterssetstatus: open -> closed
resolution: fixed
messages: + msg204181

stage: resolved
2013-11-24 05:09:28tim.peterscreate