| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #25923: Added more const qualifiers to signatures of static and private... | Serhiy Storchaka | 2015-12-25 | 1 | -1/+1 |
|
|
* | Reuse Py_STRINGIFY() macro in sre_lib.h and dynload_win.c. | Serhiy Storchaka | 2015-11-05 | 1 | -4/+2 |
|
|
* | Issue #24268: Fixes generation of init import name on Windows. | Steve Dower | 2015-05-23 | 1 | -1/+1 |
|
|
* | PEP 489: Multi-phase extension module initialization | Nick Coghlan | 2015-05-23 | 1 | -3/+4 |
|
|
* | #22980 Adds platform and version tags to .pyd files | Steve Dower | 2014-12-16 | 1 | -4/+17 |
|
|
* | Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows(). | Richard Oudkerk | 2013-06-10 | 1 | -2/+3 |
|
|
* | Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and | Gregory P. Smith | 2013-03-23 | 1 | -1/+1 |
|
|
* | Fix #13210. Port the Windows build from VS2008 to VS2010. | Brian Curtin | 2012-05-13 | 1 | -0/+8 |
|
|
* | Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. | Brett Cannon | 2012-05-04 | 1 | -4/+4 |
|
|
* | Fix #14600. Correct reference handling and naming of ImportError convenience ... | Brian Curtin | 2012-04-17 | 1 | -3/+3 |
|
|
* | Fix #10854. Make use of the new path and name attributes on ImportError | Brian Curtin | 2012-04-16 | 1 | -2/+3 |
|
|
* | Use the new Unicode API | Victor Stinner | 2011-11-22 | 1 | -1/+1 |
|
|
* | Check for PyUnicode_AS_UNICODE() failure | Victor Stinner | 2011-11-21 | 1 | -1/+6 |
|
|
* | Check error when calling PyUnicode_AppendAndDel() | Victor Stinner | 2011-10-02 | 1 | -3/+5 |
|
|
* | Removed a Windows 9x trick used before LoadLibraryExW. | Brian Curtin | 2011-06-09 | 1 | -17/+8 |
|
|
* | Issue #11619: _PyImport_LoadDynamicModule() doesn't encode the path to bytes | Victor Stinner | 2011-04-04 | 1 | -17/+16 |
|
|
* | Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc() | Victor Stinner | 2011-02-22 | 1 | -1/+1 |
|
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -1/+13 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -210/+210 |
|
|
* | Merged revisions 69038 via svnmerge from | Mark Hammond | 2009-01-27 | 1 | -1/+9 |
|
|
* | Fix typo. | Martin v. Löwis | 2008-06-11 | 1 | -1/+1 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -1/+1 |
|
|
* | Merged revisions 60210-60233 via svnmerge from | Christian Heimes | 2008-01-24 | 1 | -0/+9 |
|
|
* | Merged revisions 59703-59773 via svnmerge from | Christian Heimes | 2008-01-06 | 1 | -1/+2 |
|
|
* | On Windows, when import fails to load a dll module, the message says | Amaury Forgeot d'Arc | 2008-01-03 | 1 | -16/+21 |
|
|
* | Merged revisions 55631-55794 via svnmerge from | Guido van Rossum | 2007-06-06 | 1 | -1/+1 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -8/+0 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -0/+2 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -0/+6 |
|
|
* | When importing an extension on Windows, the code reads the PE 'import | Thomas Heller | 2004-07-02 | 1 | -0/+12 |
|
|
* | Fix a couple of whitespace consistency nits. | Fred Drake | 2002-08-26 | 1 | -2/+2 |
|
|
* | Patch #569753: Remove support for WIN16. | Martin v. Löwis | 2002-06-30 | 1 | -29/+0 |
|
|
* | Use PyOS_snprintf instead of sprintf. | Jeremy Hylton | 2001-11-28 | 1 | -12/+14 |
|
|
* | Fixes for possible buffer overflows in sprintf() usages. | Marc-André Lemburg | 2001-11-28 | 1 | -1/+1 |
|
|
* | Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x probl... | Mark Hammond | 2001-05-09 | 1 | -17/+14 |
|
|
* | Detect conflicting Python DLL on module import under Windows - as per [ Patch... | Mark Hammond | 2000-10-05 | 1 | -1/+152 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Trent Mick's Win64 changes: size_t vs. int or long; also some overflow | Guido van Rossum | 2000-06-28 | 1 | -1/+1 |
|
|
* | Cleanup patches from Greg Stein: | Guido van Rossum | 1999-12-22 | 1 | -1/+4 |
|
|
* | The old platform-specific contents of importdl.c, broken down into one | Guido van Rossum | 1999-12-20 | 1 | -0/+149 |
|
|