@@ -31,7 +31,7 @@ cdef class fq_default_poly_ctx:
3131 # Allow context to be made from fq_default_ctx
3232 if len (args) == 1 and typecheck(args[0 ], fq_default_ctx):
3333 self .field = args[0 ]
34- else : # Otherwise attempt to create context from moduli
34+ else : # Otherwise attempt to create context from moduli
3535 self .field = fq_default_ctx(* args, ** kwargs)
3636
3737 cdef set_list_as_fq_default_poly(self , fq_default_poly_t poly, val):
@@ -431,9 +431,9 @@ cdef class fq_default_poly(flint_poly):
431431 length = fq_default_poly_degree(self .val, self .ctx.field.val)
432432 res = self .ctx.new_ctype_poly()
433433
434- if n <= 0 : # return zero
434+ if n <= 0 : # return zero
435435 return res
436- elif n > length: # do nothing
436+ elif n > length: # do nothing
437437 fq_default_poly_set(
438438 res.val, self .val, self .ctx.field.val
439439 )
@@ -923,7 +923,7 @@ cdef class fq_default_poly(flint_poly):
923923 fq_default_poly_shift_left(
924924 res.val, self .val, n, self .ctx.field.val
925925 )
926- else : # do nothing, just copy self
926+ else : # do nothing, just copy self
927927 fq_default_poly_set(
928928 res.val, self .val, self .ctx.field.val
929929 )
@@ -956,7 +956,7 @@ cdef class fq_default_poly(flint_poly):
956956 fq_default_poly_shift_right(
957957 res.val, self .val, n, self .ctx.field.val
958958 )
959- else : # do nothing, just copy self
959+ else : # do nothing, just copy self
960960 fq_default_poly_set(
961961 res.val, self .val, self .ctx.field.val
962962 )
0 commit comments