summaryrefslogtreecommitdiffstats
path: root/Lib/configparser.py
diff options
context:
space:
mode:
authorWoko <banbooliu@gmail.com>2019-03-04 02:23:19 (GMT)
committerLisa Roach <lisaroach14@gmail.com>2019-03-04 02:23:19 (GMT)
commit45d75faa7211592509c7c9da148a74687f182894 (patch)
treeb00fa856da510d264503bae0c07571c3ff407593 /Lib/configparser.py
parent8b914d2767acba3a9e78f1dacdc2d61dbfd7e304 (diff)
downloadcpython-45d75faa7211592509c7c9da148a74687f182894.zip
cpython-45d75faa7211592509c7c9da148a74687f182894.tar.gz
cpython-45d75faa7211592509c7c9da148a74687f182894.tar.bz2
fix typo in configparser doc (GH-12154)
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r--Lib/configparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py
index 79a9910..924cc56 100644
--- a/Lib/configparser.py
+++ b/Lib/configparser.py
@@ -56,7 +56,7 @@ ConfigParser -- responsible for parsing a list of
When `interpolation` is given, it should be an Interpolation subclass
instance. It will be used as the handler for option value
- pre-processing when using getters. RawConfigParser object s don't do
+ 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``
inspired ExtendedInterpolation implementation.