diff options
author | litlighilit <97860435+litlighilit@users.noreply.github.com> | 2023-06-11 14:06:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 14:06:42 (GMT) |
commit | 845e593c4ec97dd9f73b50536c1e1e7ed10ceecd (patch) | |
tree | 3cda2af025d0426bd5aea6410e894e8efae87f3c | |
parent | d4fa52934a282df51cff800eee5caeb94a229547 (diff) | |
download | cpython-845e593c4ec97dd9f73b50536c1e1e7ed10ceecd.zip cpython-845e593c4ec97dd9f73b50536c1e1e7ed10ceecd.tar.gz cpython-845e593c4ec97dd9f73b50536c1e1e7ed10ceecd.tar.bz2 |
Fix typo in configparser module docstring (#105652)
"zc.buildbot" -> "zc.buildout"
-rw-r--r-- | Lib/configparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py index 682d973..71362d2 100644 --- a/Lib/configparser.py +++ b/Lib/configparser.py @@ -59,7 +59,7 @@ ConfigParser -- responsible for parsing a list of instance. It will be used as the handler for option value pre-processing when using getters. RawConfigParser objects don't do any sort of interpolation, whereas ConfigParser uses an instance of - BasicInterpolation. The library also provides a ``zc.buildbot`` + BasicInterpolation. The library also provides a ``zc.buildout`` inspired ExtendedInterpolation implementation. When `converters` is given, it should be a dictionary where each key |