OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:api_call_map
(Results
1 - 2
of
2
) sorted by null
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/
test_connection.py
23
from boto.mws.connection import MWSConnection,
api_call_map
, destructure_object
107
for action, func in
api_call_map
.items():
129
self.assertTrue(len(
api_call_map
.keys()) > 50)
133
self.assertTrue('GetFeedSubmissionList' in
api_call_map
)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
connection.py
60
api_call_map
= {}
variable
258
api_call_map
[action] = func.__name__
343
if action in
api_call_map
:
344
return getattr(self,
api_call_map
[action])
[
all
...]
Completed in 751 milliseconds