diff options
author | Ben Nathanson <github@bigriver.xyz> | 2020-09-26 11:59:52 -0400 |
---|---|---|
committer | Ben Nathanson <github@bigriver.xyz> | 2020-09-26 11:59:52 -0400 |
commit | 5d458ac949833246b6b4b3c3ac3117ec902c7611 (patch) | |
tree | 4f9002cb372efe9a06624526cfff5e7a75b7c672 /doc/source/user | |
parent | 3a94fff71006af722af305f03653876c1a7e32fd (diff) | |
download | numpy-5d458ac949833246b6b4b3c3ac3117ec902c7611.tar.gz |
DOC: One more bash->python in PR #17353
Diffstat (limited to 'doc/source/user')
-rw-r--r-- | doc/source/user/how-to-io.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/how-to-io.rst b/doc/source/user/how-to-io.rst index d962e1546..1d4ded159 100644 --- a/doc/source/user/how-to-io.rst +++ b/doc/source/user/how-to-io.rst @@ -36,7 +36,7 @@ With non-whitespace delimiters ------------------------------------------------------------------------------
::
- $ cat csv.txt # doctest: +SKIP
+ >>> print(open("csv.txt").read()) # doctest: +SKIP
1, 2, 3
4,, 6
7, 8, 9
|