Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing. | ||||
* | 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 |
| | | | | hashes, array and list iterations, and get_integer (stringlib/string_format.h) | ||||
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. | Brian Curtin | 2011-08-11 | 1 | -38/+21 |
| | | | | The macro was introduced in #12724. | ||||
* | Issue #11930: Remove year >= 1000 limitation from datetime.strftime. | Alexander Belopolsky | 2011-05-02 | 1 | -25/+0 |
| | | | | Patch by Victor Stinner. | ||||
* | 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 |
| | | | | | | | | | | PyOS_snprintf() to avoid temporary buffer allocated on the stack and a conversion from bytes to Unicode. | ||||
* | | 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 |
| | | | | NULL | ||||
* | 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 |
| | |||||
* | Issue 9005: Removed dead code. | Alexander Belopolsky | 2010-10-13 | 1 | -22/+6 |
| | |||||
* | Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API | Alexander Belopolsky | 2010-08-05 | 1 | -30/+3 |
| | | | | | | exposed in Python.h. This function is similar to POSIX gettimeofday(struct timeval *tp), but available on platforms without gettimeofday(). | ||||
* | Issue #7989: Added pure python implementation of the datetime module. | Alexander Belopolsky | 2010-07-23 | 1 | -0/+5488 |