diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-02-16 12:42:40 +0100 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-02-16 12:48:32 +0100 |
commit | 5669280ac3535c3fed083fcb1fedef2064d227fd (patch) | |
tree | 628d7176d7c5101d3b88e990ae9f8b977202ea55 | |
parent | f7b0265655725267063ed25478aa7c2ab20b3a85 (diff) | |
download | numpy-5669280ac3535c3fed083fcb1fedef2064d227fd.tar.gz |
DOC: remove mktemp mention from f2py manpage
-rw-r--r-- | doc/f2py/f2py.1 | 2 | ||||
-rw-r--r-- | doc/source/f2py/usage.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/f2py/f2py.1 b/doc/f2py/f2py.1 index 279647424..7f51ea29d 100644 --- a/doc/f2py/f2py.1 +++ b/doc/f2py/f2py.1 @@ -53,7 +53,7 @@ Do [not] lower the cases in <fortran files>. By default, \-\-lower is assumed with \-h key, and \-\-no\-lower without \-h key. .TP .B \-\-build\-dir <dirname> -All f2py generated files are created in <dirname>. Default is tempfile.mktemp(). +All f2py generated files are created in <dirname>. Default is tempfile.mkdtemp(). .TP .B \-\-overwrite\-signature Overwrite existing signature file. diff --git a/doc/source/f2py/usage.rst b/doc/source/f2py/usage.rst index 2f9017faa..a6f093154 100644 --- a/doc/source/f2py/usage.rst +++ b/doc/source/f2py/usage.rst @@ -183,7 +183,7 @@ Other options: without the ``-h`` switch. ``--build-dir <dirname>`` All F2PY generated files are created in ``<dirname>``. Default is - ``tempfile.mktemp()``. + ``tempfile.mkdtemp()``. ``--quiet`` Run quietly. ``--verbose`` |