Show More
@@ -95,13 +95,13 b' def load_ipython_extension(ip):' | |||
|
95 | 95 | |
|
96 | 96 | printable_containers = [list, tuple] |
|
97 | 97 | |
|
98 | if sympy.__version__ < '0.7.1-git': | |
|
99 | # set and frozen set were broken with SymPy's latex() function, | |
|
100 | # but was fixed in the 0.7.1-git development version. See | |
|
101 | # http://code.google.com/p/sympy/issues/detail?id=3062. | |
|
102 | plaintext_formatter.for_type(cls, print_basic_unicode) | |
|
103 | else: | |
|
98 | # set and frozen set were broken with SymPy's latex() function, but | |
|
99 | # was fixed in the 0.7.1-git development version. See | |
|
100 | # http://code.google.com/p/sympy/issues/detail?id=3062. | |
|
101 | if sympy.__version__ > '0.7.1': | |
|
104 | 102 | printable_containers += [set, frozenset] |
|
103 | else: | |
|
104 | plaintext_formatter.for_type(cls, print_basic_unicode) | |
|
105 | 105 | |
|
106 | 106 | plaintext_formatter.for_type_by_name( |
|
107 | 107 | 'sympy.core.basic', 'Basic', print_basic_unicode |
General Comments 0
You need to be logged in to leave comments.
Login now