Staging
v0.5.1
https://github.com/python/cpython
Revision d64fd617e02346ecbcba9559f227936e08e89602 authored by Robert Rouhani on 06 May 2020, 00:49:29 UTC, committed by GitHub on 06 May 2020, 00:49:29 UTC


Use importlib instead of imp.

Automerge-Triggered-By: @brettcannon.
(cherry picked from commit f40bd46)

Co-authored-by: Robert Rouhani robert.rouhani@gmail.com
1 parent 8ddf915
Raw File
Tip revision: d64fd617e02346ecbcba9559f227936e08e89602 authored by Robert Rouhani on 06 May 2020, 00:49:29 UTC
[3.7] bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750) (GH-19935)
Tip revision: d64fd61
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
    return Py_Main(argc, argv);
}
#else
int
main(int argc, char **argv)
{
    return _Py_UnixMain(argc, argv);
}
#endif
back to top