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

Skip to content

Commit 49be6b5

Browse files
committed
Fix auto-sized square brackets
1 parent 5add058 commit 49be6b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/mathtext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2122,9 +2122,9 @@ class Parser(object):
21222122
| \| / \backslash \uparrow \downarrow \updownarrow \Uparrow
21232123
\Downarrow \Updownarrow .""".split())
21242124

2125-
_left_delim = set(r"( \[ \{ < \lfloor \langle \lceil".split())
2125+
_left_delim = set(r"( [ \{ < \lfloor \langle \lceil".split())
21262126

2127-
_right_delim = set(r") \] \} > \rfloor \rangle \rceil".split())
2127+
_right_delim = set(r") ] \} > \rfloor \rangle \rceil".split())
21282128

21292129
def __init__(self):
21302130
# All forward declarations are here

0 commit comments

Comments
 (0)