Skip to content

Commit 0b79a03

Browse files
committed
DOCTEST: Avoid fixed ID in doctest
1 parent 501cc31 commit 0b79a03

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
@@ -221,8 +221,8 @@ class netcdf_file(object):
221221
directly to memory-mapped data on disk:
222222
223223
>>> data = time[:]
224-
>>> data.base.base
225-
<mmap.mmap object at 0x7fe753763180>
224+
>>> data.base.base # doctest: +ELLIPSIS
225+
<mmap.mmap object at 0x...>
226226
227227
If the data is to be processed after the file is closed, it needs
228228
to be copied to main memory:

0 commit comments

Comments
 (0)