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

Skip to content

Commit 8cd97c1

Browse files
committed
Remove unused global cmd_split variable.
(*very* technically breaks backcompat, but it's not as if these were likely to be used at all or as if there was a good way to emit a warning.)
1 parent 39575ed commit 8cd97c1

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

lib/matplotlib/backends/backend_ps.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
import binascii
4040
import re
4141

42-
if sys.platform.startswith('win'): cmd_split = '&'
43-
else: cmd_split = ';'
4442

4543
backend_version = 'Level II'
4644

lib/matplotlib/texmanager.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,8 @@
5757
import matplotlib.dviread as dviread
5858
import re
5959

60-
DEBUG = False
6160

62-
if sys.platform.startswith('win'):
63-
cmd_split = '&'
64-
else:
65-
cmd_split = ';'
61+
DEBUG = False
6662

6763

6864
@mpl.cbook.deprecated("2.1")

0 commit comments

Comments
 (0)