| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -2/+2 |
|
|
* | Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. | Stefan Krah | 2012-07-28 | 1 | -2/+3 |
|
|
* | Issue #2377: Make importlib the implementation of __import__(). | Brett Cannon | 2012-04-14 | 1 | -0/+4 |
|
|
* | make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.c | Benjamin Peterson | 2012-03-21 | 1 | -15/+0 |
|
|
* | Fix a comment: PySequence_Fast() creates a list, not a tuple. | Larry Hastings | 2012-03-06 | 1 | -1/+1 |
|
|
* | - Issue #10181: New memoryview implementation fixes multiple ownership | Stefan Krah | 2012-02-25 | 1 | -1/+1 |
|
|
* | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -0/+12 |
|
|
* | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -2/+2 |
|\ |
|
| * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -2/+2 |
|
|
| * | Merged revisions 84391 via svnmerge from | Antoine Pitrou | 2010-09-01 | 1 | -0/+7 |
|
|
| * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -440/+440 |
|
|
| * | Merged revisions 73735-73736 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -6/+0 |
|
|
* | | Remove buffer API from stable ABI for now, see #10181. | Martin v. Löwis | 2011-01-06 | 1 | -0/+2 |
|
|
* | | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -0/+8 |
|
|
* | | Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become | Antoine Pitrou | 2010-09-01 | 1 | -0/+7 |
|
|
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -440/+440 |
|
|
* | | * Replaces the internals of the subprocess module from fork through exec on | Gregory P. Smith | 2010-03-14 | 1 | -0/+3 |
|
|
* | | remove comment about PyNumber_Int | Benjamin Peterson | 2009-07-01 | 1 | -6/+0 |
|/ |
|
* | #6115: remove entries for the already removed PyNumber_Divide and PyNumber_In... | Georg Brandl | 2009-05-26 | 1 | -15/+0 |
|
|
* | Issue #4910: PyNumber_Int is deprecated in 3.0.1; will be removed in 3.1. | Mark Dickinson | 2009-02-11 | 1 | -1/+5 |
|
|
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt. | Raymond Hettinger | 2009-02-02 | 1 | -1/+1 |
|
|
* | Issue #1717: remove the cmp builtin function, the C-API functions | Mark Dickinson | 2009-02-01 | 1 | -23/+0 |
|
|
* | Merged revisions 68560 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -1/+2 |
|
|
* | Issue #4910: replace "long" with "int" in docstring for __long__ slot and | Mark Dickinson | 2009-01-10 | 1 | -8/+2 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -0/+5 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -19/+5 |
|
|
* | Fixes for shared 2.6 code that implements PEP 3101, advanced string | Eric Smith | 2008-02-17 | 1 | -0/+7 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-04 | 1 | -0/+13 |
|
|
* | Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ... | Christian Heimes | 2008-01-04 | 1 | -5/+5 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Merged revisions 59376-59406 via svnmerge from | Christian Heimes | 2007-12-08 | 1 | -17/+4 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -15/+2 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 1 | -7/+7 |
|
|
* | Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. | Sean Reifscheider | 2007-09-17 | 1 | -2/+2 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -0/+110 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -1/+1 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -0/+8 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -22/+13 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -1/+1 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -1/+2 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -3/+16 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -18/+0 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -2/+2 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -2/+1 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -0/+10 |
|
|
* | Whitespace changes. Also remove apply from a few comments | Neal Norwitz | 2006-03-17 | 1 | -87/+21 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+8 |
|
|
* | Change some sequnce APIs to use Py_ssize_t. | Neal Norwitz | 2006-03-04 | 1 | -4/+4 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -18/+18 |
|
|
* | Renamed _length_cue() to __length_hint__(). See: | Armin Rigo | 2006-02-11 | 1 | -5/+10 |
|
|