| Index: third_party/boto/boto/mturk/connection.py
|
| ===================================================================
|
| --- third_party/boto/boto/mturk/connection.py (revision 33376)
|
| +++ third_party/boto/boto/mturk/connection.py (working copy)
|
| @@ -46,7 +46,8 @@
|
| is_secure=True, port=None, proxy=None, proxy_port=None,
|
| proxy_user=None, proxy_pass=None,
|
| host=None, debug=0,
|
| - https_connection_factory=None):
|
| + https_connection_factory=None, security_token=None,
|
| + profile_name=None):
|
| if not host:
|
| if config.has_option('MTurk', 'sandbox') and config.get('MTurk', 'sandbox') == 'True':
|
| host = 'mechanicalturk.sandbox.amazonaws.com'
|
| @@ -58,7 +59,9 @@
|
| aws_secret_access_key,
|
| is_secure, port, proxy, proxy_port,
|
| proxy_user, proxy_pass, host, debug,
|
| - https_connection_factory)
|
| + https_connection_factory,
|
| + security_token=security_token,
|
| + profile_name=profile_name)
|
|
|
| def _required_auth_capability(self):
|
| return ['mturk']
|
| @@ -385,15 +388,15 @@
|
| The number of assignments on the page in the filtered results
|
| list, equivalent to the number of assignments being returned
|
| by this call.
|
| - A non-negative integer
|
| + A non-negative integer, as a string.
|
| PageNumber
|
| The number of the page in the filtered results list being
|
| returned.
|
| - A positive integer
|
| + A positive integer, as a string.
|
| TotalNumResults
|
| The total number of HITs in the filtered results list based
|
| on this call.
|
| - A non-negative integer
|
| + A non-negative integer, as a string.
|
|
|
| The ResultSet will contain zero or more Assignment objects
|
|
|
|
|