Source: python-panwid
Version: 0.2.5-1
Severity: serious
Tags: ftbfs bullseye sid

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/python-panwid.html

...
=================================== FAILURES ===================================
________________ TestDataTableWithIndex.test_add_row_with_index ________________

self = <test.test_datatable.TestDataTableWithIndex 
testMethod=test_add_row_with_index>

    def test_add_row_with_index(self):
    
>       dt = DataTable(self.columns, data=self.data, index="a")

test/test_datatable.py:33: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
panwid/datatable/datatable.py:243: in __init__
    self.df = DataTableDataFrame(**kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <[AttributeError("_columns") raised in repr()] DataTableDataFrame object 
at 0x7f6aa2edeee0>
data = None, columns = ['a', 'b', 'c'], index = None, index_name = 'a'
use_blist = True, sort = False

    def __init__(self, data=None, columns=None, index=None, index_name="index", 
use_blist=False, sort=None):
    
        if columns and not index_name in columns:
            columns = [index_name] + columns
>       super(DataTableDataFrame, self).__init__(
            data=data,
            columns=columns,
            index=index,
            index_name=index_name,
            use_blist=use_blist,
            sort=sort
        )
E       TypeError: __init__() got an unexpected keyword argument 'use_blist'

panwid/datatable/dataframe.py:14: TypeError
______________ TestDataTableWithIndex.test_add_row_without_index _______________

self = <test.test_datatable.TestDataTableWithIndex 
testMethod=test_add_row_without_index>

    def test_add_row_without_index(self):
    
>       dt = DataTable(self.columns, data=self.data)

test/test_datatable.py:39: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
panwid/datatable/datatable.py:243: in __init__
    self.df = DataTableDataFrame(**kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <[AttributeError("_columns") raised in repr()] DataTableDataFrame object 
at 0x7f6aa2f26460>
data = None, columns = ['index', 'a', 'b', 'c'], index = None
index_name = 'index', use_blist = True, sort = False

    def __init__(self, data=None, columns=None, index=None, index_name="index", 
use_blist=False, sort=None):
    
        if columns and not index_name in columns:
            columns = [index_name] + columns
>       super(DataTableDataFrame, self).__init__(
            data=data,
            columns=columns,
            index=index,
            index_name=index_name,
            use_blist=use_blist,
            sort=sort
        )
E       TypeError: __init__() got an unexpected keyword argument 'use_blist'

panwid/datatable/dataframe.py:14: TypeError
______________________ TestDataTableWithIndex.test_create ______________________

self = <test.test_datatable.TestDataTableWithIndex testMethod=test_create>

    def test_create(self):
    
>       dt = DataTable(self.columns, data=self.data, index="a")

test/test_datatable.py:23: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
panwid/datatable/datatable.py:243: in __init__
    self.df = DataTableDataFrame(**kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <[AttributeError("_columns") raised in repr()] DataTableDataFrame object 
at 0x7f6aa2f266a0>
data = None, columns = ['a', 'b', 'c'], index = None, index_name = 'a'
use_blist = True, sort = False

    def __init__(self, data=None, columns=None, index=None, index_name="index", 
use_blist=False, sort=None):
    
        if columns and not index_name in columns:
            columns = [index_name] + columns
>       super(DataTableDataFrame, self).__init__(
            data=data,
            columns=columns,
            index=index,
            index_name=index_name,
            use_blist=use_blist,
            sort=sort
        )
E       TypeError: __init__() got an unexpected keyword argument 'use_blist'

panwid/datatable/dataframe.py:14: TypeError
_______________ TestDataTableWithIndex.test_create_without_index _______________

self = <test.test_datatable.TestDataTableWithIndex 
testMethod=test_create_without_index>

    def test_create_without_index(self):
    
>       dt = DataTable(self.columns, data=self.data)

test/test_datatable.py:28: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
panwid/datatable/datatable.py:243: in __init__
    self.df = DataTableDataFrame(**kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <[AttributeError("_columns") raised in repr()] DataTableDataFrame object 
at 0x7f6aa2f26e80>
data = None, columns = ['index', 'a', 'b', 'c'], index = None
index_name = 'index', use_blist = True, sort = False

    def __init__(self, data=None, columns=None, index=None, index_name="index", 
use_blist=False, sort=None):
    
        if columns and not index_name in columns:
            columns = [index_name] + columns
>       super(DataTableDataFrame, self).__init__(
            data=data,
            columns=columns,
            index=index,
            index_name=index_name,
            use_blist=use_blist,
            sort=sort
        )
E       TypeError: __init__() got an unexpected keyword argument 'use_blist'

panwid/datatable/dataframe.py:14: TypeError
...

Reply via email to