Skip to content

Commit

Permalink
Incidental style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Köppe authored and tornaria committed Mar 31, 2024
1 parent 8eeba35 commit bcc326d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sage/modular/modform/eis_series_cython.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ cpdef Ek_ZZ(int k, int prec=10):
return val


cpdef eisenstein_series_poly(int k, int prec = 10) :
cpdef eisenstein_series_poly(int k, int prec=10):
r"""
Return the q-expansion up to precision ``prec`` of the weight `k`
Eisenstein series, as a FLINT :class:`~sage.libs.flint.fmpz_poly.Fmpz_poly`
Expand Down
6 changes: 3 additions & 3 deletions src/sage/numerical/backends/glpk_backend.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1600,7 +1600,7 @@ cdef class GLPKBackend(GenericBackend):

return glp_get_obj_dir(self.lp) == GLP_MAX

cpdef variable_upper_bound(self, int index, value = False):
cpdef variable_upper_bound(self, int index, value=False):
"""
Return or define the upper bound on a variable
Expand Down Expand Up @@ -1699,7 +1699,7 @@ cdef class GLPKBackend(GenericBackend):
glp_set_col_bnds(self.lp, index + 1, GLP_DB, min, dvalue)
sig_off()

cpdef variable_lower_bound(self, int index, value = False):
cpdef variable_lower_bound(self, int index, value=False):
"""
Return or define the lower bound on a variable
Expand Down Expand Up @@ -1874,7 +1874,7 @@ cdef class GLPKBackend(GenericBackend):
return p


cpdef solver_parameter(self, name, value = None):
cpdef solver_parameter(self, name, value=None):
"""
Return or define a solver parameter
Expand Down

0 comments on commit bcc326d

Please sign in to comment.