summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Remove itertools warnings I had added before the 2-to-3 handled the migration.Raymond Hettinger2008-03-191-25/+0
* The filter() function does support a None argument in Py3.0.Raymond Hettinger2008-03-191-9/+0
* Added zip, map, filter to future_bultins (#2171)David Wolever2008-03-192-3/+25
* Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.Gregory P. Smith2008-03-181-1/+1
* Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) asGregory P. Smith2008-03-181-2/+2
* Cast the arguments to PyString_AsStringAndSize() to silence compiler warningsBrett Cannon2008-03-181-1/+2
* Remove all traces of HAVE_STRERROR.Brett Cannon2008-03-184-23/+2
* Include <alloca.h> on Solaris, see issue #1506.Thomas Heller2008-03-181-0/+4
* Use a buffer large enough to ensure we don't overrun, even if the valueNeal Norwitz2008-03-171-1/+1
* Force zlib.crc32 and zlib.adler32 to return a signed integer on all platformsGregory P. Smith2008-03-171-8/+17
* add %f format to datetime - issue 1158Skip Montanaro2008-03-152-25/+79
* Remove unneeded initializer.Thomas Heller2008-03-141-1/+1
* Leave heapreplace() unchanged.Raymond Hettinger2008-03-141-5/+0
* Issue 2274: Add heapq.heappushpop().Raymond Hettinger2008-03-131-0/+49
* Consistent tense.Raymond Hettinger2008-03-131-1/+1
* Add 2-to-3 support for the itertools moved to builtins or renamed.Raymond Hettinger2008-03-131-0/+25
* Issue 2246: itertools grouper object did not participate in GC (should be ba...Raymond Hettinger2008-03-061-5/+15
* Small code cleanup.Raymond Hettinger2008-03-051-4/+2
* C implementation of itertools.permutations().Raymond Hettinger2008-03-051-0/+274
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-054-11/+20
* Fix refleak in chain().Raymond Hettinger2008-03-041-1/+1
* Try to fix the build for PY_LINUX.Thomas Heller2008-03-041-0/+1
* Merged changes from libffi3-branch.Thomas Heller2008-03-0497-3423/+38619
* Beef-up docs and tests for itertools. Fix-up end-case for product().Raymond Hettinger2008-03-041-4/+1
* Only DECREF if ret != NULLNeal Norwitz2008-03-031-1/+1
* Handle 0-tuples which can be singletons.Raymond Hettinger2008-03-021-1/+1
* Simplify code for itertools.product().Raymond Hettinger2008-03-021-13/+2
* Updated to pysqlite 2.4.1. Documentation additions will come later.Gerhard Häring2008-02-2910-202/+483
* Handle the repeat keyword argument for itertools.product().Raymond Hettinger2008-02-291-5/+27
* Add alternate constructor for itertools.chain().Raymond Hettinger2008-02-281-1/+25
* Have itertools.chain() consume its inputs lazily instead of building a tuple ...Raymond Hettinger2008-02-281-51/+51
* The empty tuple is usually a singleton with a much higher refcnt than 1Christian Heimes2008-02-281-2/+5
* One too many decrefs.Raymond Hettinger2008-02-271-3/+1
* Add itertools.combinations().Raymond Hettinger2008-02-261-1/+225
* Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...Christian Heimes2008-02-261-0/+18
* The contains function raised a gcc warning. The new code is copied straight f...Christian Heimes2008-02-261-5/+12
* Whitespace normalizationNeal Norwitz2008-02-261-9/+9
* Coerced PyBool_Type to be able to compare it.Facundo Batista2008-02-251-2/+2
* Make sure the itertools filter functions give the same performance for func=b...Raymond Hettinger2008-02-251-2/+2
* Issue 2168. gdbm and dbm needs to be iterable; this fixes aFacundo Batista2008-02-252-3/+68
* Fix typo of hexidecimalNeal Norwitz2008-02-241-1/+1
* Get ctypes working on the Alpha (Tru64). The problem was that thereNeal Norwitz2008-02-241-1/+1
* #1506171: added operator.methodcaller().Georg Brandl2008-02-231-0/+138
* #1826: allow dotted attribute paths in operator.attrgetter.Georg Brandl2008-02-231-3/+48
* Patch #1957: syslogmodule: Release GIL when calling syslog(3)Christian Heimes2008-02-231-0/+2
* Issue 1089358. Adds the siginterrupt() function, that is just aFacundo Batista2008-02-231-0/+33
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-10/+25
* Add more commentsRaymond Hettinger2008-02-231-4/+4
* Added future_builtins, which contains PEP 3127 compatible versions of hex() a...Eric Smith2008-02-231-0/+69
* Improve the implementation of itertools.product()Raymond Hettinger2008-02-231-12/+43