Skip to content

Commit 45d1ec3

Browse files
authored
Merge branch 'master' into dp/fix-args
2 parents 2ce534b + e5b06f1 commit 45d1ec3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/source/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Step 1: Install Julia
3838

3939
Get the Julia installer from https://julialang.org/downloads/. See
4040
also the `Platform Specific Instructions
41-
<https://julialang.org/downloads/platform.html>`_.
41+
<https://julialang.org/downloads/platform>`_.
4242

4343
Your python installation must be able to call command line program
4444
``julia``. If your installer does not add the Julia binary directory to

docs/source/usage.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Other variants of Python import syntax also work:
2626
.. code-block:: pycon
2727
2828
>>> import julia.Base
29-
>>> from julia.Base import Enums # import a submodule
30-
>>> from julia.Base import sin # import a function from a module
29+
>>> from julia.Base import Enums # import a submodule
30+
>>> from julia.Base import sin, sind # import functions from a module
3131
3232
The global namespace of Julia’s interpreter can be accessed via a
3333
special module ``julia.Main``:

src/julia/tests/test_juliaoptions.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
(dict(compiled_modules="no"), ["--compiled-modules=no"]),
1212
(dict(depwarn="error"), ["--depwarn=error"]),
1313
(dict(sysimage="PATH"), ["--sysimage=PATH"]),
14+
(dict(bindir="PATH"), ["--home=PATH"]),
1415
(dict(optimize=3), ["--optimize=3"]),
1516
(dict(threads=4), ["--threads=4"]),
1617
(dict(min_optlevel=2), ["--min-optlevel=2"]),

0 commit comments

Comments
 (0)