~tribaal/txaws/xss-hardening

« back to all changes in this revision

Viewing changes to txaws/server/registry.py

Merged 921421-completemultipart [r=oubiwann][f=921421]

This branch adds Complete Multipart method to s3 client.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
            # Only pass it if specified, for backward compatibility
53
53
            kwargs["ignore"] = ignore
54
54
        scanner.scan(module, **kwargs)
55
 
 
56
 
    def get_actions(self):
57
 
        """
58
 
        Get a list of all action names.
59
 
        """
60
 
        return self._by_action.keys()
61
 
 
62
 
    def get_versions(self, action_name):
63
 
        """
64
 
        Get a list of versions supported by the given action name.
65
 
        """
66
 
        return self._by_action[action_name].keys()