summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
Commit message (Expand)AuthorAgeFilesLines
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
* | Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-1/+0
|\ \ | |/
| * Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-1/+0
* | Issue #18701: Remove support of old CPython versions (<3.0) from C code.Serhiy Storchaka2013-08-161-22/+2
* | mergeRaymond Hettinger2013-08-041-2/+2
|\ \ | |/
| * Silence compiler warnings for strict function prototype declarations.Raymond Hettinger2013-08-041-2/+2
* | Issue #18609, #18408: _ctypes_add_traceback() now clears the current exceptionVictor Stinner2013-08-011-3/+20
* | Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-1/+1
|\ \ | |/
| * Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-1/+1
* | merge for issue #18556Brett Cannon2013-07-251-1/+5
|\ \ | |/
| * Issue #18556: Check the return value for PyUnicode_AsWideChar() inBrett Cannon2013-07-251-1/+5
* | Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-211-1/+1
|\ \ | |/
| * Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj()Christian Heimes2013-07-211-1/+1
* | Fix fishy sizeof(Py_ssize_t *).Christian Heimes2013-07-201-1/+1
* | Make the GCC-4.8 compiler happy by moving declarations to the top of the func...Raymond Hettinger2013-07-202-9/+13
* | Issue #18408: Fix ConvParam() of the ctypes module to handle paramfunc failureVictor Stinner2013-07-081-0/+2
* | merge 3.3 (#18248)Benjamin Peterson2013-06-192-2/+2
|\ \ | |/
| * fix libffi build on AIX (closes #18248)Benjamin Peterson2013-06-192-2/+2
* | fixed libffi on PPC without __NO_FPRS__Christian Heimes2013-06-191-1/+3
|\ \ | |/
| * fixed libffi on PPC without __NO_FPRS__Christian Heimes2013-06-191-1/+3
* | Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if i...Christian Heimes2013-06-181-0/+3
|\ \ | |/
| * Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if i...Christian Heimes2013-06-181-0/+3
* | (Merge 3.3) ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
|\ \ | |/
| * ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
* | * Fix remaining bits of issue 17192 for 3.4 - these changesGregory P. Smith2013-04-3016-231/+418
|\ \ | |/
| * * Fix remaining bits of issue 17192 for 3.3 - these changesGregory P. Smith2013-04-3016-231/+418
* | * Fix PART of issue 17192 for 3.4 - reapply the issue11729 patchGregory P. Smith2013-04-303-33/+58
|\ \ | |/
| * * Fix PART of issue 17192 for 3.3 - reapply the issue11729 patchGregory P. Smith2013-04-303-33/+58
| |\
| | * * Fix issue 17192 for 3.2 - reapply the issue11729 patch that was undoneGregory P. Smith2013-04-303-33/+58
| | * MergeKristján Valur Jónsson2013-03-191-0/+5
| | |\
| * | \ MergeKristján Valur Jónsson2013-03-191-0/+5
| |\ \ \
* | \ \ \ Issue #10296: Merge to defaultKristján Valur Jónsson2013-03-191-0/+5
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | #10296: Merge to 3.3Kristján Valur Jónsson2013-03-191-0/+5
| |\ \ \ \ | | | |_|/ | | |/| |
| | * | | Issue #10296 : Don't handle BreakPoint exceptions usingKristján Valur Jónsson2013-03-191-0/+5
* | | | | Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. ThisGregory P. Smith2013-03-1944-655/+1281
|\ \ \ \ \ | | |_|/ / | |/| | |
| * | | | Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. ThisGregory P. Smith2013-03-1996-2789/+12608
| |\ \ \ \ | | |/ / / | |/| | / | | | |/ | | |/|
| | * | Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. ThisGregory P. Smith2013-03-19239-7990/+34958
| | |/
* | | Merge 3.3, issue #17047: remove doubled words found in 2.7 to 3.4Terry Jan Reedy2013-03-113-10/+10
|\ \ \ | |/ /
| * | Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4Terry Jan Reedy2013-03-113-10/+10
| |\ \ | | |/
| | * Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,Terry Jan Reedy2013-03-113-10/+10
* | | Fix formatting changes that led to compilation errorsEli Bendersky2013-03-061-4/+2
* | | call_commethod was only used in samples/Windows, which no longer exists.Eli Bendersky2013-03-061-57/+0
* | | Fix some formattingEli Bendersky2013-03-061-11/+11
* | | - Issue #17192: Import libffi-3.0.12.doko@ubuntu.com2013-02-12105-2976/+12169
* | | Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+21
|\ \ \ | |/ /
| * | Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+21
| |\ \ | | |/
| | * Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+21
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-1/+1
| |\ \ | | |/
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-1/+1