summaryrefslogtreecommitdiffstats
path: root/PC/winreg.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-39007: Add auditing events to functions in winreg (GH-17541)Steve Dower2019-12-091-27/+131
* bpo-32587: Fixes unsafe downcast in PC/winreg.c (GH-15766)Steve Dower2019-09-091-1/+1
* bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (#13239)Zackery Spytz2019-09-091-16/+25
* bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs...David H2019-07-311-6/+6
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882)Zackery Spytz2019-04-221-1/+1
* bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)Zackery Spytz2019-04-221-1/+1
* bpo-8677: use PY_DWORD_MAX instead of INT_MAX (GH-12469)Inada Naoki2019-03-201-5/+3
* bpo-8677: use PY_SSIZE_T_CLEAN in PC/winreg.c (GH-12466)Inada Naoki2019-03-201-0/+6
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-0/+8
* bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...Serhiy Storchaka2018-12-141-36/+40
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-081-3/+7
* bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)Victor Stinner2018-11-231-1/+1
* Replace dead code with an assertion in winreg.c. (GH-10028)Zackery Spytz2018-11-081-2/+1
* bpo-35059: Convert PyObject_INIT() to function (GH-10077)Victor Stinner2018-10-261-1/+1
* bpo-32747: Remove trailing spaces in docstrings. (GH-5491)oldk2018-02-021-1/+1
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-3/+3
* bpo-9566: Fix some Windows x64 compiler warnings (#2492)Segev Finer2017-07-261-1/+1
* Issue #25778: winreg does not truncase string correctly (Patch by Eryk Sun)Steve Dower2016-12-171-7/+6
* - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-46/+46
|\
| * Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-46/+46
* | Regenerate Argument Clinic code for issue #23026.Serhiy Storchaka2016-06-091-1/+1
* | Closes #23026: Documentation improvements and code formattingSteve Dower2016-05-251-4/+4
* | Issue #23026: winreg.QueryValueEx() now return an integer for REG_QWORD type....Steve Dower2016-05-241-2/+30
|/
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-4/+4
* Issue #20172: Update clinicizations to current clinic.Zachary Ware2015-05-131-32/+42
* Issue #20172: Convert the winreg module to Argument Clinic.Zachary Ware2015-05-131-669/+722
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-3/+3
* Issue #21151: Fixed a segfault in the winreg module.Zachary Ware2014-07-031-1/+3
* Issue #20908: PyMem_Malloc() must be used with PyMem_Free(), not with free()Victor Stinner2014-03-131-2/+2
* MERGE: Closes #20908: Memory leak in Reg2Py()Jesus Cea2014-03-131-1/+4
|\
| * Closes #20908: Memory leak in Reg2Py()Jesus Cea2014-03-131-1/+4
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-3/+2
|\ \ | |/
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-3/+2
* | Issue #18203: Replace malloc() with PyMem_Malloc() in Python modulesVictor Stinner2013-07-071-2/+2
* | Merge 3.3Brian Curtin2012-12-271-2/+2
|\ \ | |/
| * Merge 3.2Brian Curtin2012-12-271-2/+2
| |\
| | * Fix #16759. Convert DWORD registry values using PyLong_FromUnsignedLong.Brian Curtin2012-12-271-2/+2
* | | Merge 3.3Brian Curtin2012-12-271-1/+1
|\ \ \ | |/ /
| * | Merge 3.2Brian Curtin2012-12-271-1/+1
| |\ \ | | |/
| | * Fix #14420. Use PyLong_AsUnsignedLong to support the full range of DWORD.Brian Curtin2012-12-271-1/+1
* | | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-2/+2
|/ /
* | Issue #16197: Fix several small errors in winreg documentation.Andrew Svetlov2012-10-311-8/+8
* | Merge 3.2Brian Curtin2012-10-291-77/+109
|\ \ | |/
| * Fix #16197. Update docstrings and documentation to match winreg code.Brian Curtin2012-10-291-77/+109
* | Merge with 3.2 (Issue #14471)Kristján Valur Jónsson2012-04-021-1/+1
|\ \ | |/
| * Issue #14471: Fix a possible buffer overrun in the winreg module.Kristján Valur Jónsson2012-04-021-1/+1
* | Use GetModuleHandleW to avoid *A functions where possible.Martin v. Löwis2012-01-141-4/+4
* | Use the new Unicode APIVictor Stinner2011-11-221-5/+5
* | winreg module avoids the deprecated Unicode APIVictor Stinner2011-11-211-24/+36