Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
more replacements of __str__ by _repr_
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Aug 25, 2015
1 parent 19247a5 commit dacbfcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/modular/modform_hecketriangle/functors.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def __call__(self, R):
else:
return ambient_space

def __str__(self):
def _repr_(self):
r"""
Return the string representation of ``self``.
Expand Down Expand Up @@ -388,7 +388,7 @@ def __call__(self, R):
merged_functor = self.merge(ConstantFormsSpaceFunctor(self._group))
return merged_functor(R)

def __str__(self):
def _repr_(self):
r"""
Return the string representation of ``self``.
Expand Down Expand Up @@ -577,7 +577,7 @@ def __call__(self, R):
merged_functor = self.merge(ConstantFormsSpaceFunctor(self._group))
return merged_functor(R)

def __str__(self):
def _repr_(self):
r"""
Return the string representation of ``self``.
Expand Down

0 comments on commit dacbfcb

Please sign in to comment.