Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(4) | Derive(0) | Import(0)
src/h/5/h5py-2.3.0/h5py/tests/test_file.py h5py(Download)
hfile = File(fname, 'w') try: self.assertIs(hfile.id, hfile.file.id) finally: hfile.close()
def test_fid(self): """ File objects provide a .fid attribute aliased to the file ID """ with File(self.mktemp(), 'w') as hfile: self.assertIs(hfile.fid, hfile.id)
src/h/5/h5py-HEAD/h5py/tests/test_file.py h5py(Download)
hfile = File(fname, 'w') try: self.assertIs(hfile.id, hfile.file.id) finally: hfile.close()
def test_fid(self): """ File objects provide a .fid attribute aliased to the file ID """ with File(self.mktemp(), 'w') as hfile: self.assertIs(hfile.fid, hfile.id)