diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-08-26 22:45:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 22:45:45 (GMT) |
commit | 9a943b4ce13fac26873b8100e89c818c5c47ac4b (patch) | |
tree | b9036ada2e39eb27652d937406d1c46229ba5cbe /Include/internal | |
parent | 6b2e3256b6752055498f41f343fb22100845bc9d (diff) | |
download | cpython-9a943b4ce13fac26873b8100e89c818c5c47ac4b.zip cpython-9a943b4ce13fac26873b8100e89c818c5c47ac4b.tar.gz cpython-9a943b4ce13fac26873b8100e89c818c5c47ac4b.tar.bz2 |
bpo-36763: Make Py_BytesMain() public (GH-15532)
Declare Py_BytesMain() in Include/pylifecycle.h, rather in
Include/internal/pycore_pylifecycle.h.
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_pylifecycle.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/internal/pycore_pylifecycle.h b/Include/internal/pycore_pylifecycle.h index 4957429..7ea4488 100644 --- a/Include/internal/pycore_pylifecycle.h +++ b/Include/internal/pycore_pylifecycle.h @@ -15,8 +15,6 @@ extern "C" { * KeyboardInterrupt exception, suggesting the user pressed ^C. */ PyAPI_DATA(int) _Py_UnhandledKeyboardInterrupt; -PyAPI_FUNC(int) Py_BytesMain(int argc, char **argv); - extern int _Py_SetFileSystemEncoding( const char *encoding, const char *errors); |