Skip to content

Commit 5e7795b

Browse files
committed
DOCTEST: Avoid fixed ID in doctest
1 parent cfd1a24 commit 5e7795b

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
@@ -218,8 +218,8 @@ class netcdf_file(object):
218218
directly to memory-mapped data on disk:
219219
220220
>>> data = time[:]
221-
>>> data.base.base
222-
<mmap.mmap object at 0x7fe753763180>
221+
>>> data.base.base # doctest: +ELLIPSIS
222+
<mmap.mmap object at 0x...>
223223
224224
If the data is to be processed after the file is closed, it needs
225225
to be copied to main memory:

0 commit comments

Comments
 (0)