We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b52b2a0 + d7a229a commit 593ff96Copy full SHA for 593ff96
lib/matplotlib/_mathtext.py
@@ -1236,11 +1236,11 @@ def __init__(self, elements):
1236
self.glue_order = 0 # The order of infinity (0 - 3) for the glue
1237
1238
def __repr__(self):
1239
- return '[%s <%.02f %.02f %.02f %.02f> %s]' % (
+ return '%s<w=%.02f h=%.02f d=%.02f s=%.02f>[%s]' % (
1240
super().__repr__(),
1241
self.width, self.height,
1242
self.depth, self.shift_amount,
1243
- ' '.join([repr(x) for x in self.children]))
+ ', '.join([repr(x) for x in self.children]))
1244
1245
@staticmethod
1246
def _determine_order(totals):
0 commit comments