Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701). | Serhiy Storchaka | 2016-11-16 | 1 | -1/+1 |
| | |||||
* | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. | Serhiy Storchaka | 2016-11-16 | 2 | -6/+44 |
| | | | | | | The latter function is more readable, faster and doesn't raise exceptions. Based on patch by Xiang Zhang. | ||||
* | Issue #28701: Replace PyUnicode_CompareWithASCIIString with ↵ | Serhiy Storchaka | 2016-11-16 | 4 | -7/+42 |
| | | | | | | _PyUnicode_EqualToASCIIString. The latter function is more readable, faster and doesn't raise exceptions. | ||||
* | 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 #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 |
| | | | |||||
* | | | ssue #27942: Fix memory leak in codeobject.c | Yury Selivanov | 2016-11-09 | 1 | -0/+2 |
| | | | |||||
* | | | genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper | Yury Selivanov | 2016-11-09 | 1 | -2/+2 |
| | | | |||||
* | | | make sure dict view types are initialized | Benjamin Peterson | 2016-11-06 | 1 | -0/+9 |
| | | | |||||
* | | | Issue #23996: Added _PyGen_SetStopIterationValue for safe raising | Serhiy Storchaka | 2016-11-06 | 1 | -10/+50 |
| | | | | | | | | | | | | | | | StopIteration with value. More safely handle non-normalized exceptions in -_PyGen_FetchStopIterationValue. | ||||
* | | | Issue #28385: An error message when non-empty format spec is passed to | Serhiy Storchaka | 2016-10-30 | 1 | -19/+9 |
| | | | | | | | | | | | | object.__format__ now contains the name of actual type. | ||||
* | | | Backed out changeset 9f7505019767 (issue #27275). | Serhiy Storchaka | 2016-10-30 | 1 | -7/+22 |
| | | | |||||
* | | | Issue #27275: Fixed implementation of pop() and popitem() methods in | Serhiy Storchaka | 2016-10-25 | 1 | -22/+7 |
| | | | | | | | | | | | | subclasses of accelerated OrderedDict. | ||||
* | | | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug ↵ | Serhiy Storchaka | 2016-10-25 | 1 | -10/+2 |
|\ \ \ | |/ / | | | | | | | build. | ||||
| * | | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug ↵ | Serhiy Storchaka | 2016-10-25 | 1 | -10/+2 |
| | | | | | | | | | | | | build. | ||||
* | | | remove extra PyErr_Format arguments (closes #28454) | Benjamin Peterson | 2016-10-16 | 1 | -4/+4 |
| | | | | | | | | | | | | Patch from Xiang Zhang. | ||||
* | | | Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). | Serhiy Storchaka | 2016-10-08 | 1 | -3/+7 |
| | | | | | | | | | | | | Patch by Xiang Zhang. | ||||
* | | | Issue #28376: The constructor of range_iterator now checks that step is not 0. | Serhiy Storchaka | 2016-10-08 | 1 | -3/+11 |
| | | | | | | | | | | | | Patch by Oren Milman. | ||||
* | | | Issue #26906: Resolving special methods of uninitialized type now causes | Serhiy Storchaka | 2016-10-08 | 1 | -5/+19 |
| | | | | | | | | | | | | implicit initialization of the type instead of a fail. | ||||
* | | | Issue #18287: PyType_Ready() now checks that tp_name is not NULL. | Serhiy Storchaka | 2016-10-07 | 1 | -0/+6 |
| | | | | | | | | | | | | Original patch by Niklas Koep. | ||||
* | | | Merge heads | Serhiy Storchaka | 2016-10-04 | 1 | -12/+13 |
|\ \ \ | |||||
| * | | | ensure gc tracking is off when invoking weakref callbacks (closes #26617) | Benjamin Peterson | 2016-10-04 | 1 | -12/+13 |
| | | | | |||||
* | | | | Issue #28350: String constants with null character no longer interned. | Serhiy Storchaka | 2016-10-04 | 1 | -8/+8 |
|/ / / | |||||
* | | | Issue #27942: String constants now interned recursively in tuples and ↵ | Serhiy Storchaka | 2016-09-30 | 1 | -7/+45 |
| | | | | | | | | | | | | frozensets. | ||||
* | | | Issue #21578: Fixed misleading error message when ImportError called with | Serhiy Storchaka | 2016-09-27 | 1 | -22/+24 |
| | | | | | | | | | | | | invalid keyword args. | ||||
* | | | Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). ↵ | Mark Dickinson | 2016-09-24 | 1 | -6/+17 |
| | | | | | | | | | | | | Patch by Soumya Sharma. | ||||
* | | | Fix PyUnicode_FromFormatV() error handling | Victor Stinner | 2016-09-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Issue #28233: Fix a memory leak if the format string contains a non-ASCII character, destroy the unicode writer. | ||||
* | | | Issue #28189: dictitems_contains no longer swallows compare errors. | Raymond Hettinger | 2016-09-19 | 1 | -1/+1 |
| | | | | | | | | | | | | (Patch by Xiang Zhang) | ||||
* | | | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 1 | -8/+12 |
| | | | | | | | | | | | | | | | Also update the classmethod and staticmethod doc strings and comments to match the RST documentation. | ||||
* | | | Issue #25270: Prevent codecs.escape_encode() from raising SystemError when ↵ | Berker Peksag | 2016-09-16 | 1 | -5/+14 |
| | | | | | | | | | | | | an empty bytestring is passed | ||||
* | | | Issue #28045: Fix comment in range_contains_long() | Berker Peksag | 2016-09-12 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch by wim glenn. | ||||
* | | | Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is ↵ | Mark Dickinson | 2016-09-10 | 1 | -1/+2 |
| | | | | | | | | | | | | compiled with NSMALLPOSINTS = 0. | ||||
* | | | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Martin Panter | 2016-09-07 | 5 | -5/+5 |
| | | | |||||
* | | | supress coroutine warning when an exception is pending (#27968) | Benjamin Peterson | 2016-09-07 | 1 | -12/+15 |
| | | | |||||
* | | | promote some shifts to unsigned, so as not to invoke undefined behavior | Benjamin Peterson | 2016-09-07 | 1 | -3/+3 |
| | | | |||||
* | | | make sure to not call memcpy with a NULL second argument | Benjamin Peterson | 2016-09-07 | 1 | -6/+9 |
| | | | |||||
* | | | clear out f_gen during generator finalization (closes #27812) | Benjamin Peterson | 2016-09-05 | 1 | -1/+4 |
| | | | | | | | | | | | | Patch from Armin Rigo. | ||||
* | | | do not allow _PyGen_Finalize to fail (closes #27811) | Benjamin Peterson | 2016-09-05 | 1 | -12/+13 |
| | | | | | | | | | | | | Patch from Armin Rigo. | ||||
* | | | Issue 19504: Change "customise" to "customize" American spelling. | Raymond Hettinger | 2016-08-26 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #27782: Fix m_methods handling in multiphase init | Nick Coghlan | 2016-08-21 | 1 | -29/+35 |
| | | | | | | | | | | | | | | | | | | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang. | ||||
* | | | Fix a refleak in call_maybe() | Victor Stinner | 2016-08-19 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | Issue #27128. Fix a reference leak if creating the tuple to pass positional parameters fails. | ||||
* | | | Fix a refleak in call_method() | Victor Stinner | 2016-08-19 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | Issue #27128. Fix a reference leak if creating the tuple to pass positional parameters fails. | ||||
* | | | Fix spelling and grammar in documentation and code comments | Martin Panter | 2016-08-04 | 2 | -2/+2 |
| | | | |||||
* | | | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 2 | -5/+5 |
| | | | | | | | | | | | | Based on patch by Ville Skyttä. | ||||
* | | | Issue #26662: Set PYTHON_FOR_GEN in configure | Xavier de Gaye | 2016-07-26 | 1 | -26/+37 |
| | | | | | | | | | | | | as the Python program to be used for file generation during the build. | ||||
* | | | Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple() | Martin Panter | 2016-07-25 | 1 | -4/+5 |
| | | | | | | | | | | | | Patch by Xiang Zhang. | ||||
* | | | Issue #27507: Check for integer overflow in bytearray.extend() | Martin Panter | 2016-07-18 | 1 | -1/+11 |
| | | | | | | | | | | | | Patch by Xiang Zhang. | ||||
* | | | Issue #27473: Fixed possible integer overflow in bytes and bytearray | Serhiy Storchaka | 2016-07-10 | 2 | -16/+11 |
| | | | | | | | | | | | | concatenations. Patch by Xiang Zhang. | ||||
* | | | #20647: Update dictobject.c comments to account for randomized string hashes. | R David Murray | 2016-07-10 | 1 | -8/+5 |
| | | | | | | | | | | | | Patch by Jaysinh Shukla. |