| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [3.4] bpo-26617: Ensure gc tracking is off when invoking weakref callbacks. ↵ | Serhiy Storchaka | 2017-07-22 | 1 | -12/+13 |
| | | | | | | | | | | (#2695) * [3.4] bpo-26617: Ensure gc tracking is off when invoking weakref callbacks. (cherry picked from commit 8f657c35b978b681e6e919f08358992e1aed7dc1) * Rewrite a NEWS entry as a NEWS.d entry. | ||||
| * | [3.4] [3.5] bpo-27945: Fixed various segfaults with dict. (GH-1657) ↵ | Serhiy Storchaka | 2017-07-11 | 1 | -29/+51 |
| | | | | | | | | (GH-1678) (#2248) Based on patches by Duane Griffin and Tim Mitchell. (cherry picked from commit 753bca3934a7618a4fa96e107ad1c5c18633a683). (cherry picked from commit 2f7f533cf6fb57fcedcbc7bd454ac59fbaf2c655) | ||||
| * | [security][3.4] bpo-30730: Prevent environment variables injection in ↵ | Serhiy Storchaka | 2017-07-11 | 1 | -2/+2 |
| | | | | | | | | | | | | subprocess on Windows. (GH-2325) (#2362) * [3.4] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) Prevent passing other invalid environment variables and command arguments.. (cherry picked from commit d174d24a5d37d1516b885dc7c82f71ecd5930700) * Update NEWS | ||||
| * | Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X | Serhiy Storchaka | 2016-11-12 | 1 | -1/+1 |
| |\ | | | | | | | when decode astral characters. | ||||
| | * | Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X | Serhiy Storchaka | 2016-11-12 | 1 | -1/+1 |
| | | | | | | | | | when decode astral characters. | ||||
| | * | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-02 | 1 | -0/+5 |
| | | | |||||
| * | | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug ↵ | Serhiy Storchaka | 2016-10-25 | 1 | -10/+2 |
| | | | | | | | | | build. | ||||
| * | | properly use the ObjArgs variant of CallMethod in dictview binary operations ↵ | Benjamin Peterson | 2016-03-04 | 1 | -5/+4 |
| | | | | | | | | | (closes #26478) | ||||
| * | | merge 3.3 | Benjamin Peterson | 2016-01-01 | 1 | -3/+0 |
| |\ \ | |/ | |||||
| | * | remove some copyright notices supserseded by the toplevel ones | Benjamin Peterson | 2016-01-01 | 1 | -3/+0 |
| | | | |||||
| * | | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-02 | 1 | -0/+5 |
| | | | |||||
| * | | Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside | Serhiy Storchaka | 2015-11-25 | 1 | -0/+3 |
| | | | | | | | | | __getattr__. Original patch by Antoine Pitrou. | ||||
| * | | Issue #24731: Fixed crash on converting objects with special methods | Serhiy Storchaka | 2015-11-25 | 3 | -6/+6 |
| | | | | | | | | | | | __bytes__, __trunc__, and __float__ returning instances of subclasses of bytes, int, and float to subclasses of bytes, int, and float correspondingly. | ||||
| * | | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now | Serhiy Storchaka | 2015-11-12 | 1 | -0/+12 |
| | | | | | | | | | | | rejects builtin types with not defined __new__. Added tests for non-pickleable types. | ||||
| * | | Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary | Martin Panter | 2015-11-07 | 3 | -9/+35 |
| | | | | | | | | | | | | | | | | | This avoids possible buffer overreads when int(), float(), compile(), exec() and eval() are passed bytes-like objects. Similar code is removed from the complex() constructor, where it was not reachable. Patch by John Leitch, Serhiy Storchaka and Martin Panter. | ||||
| * | | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| | | | |||||
| * | | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 2 | -2/+2 |
| | | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
| * | | Various minor typos in documentation and comments | Martin Panter | 2015-10-07 | 2 | -2/+2 |
| | | | |||||
| * | | prevent unacceptable bases from becoming bases through multiple inheritance ↵ | Benjamin Peterson | 2015-10-07 | 1 | -6/+6 |
| | | | | | | | | | (#24806) | ||||
| * | | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: | Serhiy Storchaka | 2015-10-02 | 1 | -9/+12 |
| | | | | | | | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate. | ||||
| * | | Issue #25182: Fix compilation on Windows | Victor Stinner | 2015-09-30 | 1 | -3/+6 |
| | | | | | | | | | Restore also errno value before calling PyErr_SetFromErrno(). | ||||
| * | | Issue #25182: The stdprinter (used as sys.stderr before the io module is | Serhiy Storchaka | 2015-09-30 | 1 | -6/+22 |
| | | | | | | | | | imported at startup) now uses the backslashreplace error handler. | ||||
| * | | Issue #21279: Flesh out str.translate docs | Zachary Ware | 2015-08-06 | 1 | -5/+6 |
| | | | | | | | | | Initial patch by Kinga Farkas, Martin Panter, and John Posner. | ||||
| * | | merge 3.3 (#24407) | Benjamin Peterson | 2015-07-05 | 1 | -7/+19 |
| |\ \ | |/ | |||||
| | * | protect against mutation of the dict during insertion (closes #24407) | Benjamin Peterson | 2015-07-05 | 1 | -7/+19 |
| | | | |||||
| * | | Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray | Serhiy Storchaka | 2015-06-29 | 1 | -1/+3 |
| | | | | | | | | | | | object now always allocates place for trailing null byte and it's buffer now is always null-terminated. | ||||
| * | | Fixed indentation of Python examples in C comments. | Serhiy Storchaka | 2015-06-10 | 2 | -7/+7 |
| | | | |||||
| * | | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), | Serhiy Storchaka | 2015-05-30 | 4 | -15/+37 |
| | | | | | | | | | | | PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly. | ||||
| * | | Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). | Serhiy Storchaka | 2015-05-22 | 2 | -7/+5 |
| | | | | | | | | | | | Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace. | ||||
| * | | Issue #23985: Fixed integer overflow in iterator object. Patch by | Serhiy Storchaka | 2015-05-21 | 1 | -0/+5 |
| | | | | | | | | | Clement Rouault. | ||||
| * | | Fix some compilation warnings when using gcc (-Wmaybe-uninitialized). | Antoine Pitrou | 2015-05-19 | 1 | -17/+17 |
| | | | |||||
| * | | Issue #23985: Fix a possible buffer overrun when deleting a slice from the ↵ | Antoine Pitrou | 2015-05-19 | 1 | -6/+2 |
| | | | | | | | | | | | | | front of a bytearray and then appending some other bytes data. Patch by Martin Panter. | ||||
| * | | Fixed typos in comments. | Serhiy Storchaka | 2015-05-18 | 1 | -2/+2 |
| | | | |||||
| * | | Issue #23757: Only call the concrete list API for exact lists. | Raymond Hettinger | 2015-05-17 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #21354: PyCFunction_New function is exposed by python DLL again. | Andrew Svetlov | 2015-04-27 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #23996: Avoid a crash when a delegated generator raises an ↵ | Antoine Pitrou | 2015-04-26 | 1 | -5/+22 |
| | | | | | | | | | unnormalized StopIteration exception. Patch by Stefan Behnel. | ||||
| * | | merge 3.3 (#24044) | Benjamin Peterson | 2015-04-23 | 1 | -2/+4 |
| |\ \ | |/ | |||||
| | * | merge 3.2 (#24044) | Benjamin Peterson | 2015-04-23 | 1 | -2/+4 |
| | |\ | |||||
| | | * | properly handle malloc failure (closes #24044) | Benjamin Peterson | 2015-04-23 | 1 | -2/+4 |
| | | | | | | | | | | | | | Patch by Christian Heimes. | ||||
| | | * | Issue #23055: Fixed read-past-the-end error in PyUnicode_FromFormatV. | Serhiy Storchaka | 2015-01-30 | 1 | -0/+2 |
| | | | | |||||
| | | * | Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis | Serhiy Storchaka | 2015-01-27 | 1 | -17/+20 |
| | | | | | | | | | | | | | and fix by Guido Vranken. | ||||
| | | * | Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX). | Georg Brandl | 2014-10-01 | 1 | -1/+1 |
| | | | | |||||
| * | | | improved range docstring (closes #22785) | Benjamin Peterson | 2015-04-22 | 1 | -1/+5 |
| | | | | | | | | | | | | | Patch by Ned Batchelder. | ||||
| * | | | Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of | Serhiy Storchaka | 2015-03-30 | 1 | -7/+4 |
| | | | | | | | | | | | | | MemoryError. | ||||
| * | | | Issue #23803: Fixed str.partition() and str.rpartition() when a separator | Serhiy Storchaka | 2015-03-29 | 1 | -5/+5 |
| | | | | | | | | | | | | | is wider then partitioned string. | ||||
| * | | | Issue #22079: Deprecation warning now is issued in PyType_Ready() instead of | Serhiy Storchaka | 2015-03-22 | 1 | -5/+8 |
| | | | | | | | | | | | | | | | | raising TypeError when statically allocated type subclasses dynamically allocated type | ||||
| * | | | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵ | Antoine Pitrou | 2015-03-10 | 3 | -27/+1 |
| | | | | | | | | | | | | | objects. | ||||
| * | | | fix potential refleak in PyFloat_AsDouble (closes #23590) | Benjamin Peterson | 2015-03-06 | 1 | -0/+1 |
| | | | | |||||
| * | | | merge 3.3 (#23362) | Benjamin Peterson | 2015-03-02 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | use PyMem_NEW to detect overflow (closes #23362) | Benjamin Peterson | 2015-03-02 | 1 | -1/+1 |
| | | | | |||||
