| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-99300: Use Py_NewRef() in PC/ directory (#99479) | Victor Stinner | 2022-11-14 | 1 | -2/+1 |
|
|
* | GH-90699: Remove remaining `_Py_IDENTIFIER` stdlib usage (GH-99067) | Kumar Aditya | 2022-11-07 | 1 | -6/+2 |
|
|
* | gh-96577: Fixes buffer overrun in _msi module (GH-96633) | Steve Dower | 2022-09-07 | 1 | -2/+2 |
|
|
* | gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537) | Inada Naoki | 2022-05-12 | 1 | -6/+0 |
|
|
* | bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) | Victor Stinner | 2020-12-01 | 1 | -1/+1 |
|
|
* | bpo-39573: Use the Py_TYPE() macro (GH-21433) | Victor Stinner | 2020-07-10 | 1 | -3/+3 |
|
|
* | bpo-36346: Undeprecate private function _PyUnicode_AsUnicode(). (GH-21336) | Serhiy Storchaka | 2020-07-05 | 1 | -3/+0 |
|
|
* | bpo-41187: Convert the _msi module to Argument Clinic (GH-21264) | Serhiy Storchaka | 2020-07-01 | 1 | -183/+341 |
|
|
* | bpo-41142: Add support of non-ASCII paths for CAB files. (GH-21195) | Serhiy Storchaka | 2020-06-30 | 1 | -10/+53 |
|
|
* | bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126) | Serhiy Storchaka | 2020-06-25 | 1 | -6/+6 |
|
|
* | bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) | Victor Stinner | 2020-04-07 | 1 | -4/+4 |
|
|
* | bpo-12202: Properly check MsiSummaryInfoGetProperty() calls in msilib (GH-13711) | Zackery Spytz | 2019-06-01 | 1 | -0/+3 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -8/+8 |
|
|
* | bpo-36140: Fix an incorrect check in msidb_getsummaryinformation() (GH-12074) | Zackery Spytz | 2019-03-07 | 1 | -1/+1 |
|
|
* | bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac... | Tzu-ping Chung | 2019-02-02 | 1 | -10/+19 |
|
|
* | bpo-23855: Add missing NULL checks for malloc() in _msi.c (GH-9038) | Zackery Spytz | 2018-09-07 | 1 | -0/+7 |
|
|
* | bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539) | Berker Peksag | 2017-11-24 | 1 | -0/+2 |
|
|
* | bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528) | Berker Peksag | 2017-11-24 | 1 | -0/+6 |
|
|
* | bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459) | Berker Peksag | 2017-11-23 | 1 | -1/+5 |
|
|
* | bpo-20486: Implement Database.Close() method in msilib (GH-4141) | Berker Peksag | 2017-11-07 | 1 | -8/+13 |
|
|
* | Fix a memory leak in _msi.c (#4127) | Zackery Spytz | 2017-11-07 | 1 | -0/+1 |
|
|
* | bpo-9566: Fix some Windows x64 compiler warnings (#2492) | Segev Finer | 2017-07-26 | 1 | -9/+9 |
|
|
* | Fix compiler warnings on Windows introduced in bpo-13617. (#2464) | Serhiy Storchaka | 2017-06-28 | 1 | -1/+1 |
|
|
* | [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) | Serhiy Storchaka | 2017-06-28 | 1 | -1/+5 |
|
|
* | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever | Serhiy Storchaka | 2017-01-23 | 1 | -24/+12 |
|
|
* | Merge with 3.5 | Steve Dower | 2016-09-09 | 1 | -3/+17 |
|\ |
|
| * | Issue #24594: Validates persist parameter when opening MSI database | Steve Dower | 2016-09-09 | 1 | -3/+17 |
|
|
* | | _msi.c: try to fix compiler warnings | Victor Stinner | 2016-03-23 | 1 | -6/+6 |
|/ |
|
* | Issue #21931: Fix error handling in msilib.FCICreate(). | Zachary Ware | 2015-05-18 | 1 | -3/+12 |
|
|
* | _msi.c: Fix compiler warnings on Windows 64-bit | Victor Stinner | 2013-11-19 | 1 | -4/+4 |
|
|
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 1 | -2/+2 |
|
|
* | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() | Charles-Francois Natali | 2013-05-20 | 1 | -34/+34 |
|
|
* | Use the new Unicode API | Victor Stinner | 2011-11-22 | 1 | -5/+5 |
|
|
* | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -2/+2 |
|
|
* | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -2/+6 |
|
|
* | Welcome to the UTF-8 world. | Florent Xicluna | 2010-09-03 | 1 | -1/+1 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -269/+269 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -4/+4 |
|
|
* | RPC_WSTR is not available Visual Studio 2003 or earlier. | Hirokazu Yamamoto | 2008-08-17 | 1 | -1/+1 |
|
|
* | Bug #3542: Support Unicode strings in _msi module. | Martin v. Löwis | 2008-08-16 | 1 | -19/+19 |
|
|
* | Return the module at the end of its init function. | Amaury Forgeot d'Arc | 2008-06-17 | 1 | -1/+1 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -4/+18 |
|
|
* | Port GetInteger and GetString to 3k. | Martin v. Löwis | 2008-06-02 | 1 | -2/+2 |
|
|
* | Merged revisions 63888 via svnmerge from | Martin v. Löwis | 2008-06-02 | 1 | -0/+47 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -6/+6 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-12 | 1 | -9/+9 |
|
|
* | Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. | Martin v. Löwis | 2007-12-04 | 1 | -2/+6 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -4/+4 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -8/+4 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -1/+1 |
|
|