~ubuntu-branches/ubuntu/precise/h5py/precise

« back to all changes in this revision

Viewing changes to h5py/h5p_fcid.pxi

  • Committer: Bazaar Package Importer
  • Author(s): Soeren Sonnenburg
  • Date: 2010-03-23 15:38:34 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100323153834-ysfm9nsr8gdnkid3
Tags: 1.3.0-1
* New upstream version.
  - Remove quilt patches.
  - Bump standards version to 3.8.4 (no changes required).
  - Switch to dpkg-source 3.0 (quilt) format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
        File creation property list.
17
17
    """
18
18
 
19
 
    @sync
 
19
    
20
20
    def get_version(self):
21
21
        """() => TUPLE version_info
22
22
 
38
38
 
39
39
        return (super_, freelist, stab, shhdr)
40
40
 
41
 
    @sync
 
41
    
42
42
    def set_userblock(self, hsize_t size):
43
43
        """(INT/LONG size)
44
44
 
47
47
        """
48
48
        H5Pset_userblock(self.id, size)
49
49
 
50
 
    @sync
 
50
    
51
51
    def get_userblock(self):
52
52
        """() => LONG size
53
53
 
57
57
        H5Pget_userblock(self.id, &size)
58
58
        return size
59
59
 
60
 
    @sync
 
60
    
61
61
    def set_sizes(self, size_t addr, size_t size):
62
62
        """(UINT addr, UINT size)
63
63
 
66
66
        """
67
67
        H5Pset_sizes(self.id, addr, size)
68
68
 
69
 
    @sync
 
69
    
70
70
    def get_sizes(self):
71
71
        """() => TUPLE sizes
72
72