@@ -471,7 +471,7 @@ def extension(self, f, names=None):
471471 from . import constructor
472472 return constructor .FunctionFieldExtension (f , names )
473473
474- def order_with_basis (self , basis , check : bool = True ):
474+ def order_with_basis (self , basis , check : bool = True ):
475475 """
476476 Return the order with given basis over the maximal order of
477477 the base field.
@@ -519,7 +519,7 @@ def order_with_basis(self, basis, check: bool=True):
519519 from .order_basis import FunctionFieldOrder_basis
520520 return FunctionFieldOrder_basis (tuple ([self (a ) for a in basis ]), check = check )
521521
522- def order (self , x , check : bool = True ):
522+ def order (self , x , check : bool = True ):
523523 """
524524 Return the order generated by ``x`` over the base maximal order.
525525
@@ -562,7 +562,7 @@ def order(self, x, check: bool=True):
562562 raise NotImplementedError
563563 return self .order_with_basis (basis , check = check )
564564
565- def order_infinite_with_basis (self , basis , check : bool = True ):
565+ def order_infinite_with_basis (self , basis , check : bool = True ):
566566 """
567567 Return the order with given basis over the maximal infinite order of
568568 the base field.
@@ -612,7 +612,7 @@ def order_infinite_with_basis(self, basis, check: bool=True):
612612 from .order_basis import FunctionFieldOrderInfinite_basis
613613 return FunctionFieldOrderInfinite_basis (tuple ([self (g ) for g in basis ]), check = check )
614614
615- def order_infinite (self , x , check : bool = True ):
615+ def order_infinite (self , x , check : bool = True ):
616616 """
617617 Return the order generated by ``x`` over the maximal infinite order.
618618
0 commit comments