6533 Commits (fcb285609a2e55f2dc63dcfbb32e4e2fddf71546)

Author SHA1 Message Date
Eric Snow b75b1a3504
bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()." (gh-12806) 7 years ago
Eric Snow f13c5c8b94
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12360) 7 years ago
Simeon 63b5fc5f42 Fix typos in compile.c comments (GH-12752) 7 years ago
Victor Stinner 8709490f48
bpo-34373: Fix time.mktime() on AIX (GH-12726) 7 years ago
Victor Stinner 6a8c3139ae
bpo-36301: Fix _PyPreConfig_Read() compiler warning (GH-12695) 7 years ago
Brad Larsen a4d7836239 bpo-36495: Fix two out-of-bounds array reads (GH-12641) 7 years ago
Steve Dower 2438cdf0e9
bpo-36085: Enable better DLL resolution on Windows (GH-12302) 7 years ago
Victor Stinner 2f54908afc
bpo-36471: Add _Py_RunMain() (GH-12618) 7 years ago
Victor Stinner d929f1838a
bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589) 7 years ago
Pablo Galindo 34ef64fe59 bpo-36447, bpo-36447: Fix refleak in _PySys_InitMain() (GH-12586) 7 years ago
Victor Stinner 5ac27a50ff
bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576) 7 years ago
Victor Stinner 484f20d2ff
bpo-36444: Add _PyCoreConfig._init_main (GH-12572) 7 years ago
Victor Stinner 8b9dbc017a
bpo-36444: Remove _PyMainInterpreterConfig (GH-12571) 7 years ago
Victor Stinner f8ba6f5afc
bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563) 7 years ago
Victor Stinner 20004959d2
bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546) 7 years ago
Victor Stinner f78a5e9ce8
bpo-36301: Add _Py_GetEnv() function (GH-12542) 7 years ago
Victor Stinner 1075d1684a
bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540) 7 years ago
Stefan Krah 027b09c5a1
bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504) 7 years ago
Victor Stinner a6fbc4e25e
bpo-36301: Add _Py_PreInitializeFromConfig() (GH-12536) 7 years ago
Victor Stinner f72346c475
bpo-36301: Cleanup preconfig code (GH-12535) 7 years ago
Inada Naoki d3c72a223a
bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473) 7 years ago
Victor Stinner 6d5ee973f0
bpo-36301: Add _PyRuntimeState.preconfig (GH-12506) 7 years ago
Zackery Spytz 97f5de01ad bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-10625) 7 years ago
Zackery Spytz 9b4a1b1e23 bpo-36374: Fix a possible null pointer dereference (GH-12449) 7 years ago
Victor Stinner fa15376848
bpo-36301: Add _PyPreCmdline internal API (GH-12458) 7 years ago
Victor Stinner 4a1468e593
bpo-36356: Fix _PyCoreConfig_Read() (GH-12454) 7 years ago
Victor Stinner f29084d611
bpo-36301: Add _PyRuntime.pre_initialized (GH-12457) 7 years ago
Stéphane Wirtel 0d765e3849 bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (GH-12430) 7 years ago
Victor Stinner fd23cfa464
bpo-35388: Fix _PyRuntime_Finalize() (GH-12443) 7 years ago
Victor Stinner fc96e5474a
bpo-36236: Fix _PyPathConfig_ComputeSysPath0() for empty argv (GH-12441) 7 years ago
Victor Stinner dcf617152e
bpo-36236: Handle removed cwd at Python init (GH-12424) 7 years ago
Victor Stinner a712679a2b
bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432) 7 years ago
Stéphane Wirtel 943395fab9 bpo-36333: Fix leak _PyRuntimeState_Fini (GH-12400) 7 years ago
btharper e130a07eb2 bpo-36356: Fix memory leak in _PyPreConfig_Read() (GH-12425) 7 years ago
Victor Stinner faddaedd05
bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423) 7 years ago
Victor Stinner 5f9cf23502
bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422) 7 years ago
Victor Stinner c183444f7e
bpo-36301: Fix Py_Main() memory leaks (GH-12420) 7 years ago
Victor Stinner 1be0d1135f
bpo-36352: Clarify fileutils.h documentation (GH-12406) 7 years ago
Stéphane Wirtel 9e06d2b865 bpo-36328: Fix compiler warning in Py_NewInterpreter() (GH-12381) 7 years ago
Pablo Galindo 0c9258a6d2
bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398) 7 years ago
Serhiy Storchaka 1b0393d5b7
bpo-36127: Fix compiler warning in _PyArg_UnpackKeywords(). (GH-12353) 7 years ago
Eric Snow d2fdd1fedf
bpo-36124: Add PyInterpreterState.dict. (gh-12132) 7 years ago
Eric Snow c11183cdcf
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359) 7 years ago
Eric Snow 842a2f07f2
bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246) 7 years ago
Victor Stinner e3f4070aee
bpo-33608: Fix PyEval_InitThreads() warning (GH-12346) 7 years ago
Victor Stinner 625997622b
bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347) 7 years ago
Victor Stinner 74f6568bbd
bpo-36301: Add _PyWstrList structure (GH-12343) 7 years ago
Serhiy Storchaka 3191391515
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) 7 years ago
Serhiy Storchaka 2c0d3f4547
bpo-36254: Fix yet one invalid use of %d in format string in C. (GH-12318) 7 years ago
Serhiy Storchaka f2f55e7f03
bpo-36282: Improved error message for too much positional arguments. (GH-12310) 7 years ago