Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6873a6e

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

File tree

Expand file treeCollapse file tree

2 files changed

+1
-7
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+1
-7
lines changed

‎lib/matplotlib/backends/backend_ps.py

Copy file name to clipboardExpand all lines: lib/matplotlib/backends/backend_ps.py
-2Lines 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

Copy file name to clipboardExpand all lines: lib/matplotlib/texmanager.py
+1-5Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.