mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-29623: Make PathLike objects work with ConfigParser.read() (#242)
This commit is contained in:
parent
677ab995ce
commit
85b8d01c91
4 changed files with 31 additions and 8 deletions
|
@ -2,6 +2,7 @@ import collections
|
|||
import configparser
|
||||
import io
|
||||
import os
|
||||
import pathlib
|
||||
import textwrap
|
||||
import unittest
|
||||
import warnings
|
||||
|
@ -720,6 +721,16 @@ boolean {0[0]} NO
|
|||
parsed_files = cf.read(file1)
|
||||
self.assertEqual(parsed_files, [file1])
|
||||
self.assertEqual(cf.get("Foo Bar", "foo"), "newbar")
|
||||
# check when we pass only a Path object:
|
||||
cf = self.newconfig()
|
||||
parsed_files = cf.read(pathlib.Path(file1))
|
||||
self.assertEqual(parsed_files, [file1])
|
||||
self.assertEqual(cf.get("Foo Bar", "foo"), "newbar")
|
||||
# check when we passed both a filename and a Path object:
|
||||
cf = self.newconfig()
|
||||
parsed_files = cf.read([pathlib.Path(file1), file1])
|
||||
self.assertEqual(parsed_files, [file1, file1])
|
||||
self.assertEqual(cf.get("Foo Bar", "foo"), "newbar")
|
||||
# check when we pass only missing files:
|
||||
cf = self.newconfig()
|
||||
parsed_files = cf.read(["nonexistent-file"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue