Comment #3 on issue 740 by [email protected]: Memoizer confuses Real
http://code.google.com/p/sympy/issues/detail?id=740
seeing as the set_repr_level method was deleted who-knows-when
A useful trick, if you want to know what commits modified a line containing
a given string, is to use
git log -S"set_repr_level"
This is the so-called pickaxe search, and is useful for things like finding
a commit that removed something, or tracking a chunk of text that has moved
across files. Using this, I found that this was removed by
commit 3a8f867a6642a269b115b89d623184b4922d1f68
Author: Sebastian Krämer <[email protected]>
Date: Mon Jul 14 16:53:19 2008 +0200
Refractoring of the printing system.
o Get rid of tostr() and torepr() - only __str__() and __repr__() are
used.
o Precedences are moved out of the Basic class to a dictionary
PRECEDENCE in the basic module.
o Always the upper class is now responsible for ptting brackets where
necessary. This means there is no need for the "level" parameter in the
printing methods.
Signed-off-by: Kirill Smelkov <[email protected]>
Signed-off-by: Ondrej Certik <[email protected]>
which was indeed a long time ago :)
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sympy-issues?hl=en.