Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
5d65746e
Commit
5d65746e
authored
Aug 25, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add declarations from CPython's "pylifecycle.h".
parent
7e27c7cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
0 deletions
+68
-0
Cython/Includes/cpython/pylifecycle.pxd
Cython/Includes/cpython/pylifecycle.pxd
+68
-0
No files found.
Cython/Includes/cpython/pylifecycle.pxd
0 → 100644
View file @
5d65746e
# Interfaces to configure, query, create & destroy the Python runtime
from
libc.stdio
cimport
FILE
from
.pystate
cimport
PyThreadState
cdef
extern
from
"Python.h"
:
ctypedef
int
wchar_t
void
Py_SetProgramName
(
wchar_t
*
)
wchar_t
*
Py_GetProgramName
()
void
Py_SetPythonHome
(
wchar_t
*
)
wchar_t
*
Py_GetPythonHome
()
# Only used by applications that embed the interpreter and need to
# override the standard encoding determination mechanism
int
Py_SetStandardStreamEncoding
(
const
char
*
encoding
,
const
char
*
errors
)
void
Py_Initialize
()
void
Py_InitializeEx
(
int
)
void
_Py_InitializeEx_Private
(
int
,
int
)
void
Py_Finalize
()
int
Py_FinalizeEx
()
int
Py_IsInitialized
()
PyThreadState
*
Py_NewInterpreter
()
void
Py_EndInterpreter
(
PyThreadState
*
)
# Py_PyAtExit is for the atexit module, Py_AtExit is for low-level
# exit functions.
void
_Py_PyAtExit
(
void
(
*
func
)())
int
Py_AtExit
(
void
(
*
func
)())
void
Py_Exit
(
int
)
# Restore signals that the interpreter has called SIG_IGN on to SIG_DFL.
void
_Py_RestoreSignals
()
int
Py_FdIsInteractive
(
FILE
*
,
const
char
*
)
# Bootstrap __main__ (defined in Modules/main.c)
int
Py_Main
(
int
argc
,
wchar_t
**
argv
)
# In getpath.c
wchar_t
*
Py_GetProgramFullPath
()
wchar_t
*
Py_GetPrefix
()
wchar_t
*
Py_GetExecPrefix
()
wchar_t
*
Py_GetPath
()
void
Py_SetPath
(
const
wchar_t
*
)
int
_Py_CheckPython3
()
# In their own files
const
char
*
Py_GetVersion
()
const
char
*
Py_GetPlatform
()
const
char
*
Py_GetCopyright
()
const
char
*
Py_GetCompiler
()
const
char
*
Py_GetBuildInfo
()
const
char
*
_Py_gitidentifier
()
const
char
*
_Py_gitversion
()
ctypedef
void
(
*
PyOS_sighandler_t
)(
int
)
PyOS_sighandler_t
PyOS_getsig
(
int
)
PyOS_sighandler_t
PyOS_setsig
(
int
,
PyOS_sighandler_t
)
# Random
int
_PyOS_URandom
(
void
*
buffer
,
Py_ssize_t
size
)
int
_PyOS_URandomNonblock
(
void
*
buffer
,
Py_ssize_t
size
)
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