| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | revert a37cc3d926ec (#5322) | Benjamin Peterson | 2016-12-14 | 1 | -27/+1 |
| | | |||||
| * | Backed out changeset ea904d4b3634 | Benjamin Peterson | 2016-12-14 | 1 | -1/+1 |
| | | |||||
| * | fix refleak in reduce_2 error case | Benjamin Peterson | 2016-12-03 | 1 | -1/+1 |
| | | |||||
| * | fix refleak in the shift-by-zero case (#27870) | Benjamin Peterson | 2016-12-03 | 1 | -5/+6 |
| | | |||||
| * | declarations to the top of the block | Benjamin Peterson | 2016-12-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. | Serhiy Storchaka | 2016-12-02 | 1 | -1/+27 |
| | | | | | Original patch by Andreas Stührk. | ||||
| * | Issue #11145: Fixed miscellaneous issues with C-style formatting of types | Serhiy Storchaka | 2016-12-01 | 1 | -69/+85 |
| | | | | | with custom __oct__ and __hex__. | ||||
| * | Issue #24469: Fixed memory leak caused by int subclasses without overridden | Serhiy Storchaka | 2016-11-29 | 1 | -8/+0 |
| | | | | | tp_free (e.g. C-inherited Cython classes). | ||||
| * | Issue #27942: Fix memory leak in codeobject.c | Yury Selivanov | 2016-11-09 | 1 | -0/+2 |
| | | |||||
| * | 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. | ||||
| * | Silenced compiler warnings. | Serhiy Storchaka | 2016-10-08 | 1 | -1/+0 |
| | | |||||
| * | 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. | ||||
| * | Issue #28350: String constants with null character no longer interned. | Serhiy Storchaka | 2016-10-04 | 1 | -5/+8 |
| | | |||||
| * | Issue #27942: String constants now interned recursively in tuples and ↵ | Serhiy Storchaka | 2016-09-30 | 1 | -9/+45 |
| | | | | | frozensets. | ||||
| * | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 5 | -39/+43 |
| | | | | | | Also update the classmethod and staticmethod doc strings and comments to match the RST documentation. | ||||
| * | Correct occurance → occurrence; extracted from patch by Georg Brandl | Martin Panter | 2016-09-08 | 2 | -3/+3 |
| | | |||||
| * | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Martin Panter | 2016-09-07 | 4 | -4/+4 |
| | | |||||
| * | promote some shifts to unsigned, so as not to invoke undefined behavior | Benjamin Peterson | 2016-09-07 | 1 | -2/+2 |
| | | |||||
| * | make sure to not call memcpy with a NULL second argument | Benjamin Peterson | 2016-09-07 | 1 | -6/+9 |
| | | |||||
| * | Issue #27870: A left shift of zero by a large integer no longer attempts to ↵ | Mark Dickinson | 2016-08-29 | 1 | -0/+5 |
| | | | | | allocate large amounts of memory. | ||||
| * | Issue #25604: Fix bug in integer true division that could have resulted in ↵ | Mark Dickinson | 2016-08-21 | 1 | -2/+2 |
| | | | | | off-by-one-ulp results in unusual cases. | ||||
| * | 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. | ||||
| * | Spelling and grammar fixes in code comments and documentation | Martin Panter | 2016-07-28 | 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 #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 str, unicode and bytearray | Serhiy Storchaka | 2016-07-12 | 3 | -21/+26 |
| | | | | | concatenations and repetitions. Based on patch by Xiang Zhang. | ||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | | | | | | | 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 to fix the grammar. | ||||
| * | fix refleaks in PyDict_SetItem error cases (closes #27248) | Benjamin Peterson | 2016-07-07 | 1 | -3/+9 |
| | | |||||
| * | Issue #23908: os functions, open() and the io.FileIO constructor now reject | Serhiy Storchaka | 2016-07-01 | 1 | -1/+2 |
| | | | | | | unicode paths with embedded null character on Windows instead of silently truncate them. | ||||
| * | Issue #22463: Backport compiler warning fixes and workarounds | Martin Panter | 2016-06-21 | 8 | -12/+12 |
| | | | | | | | | | | | | | | | * Set but unused variable in Parser/pgen.c in non-debug builds. Patch by Christian Heimes. * Unused static function in Modules/readline.c. Patch by Georg Brandl. * main_window unused in Modules/tkappinit.c. Patch by Gregory P. Smith. * Dead assignment in Modules/_ctypes/cfield.c. Extracted from patch by Brett Cannon. * Expression result unused in PyObject_INIT macro expansions. Based on patches by Christian Heimes. * Load expat_config.h and therefore pyconfig.h before C stdlib headers are loaded. This silences pre-processor warnings including '_POSIX_C_SOURCE redefined'. Extracted from patch by Christian Heimes. | ||||
| * | Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. | Serhiy Storchaka | 2016-06-05 | 1 | -1/+5 |
| | | | | | Original patch by Xiang Zhang. | ||||
| * | Issue #20041: Fixed TypeError when frame.f_trace is set to None. | Serhiy Storchaka | 2016-06-04 | 1 | -5/+3 |
| | | | | | Patch by Xavier de Gaye. | ||||
| * | Issue #27171: Fix typos in documentation, code comments, and tests | Martin Panter | 2016-06-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #27125: Remove duplicated words from documentation and comments | Martin Panter | 2016-05-30 | 2 | -2/+2 |
| | | |||||
| * | Issue #27125: Fix various errors like “will [be] inherited” | Martin Panter | 2016-05-29 | 1 | -1/+1 |
| | | |||||
| * | Backed out changeset e7062dd9085e (#25731) | Benjamin Peterson | 2016-05-28 | 1 | -1/+1 |
| | | |||||
| * | Issue #27076: Doc, comment and test function name spelling fixes | Martin Panter | 2016-05-26 | 1 | -1/+1 |
| | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä. | ||||
| * | Issue #27039: Fixed bytearray.remove() for values greater than 127. | Serhiy Storchaka | 2016-05-16 | 1 | -7/+5 |
| | | | | | Patch by Joe Jevnik. | ||||
| * | fix indentation of comments in cellobject.c (closes #27011) | Benjamin Peterson | 2016-05-13 | 1 | -3/+3 |
| | | |||||
| * | Corrections for a/an in code comments and documentation | Martin Panter | 2016-05-08 | 2 | -3/+3 |
| | | |||||
| * | Issue #17765: weakref.ref() no longer silently ignores keyword arguments. | Serhiy Storchaka | 2016-05-07 | 1 | -1/+3 |
| | | | | | Patch by Georg Brandl. | ||||
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 2 | -2/+2 |
| | | |||||
| * | add gc support to slice (closes #26659) | Benjamin Peterson | 2016-04-16 | 1 | -4/+15 |
| | | |||||
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
| | | | | | This affects documentation and code comments. | ||||
| * | Issue #26718: super.__init__ no longer leaks memory if called multiple times. | Serhiy Storchaka | 2016-04-13 | 1 | -3/+3 |
| | | | | | NOTE: A direct call of super.__init__ is not endorsed! | ||||
| * | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 5 | -8/+8 |
| | | | | | in places where Py_DECREF was used. | ||||
| * | Issue #13410: Fixed a bug in PyUnicode_Format where it failed to properly | Serhiy Storchaka | 2016-04-10 | 1 | -1/+4 |
| | | | | | | | ignore errors from a __int__() method. Patch based on the patch for issue #15516. | ||||
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 8 | -28/+28 |
| | | |||||
