index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_ctypes
Commit message (
Expand
)
Author
Age
Files
Lines
*
support pep 3118 format strings for ctypes objects with nontrivial shapes (cl...
Benjamin Peterson
2014-05-17
3
-11/+61
*
fix ctypes test alignment assumptions (closes #20946)
Benjamin Peterson
2014-03-16
1
-3/+3
*
Issue #20437: Fixed 43 potential bugs when deleting objects references.
Serhiy Storchaka
2014-02-09
1
-12/+6
*
Issue #19936: Added executable bits or shebang lines to Python scripts which
Serhiy Storchaka
2014-01-16
2
-0/+0
*
Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...
Christian Heimes
2013-08-17
1
-1/+0
*
Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if i...
Christian Heimes
2013-06-18
1
-0/+3
*
ctypes: AIX needs an explicit #include <alloca.h> to get alloca()
Victor Stinner
2013-06-17
1
-0/+1
*
This local change was lost during the fixing of issue17192 to update
Gregory P. Smith
2013-04-30
1
-0/+5
*
Issue #10296 : Don't handle BreakPoint exceptions using
Kristján Valur Jónsson
2013-03-19
1
-0/+5
*
Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. This
Gregory P. Smith
2013-03-18
241
-8021/+34714
*
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
Terry Jan Reedy
2013-03-11
3
-10/+10
*
Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple
Serhiy Storchaka
2013-02-04
1
-3/+21
*
Issue #11729: Backport commit bff052d9 from libffi upstream in order to fix
Stefan Krah
2013-01-27
2
-6/+6
*
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-19
1
-1/+1
*
ctypes: DECREF error_object _after_ re-acquiring GIL
Kristjan Valur Jonsson
2012-12-21
1
-1/+1
*
remove dead code
Benjamin Peterson
2012-12-15
1
-2/+0
*
Issue #16628: Fix a memory leak in ctypes.resize().
Antoine Pitrou
2012-12-08
3
-2/+3
*
Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled...
Ronald Oussoren
2012-08-25
4
-7/+125
*
Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.
Meador Inge
2012-07-19
1
-28/+23
*
Issue #9041: raised exception is misleading
Meador Inge
2012-05-28
1
-25/+5
*
Issue #12881: ctypes: Fix segfault with large structure field names.
Meador Inge
2011-10-04
1
-1/+7
*
Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.
Meador Inge
2011-09-28
1
-0/+1
*
Issue #12483: ctypes: Fix a crash when the destruction of a callback
Amaury Forgeot d'Arc
2011-09-12
1
-0/+1
*
Issue #12764: Fix a crash in ctypes when the name of a Structure field is not
Amaury Forgeot d'Arc
2011-09-02
1
-2/+15
*
Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to
Amaury Forgeot d'Arc
2011-08-30
1
-2/+4
*
- Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper
Barry Warsaw
2011-07-19
1
-0/+5
*
fix missing variable declarations
Benjamin Peterson
2011-03-26
1
-0/+3
*
always check return value of PyObject_IsInstance for error
Benjamin Peterson
2011-03-26
1
-19/+41
*
check possible recursive _as_parameter_ to prevent segfault (closes #1838)
Benjamin Peterson
2011-03-26
1
-1/+10
*
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-16
3
-3/+3
*
Revert typo fixes in _cytpes/libffi*
Ezio Melotti
2011-03-15
4
-6/+6
*
#11515: fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-15
5
-7/+7
*
Merged revisions 88284 via svnmerge from
Antoine Pitrou
2011-01-31
2
-1/+15
*
Merged revisions 84535 via svnmerge from
Ronald Oussoren
2010-09-16
3
-3/+9
*
Merged revisions 83841 via svnmerge from
Thomas Heller
2010-08-08
1
-0/+6
*
Fis issue5504: ctypes does now work with systems where mmap can't be
Thomas Heller
2010-08-08
7
-21/+31
*
Fix #8959 by reverting revision 80761.
Thomas Heller
2010-06-21
13
-297/+1898
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
9
-8112/+8112
*
On Windows, ctypes does no longer check the stack before and after
Thomas Heller
2010-05-04
13
-1898/+297
*
FreeBSD is not a sysv platform, so use freebsd.S instead of sysv.S (as is
Jeroen Ruigrok van der Werven
2010-04-07
1
-1/+1
*
Issue #8314: Fix unsigned long long bug in libffi on Sparc v8.
Martin v. Löwis
2010-04-07
1
-0/+4
*
Revert rev. 79509; ctypes doesn't build on linux.
Thomas Heller
2010-03-30
16
-299/+2018
*
Merged revisions 79115,79424,79491 via svnmerge from
Thomas Heller
2010-03-30
16
-2018/+299
*
Backported PyCapsule from 3.1, and converted most uses of
Larry Hastings
2010-03-25
3
-5/+59
*
Preserve backward compatibility of the ctypes module.
Florent Xicluna
2010-03-22
1
-0/+11
*
Issue #7703: ctypes supports both buffer() and memoryview(). The former is d...
Florent Xicluna
2010-03-22
1
-4/+13
*
update libffi to commit 59a259f4d348f593b45f452309f4d020a28051c4 from the
Matthias Klose
2010-03-19
33
-448/+1403
*
Generate libffi's Makefiles again to be able to run the libffi testsuite
Matthias Klose
2010-03-19
4
-375/+7592
*
Backport from the libffi trunk:
Matthias Klose
2010-03-15
1
-1/+2
*
- Issue #8142: Update libffi to the 3.0.9 release.
Matthias Klose
2010-03-15
212
-28062/+57788
[next]