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
/
_testcapimodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #16145: Support legacy strings in the _csv module.
Stefan Krah
2012-11-02
1
-0/+24
*
Closes #16126: PyErr_Format format mismatch in _testcapimodule.c
Jesus Cea
2012-10-04
1
-1/+1
*
Issue #15589: Ensure double-alignment for brute-force capi argument parser test
Larry Hastings
2012-08-08
1
-1/+1
*
Issue #14769: test_capi now has SkipitemTest, which cleverly checks
Larry Hastings
2012-06-22
1
-38/+60
*
Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.
Larry Hastings
2012-05-05
1
-0/+10
*
Issue #14127: Add st_{cma}time_ns fields to os.stat() result object.
Larry Hastings
2012-04-19
1
-11/+0
*
Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.
Martin v. Löwis
2012-04-19
1
-0/+24
*
Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.
Larry Hastings
2012-03-20
1
-1/+19
*
Close #14180: Factorize code to convert a number of seconds to time_t, timeva...
Victor Stinner
2012-03-13
1
-6/+39
*
Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple
Victor Stinner
2012-03-02
1
-0/+19
*
- Issue #10181: New memoryview implementation fixes multiple ownership
Stefan Krah
2012-02-25
1
-91/+0
*
Check for errors in creating sub-interpreters when testing the C API.
Brett Cannon
2012-02-03
1
-0/+8
*
Test running of code in a sub-interpreter
Antoine Pitrou
2012-01-17
1
-0/+27
|
\
|
*
Test running of code in a sub-interpreter
Antoine Pitrou
2012-01-17
1
-0/+27
|
*
Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()
Victor Stinner
2011-11-22
1
-2/+49
|
*
Merged revisions 88550 via svnmerge from
Antoine Pitrou
2011-02-24
1
-0/+11
*
|
Write tests for invalid characters (U+00110000)
Victor Stinner
2011-12-09
1
-0/+18
*
|
Rewrite PyUnicode_EncodeDecimal() to use the new Unicode API
Victor Stinner
2011-11-21
1
-2/+49
*
|
test_widechar() uses the new Unicode API
Victor Stinner
2011-11-21
1
-1/+1
*
|
Use PyUnicode_CompareWithASCIIString() instead of Py_UNICODE_strcmp() to avoid
Victor Stinner
2011-11-20
1
-2/+1
*
|
Use the new Py_ARRAY_LENGTH macro
Victor Stinner
2011-09-28
1
-1/+1
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-1/+1
*
|
Issue #12909: Make PyLong_As* functions consistent in their use of exceptions.
Nadeem Vawda
2011-09-07
1
-0/+64
*
|
Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.
Eli Bendersky
2011-07-29
1
-0/+10
*
|
Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of
Victor Stinner
2011-03-21
1
-8/+1
*
|
Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of
Victor Stinner
2011-03-21
1
-4/+2
*
|
Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
Antoine Pitrou
2011-02-24
1
-0/+11
|
/
*
test_unicode: use ctypes to test PyUnicode_FromFormat()
Victor Stinner
2011-01-05
1
-12/+0
*
Issue #9566: use Py_ssize_t instead of int
Victor Stinner
2011-01-04
1
-1/+1
*
Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...
Alexander Belopolsky
2010-12-08
1
-9/+10
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-1/+1
*
Issue #10359: Remove ";" after function definition, invalid in ISO C
Victor Stinner
2010-11-09
1
-1/+1
*
Issue #10185: use Py_hash_t instead of long
Antoine Pitrou
2010-10-23
1
-1/+1
*
PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*
Victor Stinner
2010-10-07
1
-1/+1
*
Issue #8670: Rename testcapi unicode test methods
Victor Stinner
2010-10-02
1
-4/+4
*
Oops, revert unwanted _testcapi changes of r85174
Victor Stinner
2010-10-02
1
-4/+4
*
Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_t
Victor Stinner
2010-10-02
1
-4/+4
*
Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul char...
Victor Stinner
2010-10-02
1
-9/+63
*
Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on
Victor Stinner
2010-09-11
1
-0/+12
*
Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use
Victor Stinner
2010-06-25
1
-0/+23
*
Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"
Victor Stinner
2010-06-13
1
-1/+165
*
Fix test_capi in !pydebug mode, where my original attempt segfaulted without
Jeffrey Yasskin
2010-05-17
1
-1/+5
*
Make PyErr_Occurred return NULL if there is no current thread. Previously it
Jeffrey Yasskin
2010-05-13
1
-0/+12
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-1673/+1673
*
Merged revisions 79661 via svnmerge from
Mark Dickinson
2010-04-03
1
-9/+16
*
Merged revisions 79642,79644 via svnmerge from
Benjamin Peterson
2010-04-03
1
-3/+14
*
Issue #8014: Fix PyLong_As<c-integer-type> methods not to produce an
Mark Dickinson
2010-03-13
1
-4/+7
*
Revert an earlier attempt (r76810) to fix the intermittent test_capi failures...
Mark Dickinson
2010-02-13
1
-15/+0
*
Issue #7924: Fix an intermittent 'XXX undetected error' crash in
Mark Dickinson
2010-02-13
1
-0/+2
*
Followup to r77918: fix build under Windows.
Antoine Pitrou
2010-02-04
1
-1/+2
[next]