Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Python] fixed docstring to comply with PEP 287 #12533

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ class {{classname}}(object):
{{/sortParamsByRequiredFlag}}
>>> result = thread.get()

:param async_req bool
:param bool async_req:
{{#allParams}}
:param {{dataType}} {{paramName}}:{{#description}} {{{description}}}{{/description}}{{#required}} (required){{/required}}{{#optional}}(optional){{/optional}}
{{/allParams}}
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}.
If the method is called asynchronously,
returns the request thread.
"""
Expand All @@ -73,11 +73,11 @@ class {{classname}}(object):
{{/sortParamsByRequiredFlag}}
>>> result = thread.get()

:param async_req bool
:param bool async_req:
{{#allParams}}
:param {{dataType}} {{paramName}}:{{#description}} {{{description}}}{{/description}}{{#required}} (required){{/required}}{{#optional}}(optional{{#defaultValue}}, default to {{{.}}}{{/defaultValue}}){{/optional}}
{{/allParams}}
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}.
If the method is called asynchronously,
returns the request thread.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,13 @@ class ApiClient(object):
:param header_params: Header parameters to be
placed in the request header.
:param body: Request body.
:param post_params dict: Request post form parameters,
:param dict post_params: Request post form parameters,
for `application/x-www-form-urlencoded`, `multipart/form-data`.
:param auth_settings list: Auth Settings names for the request.
:param list auth_settings: Auth Settings names for the request.
:param response: Response data type.
:param files dict: key -> filename, value -> filepath,
:param dict files: key -> filename, value -> filepath,
for `multipart/form-data`.
:param async_req bool: execute request asynchronously
:param bool async_req: execute request asynchronously
:param _return_http_data_only: response data without head status code
and headers
:param collection_formats: dict of collection formats for path, query,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.33-SNAPSHOT
2.4.44
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def test_code_inject____end__rn_n_r(self, **kwargs): # noqa: E501
>>> thread = api.test_code_inject____end__rn_n_r(async_req=True)
>>> result = thread.get()

:param async_req bool
:param bool async_req:
:param str test_code_inject____end____rn_n_r: To test code injection */ ' \" =end -- \\r\\n \\n \\r
:return: None
:return: None.
If the method is called asynchronously,
returns the request thread.
"""
Expand All @@ -62,9 +62,9 @@ def test_code_inject____end__rn_n_r_with_http_info(self, **kwargs): # noqa: E50
>>> thread = api.test_code_inject____end__rn_n_r_with_http_info(async_req=True)
>>> result = thread.get()

:param async_req bool
:param bool async_req:
:param str test_code_inject____end____rn_n_r: To test code injection */ ' \" =end -- \\r\\n \\n \\r
:return: None
:return: None.
If the method is called asynchronously,
returns the request thread.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'Swagger-Codegen/1.0.0/python'
self.client_side_validation = configuration.client_side_validation

def __del__(self):
if self._pool is not None:
Expand Down Expand Up @@ -296,13 +297,13 @@ def call_api(self, resource_path, method,
:param header_params: Header parameters to be
placed in the request header.
:param body: Request body.
:param post_params dict: Request post form parameters,
:param dict post_params: Request post form parameters,
for `application/x-www-form-urlencoded`, `multipart/form-data`.
:param auth_settings list: Auth Settings names for the request.
:param list auth_settings: Auth Settings names for the request.
:param response: Response data type.
:param files dict: key -> filename, value -> filepath,
:param dict files: key -> filename, value -> filepath,
for `multipart/form-data`.
:param async_req bool: execute request asynchronously
:param bool async_req: execute request asynchronously
:param _return_http_data_only: response data without head status code
and headers
:param collection_formats: dict of collection formats for path, query,
Expand Down Expand Up @@ -533,7 +534,7 @@ def __deserialize_file(self, response):
content_disposition).group(1)
path = os.path.join(os.path.dirname(path), filename)

with open(path, "wb") as f:
with open(path, "w") as f:
f.write(response.data)

return path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ def __init__(self):
self.api_key = {}
# dict to store API prefix (e.g. Bearer)
self.api_key_prefix = {}
# function to refresh API key if expired
self.refresh_api_key_hook = None
# Username for HTTP basic authentication
self.username = ""
# Password for HTTP basic authentication
Expand Down Expand Up @@ -97,6 +99,9 @@ def __init__(self):
# Safe chars for path_param
self.safe_chars_for_path_param = ''

# Disable client side validation
self.client_side_validation = True

@classmethod
def set_default(cls, default):
cls._default = default
Expand Down Expand Up @@ -203,11 +208,17 @@ def get_api_key_with_prefix(self, identifier):
:param identifier: The identifier of apiKey.
:return: The token for api key authentication.
"""
if (self.api_key.get(identifier) and
self.api_key_prefix.get(identifier)):
return self.api_key_prefix[identifier] + ' ' + self.api_key[identifier] # noqa: E501
elif self.api_key.get(identifier):
return self.api_key[identifier]

if self.refresh_api_key_hook:
self.refresh_api_key_hook(self)

key = self.api_key.get(identifier)
if key:
prefix = self.api_key_prefix.get(identifier)
if prefix:
return "%s %s" % (prefix, key)
else:
return key

def get_basic_auth_token(self):
"""Gets HTTP basic authentication header (string).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

import six

from petstore_api.configuration import Configuration


class ModelReturn(object):
"""NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -38,8 +40,11 @@ class ModelReturn(object):
'_return': 'return'
}

def __init__(self, _return=None): # noqa: E501
def __init__(self, _return=None, _configuration=None): # noqa: E501
"""ModelReturn - a model defined in Swagger""" # noqa: E501
if _configuration is None:
_configuration = Configuration()
self._configuration = _configuration

self.__return = None
self.discriminator = None
Expand Down Expand Up @@ -110,8 +115,11 @@ def __eq__(self, other):
if not isinstance(other, ModelReturn):
return False

return self.__dict__ == other.__dict__
return self.to_dict() == other.to_dict()

def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other
if not isinstance(other, ModelReturn):
return True

return self.to_dict() != other.to_dict()
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ def __init__(self, resp):

def getheaders(self):
"""Returns a dictionary of the response headers."""
return self.urllib3_response.getheaders()
return self.urllib3_response.headers

def getheader(self, name, default=None):
"""Returns a given response header."""
return self.urllib3_response.getheader(name, default)
return self.urllib3_response.headers.get(name, default)


class RESTClientObject(object):
Expand Down Expand Up @@ -156,7 +156,7 @@ def request(self, method, url, query_params=None, headers=None,
if query_params:
url += '?' + urlencode(query_params)
if re.search('json', headers['Content-Type'], re.IGNORECASE):
request_body = None
request_body = '{}'
if body is not None:
request_body = json.dumps(body)
r = self.pool_manager.request(
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# coding: utf-8
2 changes: 1 addition & 1 deletion samples/client/petstore/python/.swagger-codegen/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.33-SNAPSHOT
2.4.44
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_special_tags(self, body, **kwargs): # noqa: E501
>>> thread = api.test_special_tags(body, async_req=True)
>>> result = thread.get()

:param async_req bool
:param bool async_req:
:param Client body: client model (required)
:return: Client
If the method is called asynchronously,
Expand All @@ -64,7 +64,7 @@ def test_special_tags_with_http_info(self, body, **kwargs): # noqa: E501
>>> thread = api.test_special_tags_with_http_info(body, async_req=True)
>>> result = thread.get()

:param async_req bool
:param bool async_req:
:param Client body: client model (required)
:return: Client
If the method is called asynchronously,
Expand Down
Loading