aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-11-09 07:29:50 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-11-09 07:49:01 +0300
commitea4fc9f51349c70f99e4c9ac40e37146a6d1c839 (patch)
tree7eb772ba0446ce8fcb4916ff0ca79655d2f6fbac
parent619fb79db12aac56977b94af038788bbe48a9aab (diff)
downloadydb-ea4fc9f51349c70f99e4c9ac40e37146a6d1c839.tar.gz
Update contrib/python/boto3/py3 to 1.28.71
-rw-r--r--contrib/python/boto3/py3/.dist-info/METADATA4
-rw-r--r--contrib/python/boto3/py3/boto3/__init__.py2
-rw-r--r--contrib/python/boto3/py3/boto3/docs/service.py3
-rw-r--r--contrib/python/boto3/py3/boto3/docs/waiter.py2
-rw-r--r--contrib/python/boto3/py3/ya.make2
5 files changed, 8 insertions, 5 deletions
diff --git a/contrib/python/boto3/py3/.dist-info/METADATA b/contrib/python/boto3/py3/.dist-info/METADATA
index e96d548b34..e022ae2abe 100644
--- a/contrib/python/boto3/py3/.dist-info/METADATA
+++ b/contrib/python/boto3/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: boto3
-Version: 1.28.70
+Version: 1.28.71
Summary: The AWS SDK for Python
Home-page: https://github.com/boto/boto3
Author: Amazon Web Services
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: 3.12
Requires-Python: >= 3.7
License-File: LICENSE
License-File: NOTICE
-Requires-Dist: botocore (<1.32.0,>=1.31.70)
+Requires-Dist: botocore (<1.32.0,>=1.31.71)
Requires-Dist: jmespath (<2.0.0,>=0.7.1)
Requires-Dist: s3transfer (<0.8.0,>=0.7.0)
Provides-Extra: crt
diff --git a/contrib/python/boto3/py3/boto3/__init__.py b/contrib/python/boto3/py3/boto3/__init__.py
index 268368fad2..8e0bcb1adf 100644
--- a/contrib/python/boto3/py3/boto3/__init__.py
+++ b/contrib/python/boto3/py3/boto3/__init__.py
@@ -17,7 +17,7 @@ from boto3.compat import _warn_deprecated_python
from boto3.session import Session
__author__ = 'Amazon Web Services'
-__version__ = '1.28.70'
+__version__ = '1.28.71'
# The default Boto3 session; autoloaded when needed.
diff --git a/contrib/python/boto3/py3/boto3/docs/service.py b/contrib/python/boto3/py3/boto3/docs/service.py
index cb01529ee0..39ed89b871 100644
--- a/contrib/python/boto3/py3/boto3/docs/service.py
+++ b/contrib/python/boto3/py3/boto3/docs/service.py
@@ -46,6 +46,7 @@ class ServiceDocumenter(BaseServiceDocumenter):
'waiters',
'resources',
'examples',
+ 'context-params',
]
self._root_docs_path = root_docs_path
self._USER_GUIDE_LINK = (
@@ -69,6 +70,8 @@ class ServiceDocumenter(BaseServiceDocumenter):
if self._service_resource:
self.resource_section(doc_structure.get_section('resources'))
self._document_examples(doc_structure.get_section('examples'))
+ context_params_section = doc_structure.get_section('context-params')
+ self.client_context_params(context_params_section)
return doc_structure.flush_structure()
def client_api(self, section):
diff --git a/contrib/python/boto3/py3/boto3/docs/waiter.py b/contrib/python/boto3/py3/boto3/docs/waiter.py
index e2cb3bfe63..a135d972e7 100644
--- a/contrib/python/boto3/py3/boto3/docs/waiter.py
+++ b/contrib/python/boto3/py3/boto3/docs/waiter.py
@@ -90,7 +90,7 @@ def document_resource_waiter(
service_module_name = get_service_module_name(service_model)
description = (
'Waits until this {} is {}. This method calls '
- ':py:meth:`{}.Waiter.{}.wait` which polls. '
+ ':py:meth:`{}.Waiter.{}.wait` which polls '
':py:meth:`{}.Client.{}` every {} seconds until '
'a successful state is reached. An error is returned '
'after {} failed checks.'.format(
diff --git a/contrib/python/boto3/py3/ya.make b/contrib/python/boto3/py3/ya.make
index 5ba88d15f8..0c03676a6d 100644
--- a/contrib/python/boto3/py3/ya.make
+++ b/contrib/python/boto3/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(1.28.70)
+VERSION(1.28.71)
LICENSE(Apache-2.0)