~ubuntu-branches/debian/experimental/h5py/experimental

« back to all changes in this revision

Viewing changes to h5py/h5f.pyx

  • Committer: Bazaar Package Importer
  • Author(s): Soeren Sonnenburg
  • Date: 2009-09-24 11:08:03 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090924110803-hz0en6f43x8opgj4
Tags: 1.2.1-2
Build-depend on hdf5 >= 1.8.3 and enable api 1.8 (Closes: #548049)

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
def mount(ObjectID loc not None, char* name, FileID fid not None):
125
125
    """(ObjectID loc, STRING name, FileID fid)
126
126
 
127
 
    Mount an open file as "name" under group loc_id.
 
127
    Mount an open file on the group "name" under group loc_id.  Note that
 
128
    "name" must already exist.
128
129
    """
129
130
    H5Fmount(loc.id, name, fid.id, H5P_DEFAULT)
130
131
 
132
133
def unmount(ObjectID loc not None, char* name):
133
134
    """(ObjectID loc, STRING name)
134
135
 
135
 
    Unmount a file, mounted as "name" under group loc_id.
 
136
    Unmount a file, mounted at "name" under group loc_id.
136
137
    """
137
138
    H5Funmount(loc.id, name)
138
139