We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1825d34 commit 1da6243Copy full SHA for 1da6243
julia/core.py
@@ -264,9 +264,7 @@ def determine_if_statically_linked():
264
'JuliaInfo',
265
['JULIA_HOME', 'libjulia_path', 'image_file',
266
# Variables in PyCall/deps/deps.jl:
267
- 'pyprogramname', 'libpython'],
268
- # PyCall/deps/deps.jl may not exist; The variables are then set to None:
269
- defaults=[None, None])
+ 'pyprogramname', 'libpython'])
270
271
272
def juliainfo(runtime='julia'):
@@ -297,6 +295,7 @@ def juliainfo(runtime='julia'):
297
295
# object file: No such file or directory":
298
296
env=_enviorn)
299
args = output.decode("utf-8").rstrip().split("\n")
+ args.extend([None] * (len(JuliaInfo._fields) - len(args)))
300
return JuliaInfo(*args)
301
302
0 commit comments