summaryrefslogtreecommitdiff
path: root/Modules/_testcapimodule.c
Commit message (Expand)AuthorAgeFilesLines
* Fix test_time on platform with 32-bit time_t typeVictor Stinner2015-09-101-0/+1
* Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-091-1/+1
* Issue #23517: Add "half up" rounding mode to the _PyTime APIVictor Stinner2015-09-021-1/+3
* Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar().Antoine Pitrou2015-06-231-0/+13
|\
| * Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar().Antoine Pitrou2015-06-231-0/+13
* | Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc.Yury Selivanov2015-05-281-1/+1
* | PEP 489: Multi-phase extension module initializationNick Coghlan2015-05-231-0/+3
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+97
* | Issue #20586: Argument Clinic now ensures signatures on functions without doc...Zachary Ware2015-04-131-0/+9
* | Issue #22117: Add a new _PyTime_FromSeconds() functionVictor Stinner2015-04-031-0/+13
* | Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() andVictor Stinner2015-04-011-0/+38
* | Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methodsVictor Stinner2015-03-301-2/+1
* | Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestampsVictor Stinner2015-03-301-1/+1
* | Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner2015-03-301-4/+1
* | Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructorVictor Stinner2015-03-301-1/+1
* | Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetimeVictor Stinner2015-03-281-1/+2
* | Issue #22117: Write unit tests for _PyTime_AsTimeval()Victor Stinner2015-03-281-0/+31
* | Issue #22117: The signal modules uses the new _PyTime_t APIVictor Stinner2015-03-271-0/+20
* | Issue #22117: time.monotonic() now uses the new _PyTime_t APIVictor Stinner2015-03-271-1/+16
* | Issue #22117: Fix rounding in _PyTime_FromSecondsObject()Victor Stinner2015-03-271-0/+17
* | Issue #23571: _Py_CheckFunctionResult() now gives the name of the functionVictor Stinner2015-03-211-0/+22
* | Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-1/+1
* | Fix regression introduced by changeset 7c6e3358221a that caused compileNed Deily2015-03-051-2/+2
* | Silenced minor GCC warnings.Serhiy Storchaka2015-02-261-0/+7
* | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-1/+1
|\ \ | |/
| * Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-1/+1
* | Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-0/+166
|\ \ | |/
| * Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-0/+166
* | Issue #14203: Temporary fix for the compile failure on Windows.Stefan Krah2015-02-031-0/+4
* | Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer()Stefan Krah2015-02-031-2/+20
* | Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo()Stefan Krah2015-02-031-0/+34
* | Merge from 3.4.Stefan Krah2015-02-011-0/+51
|\ \ | |/
| * Issue #23370: Fix off-by-one error for non-contiguous buffers.Stefan Krah2015-02-011-0/+51
* | Merge 3.4Victor Stinner2014-10-091-8/+215
|\ \ | |/ |/|
| * Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner2014-08-161-1/+1
| * Issue #22116: C functions and methods (of the 'builtin_function_or_method' ty...Antoine Pitrou2014-08-061-0/+16
| * Issue #22018: Add _testcapi.raise_signal()Victor Stinner2014-07-211-0/+21
| * Issue #21233: Rename the C structure "PyMemAllocator" to "PyMemAllocatorEx" toVictor Stinner2014-06-021-2/+2
| * (Merge 3.4) Issue #21639: Fix name of _testcapi test functionsVictor Stinner2014-06-021-5/+175
| |\
| | * Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(),Victor Stinner2014-05-021-5/+68
| | * Fix compiler warning on WindowsZachary Ware2014-04-231-1/+1
| | * PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-0/+107
* | | Issue #22588: Fix typo in _testcapi.test_incref_decref_API()Victor Stinner2014-10-091-1/+1
|/ /
* | Issue #21639: Fix name of _testcapi test functionsVictor Stinner2014-06-021-2/+2
|/
* Issue #20320: select.select() and select.kqueue.control() now round the timeoutVictor Stinner2014-02-171-6/+25
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-5/+22
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-4/+4
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-4/+4
* Issue #20226: Major improvements to Argument Clinic.Larry Hastings2014-01-161-1/+3
* Issue #20144: Argument Clinic now supports simple constants as parameterLarry Hastings2014-01-071-0/+12