Staging
v0.8.1
https://github.com/python/cpython
Revision c3c3062169fad11e0e74aa85ff1f3d69c0170d42 authored by Christian Heimes on 06 September 2017, 04:43:19 UTC, committed by GitHub on 06 September 2017, 04:43:19 UTC
_PyUnicode_FromId() can return NULL: replace Py_INCREF() with
Py_XINCREF().

Fix coverity report: CID 1417269.
(cherry picked from commit af46eb8)
1 parent ff125e1
Raw File
Tip revision: c3c3062169fad11e0e74aa85ff1f3d69c0170d42 authored by Christian Heimes on 06 September 2017, 04:43:19 UTC
[3.6] _pickle: Fix whichmodule() (GH-3358) (#3361)
Tip revision: c3c3062
python3dll.c
#include <windows.h>

BOOL WINAPI
DllMain(HINSTANCE hInstDLL,
        DWORD fdwReason,
        LPVOID lpReserved)
{
    return TRUE;
}
back to top