Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0969a9f8
Commit
0969a9f8
authored
Jun 01, 2015
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add Py_tp_finalize slot (closes #24345)
Patch from Petr Viktorin.
parent
55a57b07
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
Include/typeslots.h
Include/typeslots.h
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
Objects/typeslots.inc
Objects/typeslots.inc
+1
-0
No files found.
Include/typeslots.h
View file @
0969a9f8
...
@@ -79,3 +79,4 @@
...
@@ -79,3 +79,4 @@
#define Py_am_await 77
#define Py_am_await 77
#define Py_am_aiter 78
#define Py_am_aiter 78
#define Py_am_anext 79
#define Py_am_anext 79
#define Py_tp_finalize 80
Misc/NEWS
View file @
0969a9f8
...
@@ -10,6 +10,8 @@ Release date: 2015-07-05
...
@@ -10,6 +10,8 @@ Release date: 2015-07-05
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #24345: Add Py_tp_finalize slot for the stable ABI.
Library
Library
-------
-------
...
...
Objects/typeslots.inc
View file @
0969a9f8
...
@@ -78,3 +78,4 @@ offsetof(PyHeapTypeObject, as_number.nb_inplace_matrix_multiply),
...
@@ -78,3 +78,4 @@ offsetof(PyHeapTypeObject, as_number.nb_inplace_matrix_multiply),
offsetof
(
PyHeapTypeObject
,
as_async
.
am_await
),
offsetof
(
PyHeapTypeObject
,
as_async
.
am_await
),
offsetof
(
PyHeapTypeObject
,
as_async
.
am_aiter
),
offsetof
(
PyHeapTypeObject
,
as_async
.
am_aiter
),
offsetof
(
PyHeapTypeObject
,
as_async
.
am_anext
),
offsetof
(
PyHeapTypeObject
,
as_async
.
am_anext
),
offsetof
(
PyHeapTypeObject
,
ht_type
.
tp_finalize
),
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment