]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-37779 : Add information about the overriding behavior of ConfigParser.read (GH...
authorsblondon <sblondon@users.noreply.github.com>
Wed, 23 Sep 2020 12:28:58 +0000 (14:28 +0200)
committerGitHub <noreply@github.com>
Wed, 23 Sep 2020 12:28:58 +0000 (14:28 +0200)
Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
Co-Authored-By: Paul Ganssle <p.ganssle@gmail.com>
Doc/library/configparser.rst

index 2e22a549ee2813d676b086286959447512fbf525..646e8a317f52c3e314de7677b26656ee5cc29fef 100644 (file)
@@ -135,6 +135,30 @@ involves the ``DEFAULT`` section which provides default values for all other
 sections [1]_.  Note also that keys in sections are
 case-insensitive and stored in lowercase [1]_.
 
+It is possible to read several configurations into a single
+:class:`ConfigParser`, where the most recently added configuration has the
+highest priority. Any conflicting keys are taken from the more recent
+configuration while the previously existing keys are retained.
+
+.. doctest::
+
+   >>> another_config = configparser.ConfigParser()
+   >>> another_config.read('example.ini')
+   ['example.ini']
+   >>> another_config['topsecret.server.com']['Port']
+   '50022'
+   >>> another_config.read_string("[topsecret.server.com]\nPort=48484")
+   >>> another_config['topsecret.server.com']['Port']
+   '48484'
+   >>> another_config.read_dict({"topsecret.server.com": {"Port": 21212}})
+   >>> another_config['topsecret.server.com']['Port']
+   '21212'
+   >>> another_config['topsecret.server.com']['ForwardX11']
+   'no'
+
+This behaviour is equivalent to a :meth:`ConfigParser.read` call with several
+files passed to the *filenames* parameter.
+
 
 Supported Datatypes
 -------------------