index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
#2359: add Py3k warning for array.read/array.write.
Georg Brandl
2008-03-25
1
-2/+26
*
On platforms without zlib, make this do the right thing and return the python
Gregory P. Smith
2008-03-25
1
-71/+58
*
Use a 32-bit unsigned int here, a long is not needed.
Gregory P. Smith
2008-03-25
2
-6/+6
*
Conditionalize sys/time.h inclusion.
Martin v. Löwis
2008-03-24
1
-0/+2
*
Patch #2240: Implement signal.setitimer and signal.getitimer.
Martin v. Löwis
2008-03-24
1
-3/+149
*
Have the binascii module use zlib's optimized crc32() function when available
Gregory P. Smith
2008-03-24
1
-0/+24
*
replace calls to get the initial values with the raw constants.
Gregory P. Smith
2008-03-23
1
-2/+2
*
Revert r61779 - It undid correct code and caused test_zlib to fail on all
Gregory P. Smith
2008-03-23
1
-4/+2
*
Fix test_tarfile failures on Alpha (Tru64). The problem was caused in r61449
Neal Norwitz
2008-03-23
1
-2/+4
*
Applied patch #1657 epoll and kqueue wrappers for the select module
Christian Heimes
2008-03-21
1
-12/+1163
*
Prevent ioctl op codes from being sign extended from int to unsigned long
Gregory P. Smith
2008-03-19
1
-5/+14
*
Remove itertools warnings I had added before the 2-to-3 handled the migration.
Raymond Hettinger
2008-03-19
1
-25/+0
*
The filter() function does support a None argument in Py3.0.
Raymond Hettinger
2008-03-19
1
-9/+0
*
Added zip, map, filter to future_bultins (#2171)
David Wolever
2008-03-19
2
-3/+25
*
Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.
Gregory P. Smith
2008-03-18
1
-1/+1
*
Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as
Gregory P. Smith
2008-03-18
1
-2/+2
*
Cast the arguments to PyString_AsStringAndSize() to silence compiler warnings
Brett Cannon
2008-03-18
1
-1/+2
*
Remove all traces of HAVE_STRERROR.
Brett Cannon
2008-03-18
4
-23/+2
*
Include <alloca.h> on Solaris, see issue #1506.
Thomas Heller
2008-03-18
1
-0/+4
*
Use a buffer large enough to ensure we don't overrun, even if the value
Neal Norwitz
2008-03-17
1
-1/+1
*
Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms
Gregory P. Smith
2008-03-17
1
-8/+17
*
add %f format to datetime - issue 1158
Skip Montanaro
2008-03-15
2
-25/+79
*
Remove unneeded initializer.
Thomas Heller
2008-03-14
1
-1/+1
*
Leave heapreplace() unchanged.
Raymond Hettinger
2008-03-14
1
-5/+0
*
Issue 2274: Add heapq.heappushpop().
Raymond Hettinger
2008-03-13
1
-0/+49
*
Consistent tense.
Raymond Hettinger
2008-03-13
1
-1/+1
*
Add 2-to-3 support for the itertools moved to builtins or renamed.
Raymond Hettinger
2008-03-13
1
-0/+25
*
Issue 2246: itertools grouper object did not participate in GC (should be ba...
Raymond Hettinger
2008-03-06
1
-5/+15
*
Small code cleanup.
Raymond Hettinger
2008-03-05
1
-4/+2
*
C implementation of itertools.permutations().
Raymond Hettinger
2008-03-05
1
-0/+274
*
Issue 1872: Changed the struct module typecode from 't' to '?', for
Thomas Heller
2008-03-05
4
-11/+20
*
Fix refleak in chain().
Raymond Hettinger
2008-03-04
1
-1/+1
*
Try to fix the build for PY_LINUX.
Thomas Heller
2008-03-04
1
-0/+1
*
Merged changes from libffi3-branch.
Thomas Heller
2008-03-04
97
-3423/+38619
*
Beef-up docs and tests for itertools. Fix-up end-case for product().
Raymond Hettinger
2008-03-04
1
-4/+1
*
Only DECREF if ret != NULL
Neal Norwitz
2008-03-03
1
-1/+1
*
Handle 0-tuples which can be singletons.
Raymond Hettinger
2008-03-02
1
-1/+1
*
Simplify code for itertools.product().
Raymond Hettinger
2008-03-02
1
-13/+2
*
Updated to pysqlite 2.4.1. Documentation additions will come later.
Gerhard Häring
2008-02-29
10
-202/+483
*
Handle the repeat keyword argument for itertools.product().
Raymond Hettinger
2008-02-29
1
-5/+27
*
Add alternate constructor for itertools.chain().
Raymond Hettinger
2008-02-28
1
-1/+25
*
Have itertools.chain() consume its inputs lazily instead of building a tuple ...
Raymond Hettinger
2008-02-28
1
-51/+51
*
The empty tuple is usually a singleton with a much higher refcnt than 1
Christian Heimes
2008-02-28
1
-2/+5
*
One too many decrefs.
Raymond Hettinger
2008-02-27
1
-3/+1
*
Add itertools.combinations().
Raymond Hettinger
2008-02-26
1
-1/+225
*
Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...
Christian Heimes
2008-02-26
1
-0/+18
*
The contains function raised a gcc warning. The new code is copied straight f...
Christian Heimes
2008-02-26
1
-5/+12
*
Whitespace normalization
Neal Norwitz
2008-02-26
1
-9/+9
*
Coerced PyBool_Type to be able to compare it.
Facundo Batista
2008-02-25
1
-2/+2
*
Make sure the itertools filter functions give the same performance for func=b...
Raymond Hettinger
2008-02-25
1
-2/+2
[next]