Skip to content

Commit 0a96aac

Browse files
os.system -> subprocess (#3955)
Quoting the python library documentation: > The subprocess module provides more powerful facilities for spawning > new processes and retrieving their results; using that module is > preferable to using this function.
1 parent d6f066c commit 0a96aac

File tree

2 files changed

+31
-36
lines changed

2 files changed

+31
-36
lines changed

manim/utils/tex_file_writing.py

+28-33
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
from __future__ import annotations
1010

1111
import hashlib
12-
import os
1312
import re
13+
import subprocess
1414
import unicodedata
1515
from collections.abc import Iterable
1616
from pathlib import Path
@@ -114,10 +114,11 @@ def generate_tex_file(
114114
return result
115115

116116

117-
def tex_compilation_command(
117+
def make_tex_compilation_command(
118118
tex_compiler: str, output_format: str, tex_file: Path, tex_dir: Path
119-
) -> str:
120-
"""Prepares the tex compilation command with all necessary cli flags
119+
) -> list[str]:
120+
"""Prepares the TeX compilation command, i.e. the TeX compiler name
121+
and all necessary CLI flags.
121122
122123
Parameters
123124
----------
@@ -132,40 +133,36 @@ def tex_compilation_command(
132133
133134
Returns
134135
-------
135-
:class:`str`
136+
:class:`list[str]`
136137
Compilation command according to given parameters
137138
"""
138139
if tex_compiler in {"latex", "pdflatex", "luatex", "lualatex"}:
139-
commands = [
140+
command = [
140141
tex_compiler,
141142
"-interaction=batchmode",
142-
f'-output-format="{output_format[1:]}"',
143+
f"-output-format={output_format[1:]}",
143144
"-halt-on-error",
144-
f'-output-directory="{tex_dir.as_posix()}"',
145-
f'"{tex_file.as_posix()}"',
146-
">",
147-
os.devnull,
145+
f"-output-directory={tex_dir.as_posix()}",
146+
f"{tex_file.as_posix()}",
148147
]
149148
elif tex_compiler == "xelatex":
150149
if output_format == ".xdv":
151-
outflag = "-no-pdf"
150+
outflag = ["-no-pdf"]
152151
elif output_format == ".pdf":
153-
outflag = ""
152+
outflag = []
154153
else:
155154
raise ValueError("xelatex output is either pdf or xdv")
156-
commands = [
155+
command = [
157156
"xelatex",
158-
outflag,
157+
*outflag,
159158
"-interaction=batchmode",
160159
"-halt-on-error",
161-
f'-output-directory="{tex_dir.as_posix()}"',
162-
f'"{tex_file.as_posix()}"',
163-
">",
164-
os.devnull,
160+
f"-output-directory={tex_dir.as_posix()}",
161+
f"{tex_file.as_posix()}",
165162
]
166163
else:
167164
raise ValueError(f"Tex compiler {tex_compiler} unknown.")
168-
return " ".join(commands)
165+
return command
169166

170167

171168
def insight_inputenc_error(matching):
@@ -200,14 +197,14 @@ def compile_tex(tex_file: Path, tex_compiler: str, output_format: str) -> Path:
200197
result = tex_file.with_suffix(output_format)
201198
tex_dir = config.get_dir("tex_dir")
202199
if not result.exists():
203-
command = tex_compilation_command(
200+
command = make_tex_compilation_command(
204201
tex_compiler,
205202
output_format,
206203
tex_file,
207204
tex_dir,
208205
)
209-
exit_code = os.system(command)
210-
if exit_code != 0:
206+
cp = subprocess.run(command, stdout=subprocess.DEVNULL)
207+
if cp.returncode != 0:
211208
log_file = tex_file.with_suffix(".log")
212209
print_all_tex_errors(log_file, tex_compiler, tex_file)
213210
raise ValueError(
@@ -237,18 +234,16 @@ def convert_to_svg(dvi_file: Path, extension: str, page: int = 1):
237234
"""
238235
result = dvi_file.with_suffix(".svg")
239236
if not result.exists():
240-
commands = [
237+
command = [
241238
"dvisvgm",
242-
"--pdf" if extension == ".pdf" else "",
243-
"-p " + str(page),
244-
f'"{dvi_file.as_posix()}"',
245-
"-n",
246-
"-v 0",
247-
"-o " + f'"{result.as_posix()}"',
248-
">",
249-
os.devnull,
239+
*(["--pdf"] if extension == ".pdf" else []),
240+
f"--page={page}",
241+
"--no-fonts",
242+
"--verbosity=0",
243+
f"--output={result.as_posix()}",
244+
f"{dvi_file.as_posix()}",
250245
]
251-
os.system(" ".join(commands))
246+
subprocess.run(command, stdout=subprocess.DEVNULL)
252247

253248
# if the file does not exist now, this means conversion failed
254249
if not result.exists():

scripts/make_and_open_docs.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from __future__ import annotations
22

3-
import os
3+
import subprocess
44
import sys
55
import webbrowser
66
from pathlib import Path
77

8-
path_makefile = Path(__file__).parents[1] / "docs"
9-
os.system(f"cd {path_makefile} && make html")
8+
path_makefile = Path(__file__).resolve().parents[1] / "docs"
9+
subprocess.run(["make", "html"], cwd=path_makefile)
1010

1111
website = (path_makefile / "build" / "html" / "index.html").absolute().as_uri()
1212
try: # Allows you to pass a custom browser if you want.

0 commit comments

Comments
 (0)