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
dc392e31
Commit
dc392e31
authored
Jan 01, 2003
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move _PyInt_Init() into pythonrun.h, since all the other _Init()
functions are here. Suggested by Skip.
parent
4e8f5492
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
1 deletion
+1
-1
Include/intobject.h
Include/intobject.h
+0
-1
Include/pythonrun.h
Include/pythonrun.h
+1
-0
No files found.
Include/intobject.h
View file @
dc392e31
...
...
@@ -30,7 +30,6 @@ PyAPI_DATA(PyTypeObject) PyInt_Type;
#define PyInt_Check(op) PyObject_TypeCheck(op, &PyInt_Type)
#define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
PyAPI_FUNC
(
int
)
_PyInt_Init
(
void
);
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromString
(
char
*
,
char
**
,
int
);
#ifdef Py_USING_UNICODE
PyAPI_FUNC
(
PyObject
*
)
PyInt_FromUnicode
(
Py_UNICODE
*
,
int
,
int
);
...
...
Include/pythonrun.h
View file @
dc392e31
...
...
@@ -101,6 +101,7 @@ PyAPI_FUNC(void) _PyImport_Init(void);
PyAPI_FUNC
(
void
)
_PyExc_Init
(
void
);
PyAPI_FUNC
(
void
)
_PyImportHooks_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyFrame_Init
(
void
);
PyAPI_FUNC
(
int
)
_PyInt_Init
(
void
);
/* Various internal finalizers */
PyAPI_FUNC
(
void
)
_PyExc_Fini
(
void
);
...
...
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