Source: cloudpickle Version: 3.0.0-2 Severity: serious User: debian-pyt...@lists.debian.org Usertags: python3.13
Hi Maintainer cloudpickle's autopkgtests fail with Python 3.13 [1]. I've copied what I hope is the relevant part of the log below. Regards Graham [1] https://ci.debian.net/packages/c/cloudpickle/testing/amd64/ 77s =================================== FAILURES =================================== 77s ___________________________ test_extract_class_dict ____________________________ 77s 77s def test_extract_class_dict(): 77s class A(int): 77s """A docstring""" 77s 77s def method(self): 77s return "a" 77s 77s class B: 77s """B docstring""" 77s 77s B_CONSTANT = 42 77s 77s def method(self): 77s return "b" 77s 77s class C(A, B): 77s C_CONSTANT = 43 77s 77s def method_c(self): 77s return "c" 77s 77s clsdict = _extract_class_dict(C) 77s > assert sorted(clsdict.keys()) == ["C_CONSTANT", "__doc__", "method_c"] 77s E AssertionError: assert ['C_CONSTANT'...', 'method_c'] == ['C_CONSTANT'...', 'method_c'] 77s E 77s E At index 2 diff: '__firstlineno__' != 'method_c' 77s E Left contains one more item: 'method_c' 77s E 77s E Full diff: 77s E [ 77s E 'C_CONSTANT',... 77s E 77s E ...Full output truncated (4 lines hidden), use '-vv' to show 77s 77s tests/cloudpickle_test.py:111: AssertionError