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
11d7b142
Commit
11d7b142
authored
May 23, 2015
by
Steve Dower
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #24268: Adds PyModuleDef_Init and PyModuleDef_Type to python3.def (stable ABI)
parent
1a90b17b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Include/moduleobject.h
Include/moduleobject.h
+1
-1
PC/python3.def
PC/python3.def
+2
-0
No files found.
Include/moduleobject.h
View file @
11d7b142
...
@@ -31,7 +31,7 @@ PyAPI_FUNC(struct PyModuleDef*) PyModule_GetDef(PyObject*);
...
@@ -31,7 +31,7 @@ PyAPI_FUNC(struct PyModuleDef*) PyModule_GetDef(PyObject*);
PyAPI_FUNC
(
void
*
)
PyModule_GetState
(
PyObject
*
);
PyAPI_FUNC
(
void
*
)
PyModule_GetState
(
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyModuleDef_Init
(
struct
PyModuleDef
*
);
PyAPI_FUNC
(
PyObject
*
)
PyModuleDef_Init
(
struct
PyModuleDef
*
);
Py
TypeObject
PyModuleDef_Type
;
Py
API_DATA
(
PyTypeObject
)
PyModuleDef_Type
;
typedef
struct
PyModuleDef_Base
{
typedef
struct
PyModuleDef_Base
{
PyObject_HEAD
PyObject_HEAD
...
...
PC/python3.def
View file @
11d7b142
...
@@ -330,6 +330,8 @@ EXPORTS
...
@@ -330,6 +330,8 @@ EXPORTS
PyModule_GetState=python35.PyModule_GetState
PyModule_GetState=python35.PyModule_GetState
PyModule_New=python35.PyModule_New
PyModule_New=python35.PyModule_New
PyModule_Type=python35.PyModule_Type DATA
PyModule_Type=python35.PyModule_Type DATA
PyModuleDef_Init=python35.PyModuleDef_Init
PyModuleDef_Type=python35.PyModuleDef_Type DATA
PyNullImporter_Type=python35.PyNullImporter_Type DATA
PyNullImporter_Type=python35.PyNullImporter_Type DATA
PyNumber_Absolute=python35.PyNumber_Absolute
PyNumber_Absolute=python35.PyNumber_Absolute
PyNumber_Add=python35.PyNumber_Add
PyNumber_Add=python35.PyNumber_Add
...
...
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