Revision df0045d8 kamaki/clients/pithos/__init__.py

b/kamaki/clients/pithos/__init__.py
952 952
            'X-Account-Policy-Quota',
953 953
            exactMatch=True)
954 954

  
955
    def get_account_versioning(self):
956
        """
957
        :returns: (dict)
958
        """
959
        return filter_in(
960
            self.get_account_info(),
961
            'X-Account-Policy-Versioning',
962
            exactMatch=True)
955
    #def get_account_versioning(self):
956
    #    """
957
    #    :returns: (dict)
958
    #    """
959
    #    return filter_in(
960
    #        self.get_account_info(),
961
    #        'X-Account-Policy-Versioning',
962
    #        exactMatch=True)
963 963

  
964 964
    def get_account_meta(self, until=None):
965 965
        """
......
990 990
        r = self.account_post(update=True, metadata={metakey: ''})
991 991
        return r.headers
992 992

  
993
    """
994
    def set_account_quota(self, quota):
995
        ""
996
        :param quota: (int)
997
        ""
998
        self.account_post(update=True, quota=quota)
999
    """
1000

  
1001
    def set_account_versioning(self, versioning):
1002
        """
1003
        "param versioning: (str)
1004
        """
1005
        r = self.account_post(update=True, versioning=versioning)
1006
        return r.headers
993
    #def set_account_quota(self, quota):
994
    #    """
995
    #    :param quota: (int)
996
    #    """
997
    #    self.account_post(update=True, quota=quota)
998

  
999
    #def set_account_versioning(self, versioning):
1000
    #    """
1001
    #    :param versioning: (str)
1002
    #    """
1003
    #    r = self.account_post(update=True, versioning=versioning)
1004
    #    return r.headers
1007 1005

  
1008 1006
    def list_containers(self):
1009 1007
        """

Also available in: Unified diff