From: Yury Selivanov Date: Wed, 2 Mar 2016 15:43:45 +0000 (-0500) Subject: Sync selectors.py with upstream asyncio X-Git-Tag: v3.6.0a1~541 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ebaea005dc6ab4a06fb585c23321b9bb0398b90;p=thirdparty%2FPython%2Fcpython.git Sync selectors.py with upstream asyncio --- diff --git a/Lib/selectors.py b/Lib/selectors.py index ecd8632d7048..d8769e354115 100644 --- a/Lib/selectors.py +++ b/Lib/selectors.py @@ -49,11 +49,12 @@ SelectorKey.__doc__ = """SelectorKey(fileobj, fd, events, data) Object used to associate a file object to its backing file descriptor, selected event mask, and attached data. """ -SelectorKey.fileobj.__doc__ = 'File object registered.' -SelectorKey.fd.__doc__ = 'Underlying file descriptor.' -SelectorKey.events.__doc__ = 'Events that must be waited for on this file object.' -SelectorKey.data.__doc__ = ('''Optional opaque data associated to this file object. -For example, this could be used to store a per-client session ID.''') +if sys.version_info >= (3, 5): + SelectorKey.fileobj.__doc__ = 'File object registered.' + SelectorKey.fd.__doc__ = 'Underlying file descriptor.' + SelectorKey.events.__doc__ = 'Events that must be waited for on this file object.' + SelectorKey.data.__doc__ = ('''Optional opaque data associated to this file object. + For example, this could be used to store a per-client session ID.''') class _SelectorMapping(Mapping): """Mapping of file objects to selector keys."""