diff -r 0c320e6032f1 -r e3d595b7fbaa mercurial/pycompat.py --- a/mercurial/pycompat.py Sat Dec 19 12:07:24 2020 +0900 +++ b/mercurial/pycompat.py Mon Dec 28 01:40:08 2020 +0100 @@ -335,7 +335,7 @@ def strkwargs(dic): """ Converts the keys of a python dictonary to str i.e. unicodes so that - they can be passed as keyword arguments as dictonaries with bytes keys + they can be passed as keyword arguments as dictionaries with bytes keys can't be passed as keyword arguments to functions on Python 3. """ dic = {k.decode('latin-1'): v for k, v in dic.items()} @@ -343,7 +343,7 @@ def byteskwargs(dic): """ - Converts keys of python dictonaries to bytes as they were converted to + Converts keys of python dictionaries to bytes as they were converted to str to pass that dictonary as a keyword argument on Python 3. """ dic = {k.encode('latin-1'): v for k, v in dic.items()}