| Commit message (Expand) | Author | Age | Files | Lines |
* | Cruft cleanup: Removed the unused last_is_sticky argument from the internal | Tim Peters | 2001-05-28 | 1 | -2/+2 |
|
|
* | Reimplement PySequence_Contains() and instance_contains(), so they work | Tim Peters | 2001-05-05 | 1 | -21/+20 |
|
|
* | Generalize PySequence_Count() (operator.countOf) to work with iterators. | Tim Peters | 2001-05-05 | 1 | -13/+31 |
|
|
* | Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. | Tim Peters | 2001-05-05 | 1 | -29/+34 |
|
|
* | Fix a tiny and unlikely memory leak. Was there before too, and actually | Tim Peters | 2001-05-05 | 1 | -1/+3 |
|
|
* | Generalize tuple() to work nicely with iterators. | Tim Peters | 2001-05-05 | 1 | -40/+47 |
|
|
* | Make PyIter_Next() a little smarter (wrt its knowledge of iterator | Tim Peters | 2001-05-05 | 1 | -11/+16 |
|
|
* | Plug a memory leak in list(), when appending to the result list. | Tim Peters | 2001-05-02 | 1 | -5/+9 |
|
|
* | Generalize list(seq) to work with iterators. This also generalizes list() | Tim Peters | 2001-05-01 | 1 | -31/+57 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 1 | -3/+25 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -0/+17 |
|
|
* | Move the code implementing isinstance() and issubclass() to new C | Guido van Rossum | 2001-03-21 | 1 | -0/+112 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -4/+4 |
|
|
* | Massive changes as per PEP 208. Read it for details. | Neil Schemenauer | 2001-01-04 | 1 | -728/+318 |
|
|
* | Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the | Thomas Wouters | 2000-10-05 | 1 | -11/+11 |
|
|
* | Cosmetic cleanup by Vladimir. | Thomas Wouters | 2000-09-02 | 1 | -43/+49 |
|
|
* | Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. | Guido van Rossum | 2000-09-01 | 1 | -15/+20 |
|
|
* | Fix grouping, again. This time properly :-) Sorry, guys. | Thomas Wouters | 2000-09-01 | 1 | -3/+3 |
|
|
* | Add parens suggested by gcc -Wall. | Guido van Rossum | 2000-09-01 | 1 | -2/+3 |
|
|
* | Fix grouping: this is how I intended it, misguided as I was in boolean | Thomas Wouters | 2000-08-31 | 1 | -2/+2 |
|
|
* | Removed compiler warning about wanting explicit grouping around && | Fred Drake | 2000-08-31 | 1 | -4/+6 |
|
|
* | Support for the in-place operations introduced by augmented assignment. Only | Thomas Wouters | 2000-08-24 | 1 | -0/+514 |
|
|
* | Addendum to previous change: now that 'f' is not unconditionally | Thomas Wouters | 2000-08-23 | 1 | -11/+11 |
|
|
* | Add extra check on whether 'tp_as_number' is still non-NULL after coercion, | Thomas Wouters | 2000-08-23 | 1 | -24/+28 |
|
|
* | Apply SF patch #101029: call __getitem__ with a proper slice object if there | Thomas Wouters | 2000-08-17 | 1 | -0/+37 |
|
|
* | Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. | Guido van Rossum | 2000-08-03 | 1 | -10/+0 |
|
|
* | ANSIfication: remove very-old-varargs code, fix function declarations so | Thomas Wouters | 2000-07-22 | 1 | -34/+0 |
|
|
* | Restore PyXXX_Length() APIs for binary compatibility. | Marc-André Lemburg | 2000-07-17 | 1 | -0/+24 |
|
|
* | change abstract size functions PySequence_Size &c. | Jeremy Hylton | 2000-07-12 | 1 | -8/+8 |
|
|
* | type_error(): Added "const" to signature to eliminate warning with -Wall. | Fred Drake | 2000-07-09 | 1 | -1/+1 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -140/+55 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -13/+13 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Patch from /F: | Andrew M. Kuchling | 2000-06-18 | 1 | -0/+20 |
|
|
* | Marc-Andre's third try at this bulk patch seems to work (except that | Guido van Rossum | 2000-04-05 | 1 | -42/+49 |
|
|
* | Many changes for Unicode, by Marc-Andre Lemburg. | Guido van Rossum | 2000-03-10 | 1 | -14/+134 |
|
|
* | Patch by Moshe Zadka: remove the string special case in | Guido van Rossum | 2000-03-07 | 1 | -18/+0 |
|
|
* | Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This | Guido van Rossum | 2000-02-28 | 1 | -1/+8 |
|
|
* | Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), | Andrew M. Kuchling | 2000-02-23 | 1 | -1/+19 |
|
|
* | Make multiplying a sequence by a long integer (5L * 'b') legal | Andrew M. Kuchling | 2000-02-14 | 1 | -2/+13 |
|
|
* | Mainlining the string_methods branch. See branch revision log | Barry Warsaw | 1999-10-12 | 1 | -119/+61 |
|
|
* | Patch by Charles Waldman -- remove unneeded and even harmful test for | Guido van Rossum | 1999-01-10 | 1 | -10/+0 |
|
|
* | Remove prototype for PyOS_strtol -- Chris Herborth. | Guido van Rossum | 1998-12-10 | 1 | -1/+0 |
|
|
* | Believe it or not, Solaris 2.6 strtod() can move the end pointer | Guido van Rossum | 1998-10-01 | 1 | -1/+6 |
|
|
* | Better error messages when a sequence is indexed with a non-integer. | Guido van Rossum | 1998-08-13 | 1 | -6/+17 |
|
|
* | Better error messages when raising ValueError for int and long | Guido van Rossum | 1998-08-04 | 1 | -6/+9 |
|
|
* | Add special case to PySequence_List() so that list() of a list is | Guido van Rossum | 1998-07-10 | 1 | -0/+6 |
|
|
* | Changed PySequence_List() and PySequence_Tuple() to support | Guido van Rossum | 1998-07-10 | 1 | -27/+38 |
|
|
* | Fix the tests for various anomalies in the string-to-numbers | Guido van Rossum | 1998-06-22 | 1 | -12/+8 |
|
|