* Add 'fork' to auto backend
* Version 0.9.3
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
+## 0.9.3 (December 7th, 2019)
+
+### Fixed
+
+- Fixed HTTP/2 with autodetection backend. (Pull #614)
+
## 0.9.2 (December 7th, 2019)
* Released due to packaging build artifact.
__title__ = "httpx"
__description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.9.2"
+__version__ = "0.9.3"
def create_event(self) -> BaseEvent:
return self.backend.create_event()
+
+ async def fork(
+ self,
+ coroutine1: typing.Callable,
+ args1: typing.Sequence,
+ coroutine2: typing.Callable,
+ args2: typing.Sequence,
+ ) -> None:
+ return await self.backend.fork(coroutine1, args1, coroutine2, args2)