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

Skip to content

Commit 6873a6e

Browse files
authored
Merge pull request #9640 from anntzer/remove-unused-globals
Remove unused global cmd_split variable.
2 parents ad7cb00 + 8cd97c1 commit 6873a6e

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)