-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch fixes SEGFAULTs under Python 3.12 by using public C-API, just like with Python 3.13 (#909).
- Loading branch information
Showing
6 changed files
with
51 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
Revert to using the public argument parsing API | ||
:c:func:`PyArg_ParseTupleAndKeywords` under Python 3.13 | ||
-- :user:`webknjaz`. | ||
Reverted to using the public argument parsing API | ||
:c:func:`PyArg_ParseTupleAndKeywords` under Python 3.12 | ||
-- by :user:`charles-dyfis-net` and :user:`webknjaz`. | ||
|
||
The effect is that this change prevents build failures with | ||
clang 16.9.6 and gcc-14 reported in :issue:`926`. It also | ||
fixes a segmentation fault crash caused by passing keyword | ||
arguments to :py:meth:`MultiDict.getall() | ||
<multidict.MultiDict.getall>` discovered by :user:`jonaslb` | ||
and :user:`hroncok` while examining the problem. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
909.bugfix.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
909.bugfix.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ eof | |
fallback | ||
fastpath | ||
filename | ||
gcc | ||
getitem | ||
github | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters