From: Tom Christie Date: Mon, 13 May 2019 15:54:41 +0000 (+0100) Subject: Minor docstring tweak X-Git-Tag: 0.3.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1b10e593cfd49b1326549414f2bebd5604968e1;p=thirdparty%2Fhttpx.git Minor docstring tweak --- diff --git a/httpcore/interfaces.py b/httpcore/interfaces.py index f374a3bd..8025de3e 100644 --- a/httpcore/interfaces.py +++ b/httpcore/interfaces.py @@ -24,10 +24,10 @@ class Protocol(str, enum.Enum): class Dispatcher: """ - The base class for all adapter or dispatcher classes. + Base class for dispatcher classes, that handle sending the request. Stubs out the interface, as well as providing a `.request()` convienence - implementation, to make it easy to use or test stand-alone adapters, + implementation, to make it easy to use or test stand-alone dispatchers, without requiring a complete `Client` instance. """