We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196cad6 commit 3ed6ed4Copy full SHA for 3ed6ed4
1 file changed
README.rst
@@ -375,11 +375,11 @@ shown below::
375
... def foo_float(self, bar: float):
376
... return 'float'
377
378
-In Python 3.6 and earlier, the ``SingleDispatch`` class uses a
+In Python 3.5 and earlier, the ``SingleDispatch`` class uses a
379
meta-class ``SingleDispatchMeta`` to manage the dispatch registries.
380
However in Python 3.6 and later the ``__init_subclass__`` method is used
381
instead. If your class also inherits from an ABC interface you can use
382
-the ``SingleDispatchABCMeta`` metaclass in Python 3.6 and earlier.
+the ``SingleDispatchABCMeta`` metaclass in Python 3.5 and earlier.
383
384
Finally, accessing the method ``foo`` via a class will use the dispatch
385
registry for that class::
0 commit comments