Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
454f026
Added check for delimiters in cfgparser keys to _validate_value_types
lincolnj1 Jan 16, 2025
20b24b1
Deleted some trailing whitespace
lincolnj1 Jan 22, 2025
5b730b6
Merge branch 'python:main' into fix-issue-128843
lincolnj1 Jan 22, 2025
9cc3506
Added check for section pattern in key and moved
lincolnj1 Jan 24, 2025
3638e67
Clarified _validate_key_contents() doc comment
lincolnj1 Jan 24, 2025
b161cea
Merge branch 'python:main' into fix-issue-128843
lincolnj1 Jan 24, 2025
f73d17a
Merge branch 'python:main' into fix-issue-128843
lincolnj1 Jan 24, 2025
5a47f44
Clarified new error name/doc comment and improved
lincolnj1 Jan 24, 2025
e12b696
Clarified InvalidWriteError doc comment
lincolnj1 Jan 24, 2025
f5f1cbb
Merge branch 'fix-issue-128843' of https://github.com/lincolnj1/cpyth…
lincolnj1 Jan 24, 2025
3d84347
Merge branch 'main' into validate-config-writes
lincolnj1 Jan 24, 2025
97c8e93
Remove trailing whitespace
lincolnj1 Jan 27, 2025
ea137d0
Adding documentation for InvalidWriteError
lincolnj1 Feb 15, 2025
7ca33c7
Remove trailing whitespace
lincolnj1 Feb 15, 2025
353eaf1
Cleaned up documentation on InvalidWriteError
lincolnj1 Feb 21, 2025
ccf715e
Merge branch 'main' into validate-config-writes
lincolnj1 Feb 21, 2025
a3e8848
Delint of test-configparser.py
lincolnj1 Feb 21, 2025
0e278fd
Removing trailing whitespace on line 2184 of test_configparser
lincolnj1 Feb 21, 2025
3da65ae
📜🤖 Added by blurb_it.
blurb-it[bot] Feb 21, 2025
aa9c92a
Changed formatting of configparser.py __all__
lincolnj1 Feb 21, 2025
b001df6
Merge branch 'validate-config-writes' of github.com:lincolnj1/cpython…
lincolnj1 Feb 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
📜🤖 Added by blurb_it.
  • Loading branch information
blurb-it[bot] authored Feb 21, 2025
commit 3da65ae00e7bce5dfd19e316cf39e0ccea20ddf7
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stdlib configparser will now attempt to validate that keys it writes will not result in file corruption (creating a file unable to be accurately parsed by a future read() call from the same parser). Attempting a corrupting write() will raise an InvalidWriteError.