Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bf6291b

Browse files
committed
Merge pull request #4588 from tacaswell/fix_math_order
FIX: re-order symbol and acent in mathtext
2 parents 5c58ea9 + 0fdeb6e commit bf6291b

20 files changed

+872
-3
lines changed

lib/matplotlib/mathtext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2263,8 +2263,8 @@ def __init__(self):
22632263
| Error("Expected \operatorname{value}"))
22642264
)
22652265

2266-
p.placeable <<= ( p.accent # Must be first
2267-
| p.symbol # Must be second
2266+
p.placeable <<= ( p.symbol # Must be first
2267+
| p.accent # Must be second
22682268
| p.c_over_c
22692269
| p.function
22702270
| p.group
Binary file not shown.
Lines changed: 151 additions & 0 deletions
Loading
Binary file not shown.
Lines changed: 136 additions & 0 deletions
Loading
Binary file not shown.

0 commit comments

Comments
 (0)