Skip to content

Commit 623344e

Browse files
committed
DOCTEST: Avoid fixed ID in doctest
1 parent bf378d3 commit 623344e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nibabel/externals/netcdf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ class netcdf_file(object):
216216
directly to memory-mapped data on disk:
217217
218218
>>> data = time[:]
219-
>>> data.base.base
220-
<mmap.mmap object at 0x7fe753763180>
219+
>>> data.base.base # doctest: +ELLIPSIS
220+
<mmap.mmap object at 0x...>
221221
222222
If the data is to be processed after the file is closed, it needs
223223
to be copied to main memory:

0 commit comments

Comments
 (0)