Staging
v0.5.1
https://github.com/python/cpython
Revision 0029099decbf0272cea837b029662bee1ee3e4d4 authored by Miss Islington (bot) on 24 June 2020, 11:14:10 UTC, committed by GitHub on 24 June 2020, 11:14:10 UTC
Automerge-Triggered-By: @matrixise
(cherry picked from commit 80526f68411a9406a9067095fbf6a0f88047cac5)

Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com>

Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com>
1 parent 4f5dde4
Raw File
Tip revision: 0029099decbf0272cea837b029662bee1ee3e4d4 authored by Miss Islington (bot) on 24 June 2020, 11:14:10 UTC
Fix typo in dataclasses module (GH-21109) (#21111)
Tip revision: 0029099
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"
#include "pycore_pylifecycle.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_BytesMain(argc, argv);
}
#endif
back to top