aboutsummaryrefslogtreecommitdiff
path: root/Python/dynload_win.c
AgeCommit message (Expand)Author
2023-02-08gh-101614: Don't treat python3_d.dll as a Python DLL when checking extension ...Miss Islington (bot)
2020-07-10bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka
2020-07-06bpo-29778: Ensure python3.dll is loaded from correct locations when Python is...Steve Dower
2020-02-04bpo-39553: Delete HAVE_SXS protected code (GH-18356)Zackery Spytz
2019-08-17bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-1...shireenrao
2019-07-13bpo-28269: Replace strcasecmp with system function _stricmp. (GH-13095)Minmin Gong
2019-03-29bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower
2019-03-13bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)Serhiy Storchaka
2019-02-02bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts
2017-06-28[security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka
2015-12-25Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka
2015-11-05Reuse Py_STRINGIFY() macro in sre_lib.h and dynload_win.c.Serhiy Storchaka
2015-05-23Issue #24268: Fixes generation of init import name on Windows.Steve Dower
2015-05-23PEP 489: Multi-phase extension module initializationNick Coghlan
2014-12-15#22980 Adds platform and version tags to .pyd filesSteve Dower
2013-06-10Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().Richard Oudkerk
2013-03-23Fixes issue4653 - Correctly specify the buffer size to FormatMessageW andGregory P. Smith
2012-05-13Fix #13210. Port the Windows build from VS2008 to VS2010.Brian Curtin
2012-05-04Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py.Brett Cannon
2012-04-17Fix #14600. Correct reference handling and naming of ImportError convenience ...Brian Curtin
2012-04-16Fix #10854. Make use of the new path and name attributes on ImportErrorBrian Curtin
2011-11-22Use the new Unicode APIVictor Stinner
2011-11-21Check for PyUnicode_AS_UNICODE() failureVictor Stinner
2011-10-02Check error when calling PyUnicode_AppendAndDel()Victor Stinner
2011-06-09Removed a Windows 9x trick used before LoadLibraryExW.Brian Curtin
2011-04-04Issue #11619: _PyImport_LoadDynamicModule() doesn't encode the path to bytesVictor Stinner
2011-02-22Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc()Victor Stinner
2010-12-03Merge branches/pep-0384.Martin v. Löwis
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2009-01-27Merged revisions 69038 via svnmerge fromMark Hammond
2008-06-11Fix typo.Martin v. Löwis
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2008-01-24Merged revisions 60210-60233 via svnmerge fromChristian Heimes
2008-01-06Merged revisions 59703-59773 via svnmerge fromChristian Heimes
2008-01-03On Windows, when import fails to load a dll module, the message saysAmaury Forgeot d'Arc
2007-06-06Merged revisions 55631-55794 via svnmerge fromGuido van Rossum
2007-04-27Merged revisions 53952-54987 via svnmerge fromGuido van Rossum
2006-08-11Merged revisions 46753-51188 via svnmerge fromThomas Wouters
2006-04-21Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters
2004-07-02When importing an extension on Windows, the code reads the PE 'importThomas Heller
2002-08-26Fix a couple of whitespace consistency nits.Fred Drake
2002-06-30Patch #569753: Remove support for WIN16.Martin v. Löwis
2001-11-28Use PyOS_snprintf instead of sprintf.Jeremy Hylton
2001-11-28Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg
2001-05-09Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x probl...Mark Hammond
2000-10-05Detect conflicting Python DLL on module import under Windows - as per [ Patch...Mark Hammond
2000-09-01REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum
2000-06-30Change copyright notice - 2nd try.Guido van Rossum
2000-06-30Change copyright notice.Guido van Rossum
2000-06-28Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum