| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #20320: select.select() and select.kqueue.control() now round the timeout | Victor Stinner | 2014-02-16 | 1 | -2/+2 |
|
|
* | Issue #20530: Argument Clinic's signature format has been revised again. | Larry Hastings | 2014-02-09 | 1 | -2/+4 |
|
|
* | Issue #20326: Argument Clinic now uses a simple, unique signature to | Larry Hastings | 2014-01-28 | 1 | -3/+3 |
|
|
* | Issue #20390: Small fixes and improvements for Argument Clinic. | Larry Hastings | 2014-01-26 | 1 | -1/+1 |
|
|
* | Issue #20189: Four additional builtin types (PyTypeObject, | Larry Hastings | 2014-01-24 | 1 | -7/+7 |
|
|
* | Issue #19273: The marker comments Argument Clinic uses have been changed | Larry Hastings | 2014-01-07 | 1 | -6/+6 |
|
|
* | Silence more PyObject_INIT() unused value warnings. | Christian Heimes | 2013-12-04 | 1 | -2/+2 |
|
|
* | Issue #19674: inspect.signature() now produces a correct signature | Larry Hastings | 2013-11-23 | 1 | -4/+8 |
|
|
* | Issue #19730: Argument Clinic now supports all the existing PyArg | Larry Hastings | 2013-11-23 | 1 | -5/+5 |
|
|
* | Argument Clinic: rename "self" to "module" for module-level functions. | Larry Hastings | 2013-11-18 | 1 | -11/+12 |
|
|
* | Issue #19437: Fix datetime_subtract(), handle new_delta() failure | Victor Stinner | 2013-11-07 | 1 | -0/+3 |
|
|
* | Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. | Martin v. Löwis | 2013-11-07 | 1 | -14/+5 |
|
|
* | Issue #16612: Add "Argument Clinic", a compile-time preprocessor | Larry Hastings | 2013-10-19 | 1 | -17/+57 |
|
|
* | _datetimemodule.c: fix the compilation warning "conversion from 'double' to | Victor Stinner | 2013-08-27 | 1 | -1/+1 |
|
|
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -7/+7 |
|\ |
|
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -7/+7 |
|
|
* | | Reuse us_per_second in delta_total_seconds. | Alexander Belopolsky | 2013-08-04 | 1 | -9/+1 |
|
|
* | | Fixes #8860: Round half-microseconds to even in the timedelta constructor. | Alexander Belopolsky | 2013-08-04 | 1 | -18/+31 |
|
|
* | | Fix NULL ptr dereferencing in local_timezone(). nameo can be NULL | Christian Heimes | 2013-06-29 | 1 | -1/+1 |
|
|
* | | Fix time.mktime() and datetime.datetime.timestamp() on AIX | Victor Stinner | 2013-06-25 | 1 | -3/+10 |
|
|
* | | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() | Charles-Francois Natali | 2013-05-20 | 1 | -2/+2 |
|/ |
|
* | Fix a few typos and a double semicolon. Patch by Eitan Adler. | Ezio Melotti | 2013-01-27 | 1 | -1/+1 |
|
|
* | Issue #16096: Fix several occurrences of potential signed integer overflow. ... | Mark Dickinson | 2012-10-06 | 1 | -4/+3 |
|
|
* | Closes #15973: fix a segmentation fault when comparing timezone objects. | Georg Brandl | 2012-09-22 | 1 | -0/+6 |
|
|
* | Issue #9527: tm_gmtoff has 'correct' sign. | Alexander Belopolsky | 2012-06-22 | 1 | -7/+3 |
|
|
* | Fixed compiler warnings in datetime_astimezone() | Alexander Belopolsky | 2012-06-22 | 1 | -4/+5 |
|
|
* | Issue #9527: Fixes for platforms without tm_zone | Alexander Belopolsky | 2012-06-22 | 1 | -20/+22 |
|
|
* | Issue #9527: datetime.astimezone() method will now supply a class | Alexander Belopolsky | 2012-06-22 | 1 | -4/+82 |
|
|
* | Issue #15006: Allow equality comparison between naive and aware time | Alexander Belopolsky | 2012-06-16 | 1 | -0/+16 |
|
|
* | Issue #2736: Added datetime.timestamp() method. | Alexander Belopolsky | 2012-06-08 | 1 | -0/+49 |
|
|
* | Issue #14180: datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp() | Victor Stinner | 2012-03-13 | 1 | -36/+39 |
|
|
* | Close #14180: Factorize code to convert a number of seconds to time_t, timeva... | Victor Stinner | 2012-03-13 | 1 | -32/+13 |
|
|
* | Remove an unnecessary extra copy of the bytes hash function. | Gregory P. Smith | 2012-01-14 | 1 | -15/+1 |
|
|
* | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() | Victor Stinner | 2011-11-21 | 1 | -2/+2 |
|
|
* | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -19/+19 |
|
|
* | Use identifier API for PyObject_GetAttrString. | Martin v. Löwis | 2011-10-10 | 1 | -2/+4 |
|
|
* | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -25/+52 |
|
|
* | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -6/+5 |
|
|
* | Issue #1621: Fix undefined behaviour from signed overflow in datetime module ... | Mark Dickinson | 2011-09-25 | 1 | -4/+4 |
|
|
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. | Brian Curtin | 2011-08-11 | 1 | -38/+21 |
|
|
* | Issue #11930: Remove year >= 1000 limitation from datetime.strftime. | Alexander Belopolsky | 2011-05-02 | 1 | -25/+0 |
|
|
* | Issue #11576: Fixed timedelta subtraction glitch on big timedelta values | Alexander Belopolsky | 2011-04-06 | 1 | -7/+8 |
|\ |
|
| * | Issue #11576: Fixed timedelta subtraction glitch on big timedelta values | Alexander Belopolsky | 2011-04-06 | 1 | -7/+8 |
|
|
* | | Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of | Victor Stinner | 2011-03-21 | 1 | -6/+3 |
|
|
* | | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 1 | -1/+1 |
|/ |
|
* | Issue #1777412: extended year range of strftime down to 1000. | Alexander Belopolsky | 2011-01-08 | 1 | -6/+6 |
|
|
* | Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ... | Alexander Belopolsky | 2010-12-08 | 1 | -1/+2 |
|
|
* | Remove redundant includes of headers that are already included by Python.h. | Georg Brandl | 2010-11-30 | 1 | -1/+0 |
|
|
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 1 | -7/+7 |
|
|
* | Issue 9183: Intern UTC timezone. | Alexander Belopolsky | 2010-10-14 | 1 | -14/+31 |
|
|