def test___init__comblist(self):
     C = PolynomialModP([IntegerModP(3, 7), 2, IntegerModP(1, 11)], 5)
     C.coefs = [3, 2, 1]
     C.p = 5
 def test___init__intlist(self):
     C = PolynomialModP([3, 2, 1], 5)
     C.coefs = [3, 2, 1]
     C.p = 5