Staging
v0.5.1
https://github.com/python/cpython
Revision 63998a3520ac4c2217946baf99574d9e6a6a959d authored by R David Murray on 20 March 2015, 15:31:38 UTC, committed by R David Murray on 20 March 2015, 15:31:38 UTC
Being able to read non-python text files is not a purpose of linecache, but it
does work and people use it.  This changeset adjusts the language to make it
clear that Python files are not treated uniquely, but does not go so far as to
say reading non-python files is explicitly supported.
1 parent 74a49ac
Raw File
Tip revision: 63998a3520ac4c2217946baf99574d9e6a6a959d authored by R David Murray on 20 March 2015, 15:31:38 UTC
#11726: Make linecache docs reflect that all files are treated the same.
Tip revision: 63998a3
python3dll.c
#include <windows.h>

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