Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(698)

Unified Diff: third_party/boto/boto/mturk/connection.py

Issue 698893003: Update checked in version of gsutil to version 4.6 (Closed) Base URL: http://dart.googlecode.com/svn/third_party/gsutil/
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/boto/boto/kinesis/layer1.py ('k') | third_party/boto/boto/mws/connection.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/boto/boto/kinesis/layer1.py ('k') | third_party/boto/boto/mws/connection.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698