configparser no longer accept space as a delimiter
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- Python
- Star
- 77.2k
- Fork
- 35.9k
- Chỉ số merge pull request
- Chỉ số pull request đang chờ
Mô tả
Bug report
Bug description:
Between python 3.14.4 and 3.14.5, python stopped recognising a space as a delimiter.
import configparser
cp=configparser.ConfigParser(delimiters=(' ', '='))
cp.read_string('[all]\nfoo bar=baz')
cp.options('all')
Test using docker on 3.14.4:
$ docker run -it --rm python:3.14.4
Python 3.14.4 (main, May 8 2026, 22:38:20) [GCC 14.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import configparser; cp=configparser.ConfigParser(delimiters=(' ', '=')); cp.read_string('[all]\nfoo bar=baz'); cp.options('all')
['foo']
Same test on 3.14.5:
$ docker run -it --rm python:3.14.5
Python 3.14.5 (main, May 20 2026, 02:52:14) [GCC 14.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import configparser; cp=configparser.ConfigParser(delimiters=(' ', '=')); cp.read_string('[all]\nfoo bar=baz'); cp.options('all')
['foo bar']
Between 3.13.13 and 3.13.14, the same issue appears.
I dug into Lib/configparser.py and its history a bit and I suspect this might be related to https://github.com/python/cpython/pull/146399, although I did not dig deep enough to be sure this test is valid and has the proper input:
Python 3.14.7 (main, Aug 5 2026, 10:29:49) [Clang 21.0.0 (clang-2100.1.1.101)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> delimiters = (' ', '=')
>>> d = "|".join(re.escape(d) for d in delimiters)
>>> _OPT_NV_TMPL_PRE = r"""
... (?P<option>.*?)
... \s*(?: # any number of space/tab,
... (?P<vi>{delim})\s* # optionally followed by
... # any of allowed
... # delimiters, followed by any
... # space/tab
... (?P<value>.*))?$ # everything up to eol
... """
>>> _OPT_NV_TMPL_POST = r"""
... (?P<option> # very permissive!
... (?:(?!{delim})\S)* # non-delimiter non-whitespace
... (?:\s+(?:(?!{delim})\S)+)*) # optionally more words
... \s*(?: # any number of space/tab,
... (?P<vi>{delim})\s* # optionally followed by
... # any of the allowed
... # delimiters, followed by any
... # space/tab
... (?P<value>.*))?$ # everything up to eol
... """
>>> _optcre_pre = re.compile(_OPT_NV_TMPL_PRE.format(delim=d), re.VERBOSE)
>>> _optcre_post = re.compile(_OPT_NV_TMPL_POST.format(delim=d), re.VERBOSE)
>>> _optcre_pre.search('foo bar').groups()
('foo', ' ', 'bar')
>>> _optcre_post.search('foo bar').groups()
('foo bar', None, None)
CPython versions tested on:
3.14
Operating systems tested on:
Linux
Linked PRs
- gh-156382
- gh-156557
- gh-156558
- gh-156559
- gh-156560
- gh-156561
- gh-156562
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Bắt đầu trong Lib/configparser.py và tái hiện hành vi của dấu phân cách bằng các ví dụ Python 3.13.13/3.13.14 hoặc 3.14.4/3.14.5 từ báo cáo. Kiểm tra lịch sử regex của parser, bao gồm PR 146399, và so sánh các PR được liên kết; hoàn tất có nghĩa là các dấu phân cách khoảng trắng được phân tích cú pháp như đã được ghi lại trước đây và phạm vi kiểm thử hồi quy xác minh hành vi này.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- python
- Lĩnh vực
- backend
- Loại issue
- Lỗi
- Độ khó
- 3/5
- Thời gian dự kiến
- 1-2 ngày
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Khá rõ ràng
- Mức phù hợp với người mới
- 25/100