- python: nightly
env: TOX_ENV=py3-full
# Docs and lint python versions must be synced with those in tox.ini
- - python: '3.7'
+ - python: '3.8'
env: TOX_ENV=docs
- - python: '3.6'
+ - python: '3.8'
env: TOX_ENV=lint
install:
def current() -> "IOLoop":
pass
- @typing.overload # noqa: F811
+ @typing.overload
@staticmethod
- def current(instance: bool = True) -> Optional["IOLoop"]:
+ def current(instance: bool = True) -> Optional["IOLoop"]: # noqa: F811
pass
- @staticmethod # noqa: F811
- def current(instance: bool = True) -> Optional["IOLoop"]:
+ @staticmethod
+ def current(instance: bool = True) -> Optional["IOLoop"]: # noqa: F811
"""Returns the current thread's `IOLoop`.
If an `IOLoop` is currently running or has been marked as
def get_argument(self, name: str, default: str, strip: bool = True) -> str:
pass
- @overload # noqa: F811
- def get_argument(
+ @overload
+ def get_argument( # noqa: F811
self, name: str, default: _ArgDefaultMarker = _ARG_DEFAULT, strip: bool = True
) -> str:
pass
- @overload # noqa: F811
- def get_argument(
+ @overload
+ def get_argument( # noqa: F811
self, name: str, default: None, strip: bool = True
) -> Optional[str]:
pass
# the outputs of the tools (especially where exactly the
# linter warning-supression comments go), so we specify a
# python version for these builds.
- docs: python3.7
- lint: python3.6
+ docs: python3.8
+ lint: python3.8
deps =
full: pycurl