diff options
author | Matt Martz <matt@sivel.net> | 2019-04-23 11:52:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 11:52:24 -0500 |
commit | e0f30ed0ee8956cd6d24c257902013c7515572ae (patch) | |
tree | ed6aad571146792fc1a6c0479cdf63937fca3f49 /lib/ansible/compat | |
parent | a9f24e097fd238e31be404f2046a954be88a4262 (diff) | |
download | ansible-e0f30ed0ee8956cd6d24c257902013c7515572ae.tar.gz |
Update bundled copy of selectors2 from 1.1.0 to 1.1.1 (#55457)
* Update bundled copy of selectors2 from 1.1.0 to 1.1.1. Fixes #55300
* ci_complete
Diffstat (limited to 'lib/ansible/compat')
-rw-r--r-- | lib/ansible/compat/selectors/__init__.py | 2 | ||||
-rw-r--r-- | lib/ansible/compat/selectors/_selectors2.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/ansible/compat/selectors/__init__.py b/lib/ansible/compat/selectors/__init__.py index 2f73c02280..e47984065b 100644 --- a/lib/ansible/compat/selectors/__init__.py +++ b/lib/ansible/compat/selectors/__init__.py @@ -24,7 +24,7 @@ Compat selectors library. Python-3.5 has this builtin. The selectors2 package exists on pypi to backport the functionality as far as python-2.6. ''' # The following makes it easier for us to script updates of the bundled code -_BUNDLED_METADATA = {"pypi_name": "selectors2", "version": "1.1.0", "version_constraints": ">1.0,<2.0"} +_BUNDLED_METADATA = {"pypi_name": "selectors2", "version": "1.1.1", "version_constraints": ">1.0,<2.0"} # Added these bugfix commits from 2.1.0: # * https://github.com/SethMichaelLarson/selectors2/commit/3bd74f2033363b606e1e849528ccaa76f5067590 diff --git a/lib/ansible/compat/selectors/_selectors2.py b/lib/ansible/compat/selectors/_selectors2.py index 9be1f714ad..be44b4b36f 100644 --- a/lib/ansible/compat/selectors/_selectors2.py +++ b/lib/ansible/compat/selectors/_selectors2.py @@ -14,7 +14,7 @@ # Backport of selectors.py from Python 3.5+ to support Python < 3.4 # Also has the behavior specified in PEP 475 which is to retry syscalls # in the case of an EINTR error. This module is required because selectors34 -# does not follow this behavior and instead returns that no dile descriptor +# does not follow this behavior and instead returns that no file descriptor # events have occurred rather than retry the syscall. The decision to drop # support for select.devpoll is made to maintain 100% test coverage. @@ -34,7 +34,7 @@ except (AttributeError, ImportError): # Python 3.3< __author__ = 'Seth Michael Larson' __email__ = 'sethmichaellarson@protonmail.com' -__version__ = '1.1.0' +__version__ = '1.1.1' __license__ = 'MIT' __all__ = [ |