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
...
*
|
Clean trailing whitespaces in Makefile.pre.in and grpmodule.c.
Serhiy Storchaka
2013-02-12
1
-3/+3
*
|
Minor cleanups.
Raymond Hettinger
2013-02-09
1
-19/+19
*
|
Issue #7358: cStringIO.StringIO now supports writing to and reading from
Serhiy Storchaka
2013-02-09
1
-32/+53
*
|
Issue #16686: Fixed a lot of bugs in audioop module.
Serhiy Storchaka
2013-02-09
1
-154/+166
*
|
Issue #17073: Fix some integer overflows in sqlite3 module.
Serhiy Storchaka
2013-02-07
5
-63/+134
*
|
#17091: update docstring for _thread.Lock.acquire.
R David Murray
2013-02-04
1
-2/+2
*
|
Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple
Serhiy Storchaka
2013-02-04
3
-14/+49
*
|
Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
Serhiy Storchaka
2013-02-03
1
-19/+44
*
|
Back out fix for issue #13886; it introduced a new bug in interactive readlin...
Nadeem Vawda
2013-02-02
1
-1/+1
*
|
Issue 16398: Use memcpy() in deque.rotate().
Raymond Hettinger
2013-02-02
1
-50/+60
*
|
Update the embedded copy of the expat XML parser to 2.1.0. It brings
Gregory P. Smith
2012-07-14
12
-253/+373
*
|
In the _hashlib module, only initialize the static data for OpenSSL's
Gregory P. Smith
2013-02-02
1
-5/+8
*
|
Additional fix for Issue #12268: The io module file object writelines() methods
Gregory P. Smith
2013-02-01
2
-3/+9
*
|
Issue #17051: Fix a memory leak in os.path.isdir() on Windows. Patch by Robe...
Serhiy Storchaka
2013-01-28
1
-0/+1
*
|
Issue #11729: Backport commit bff052d9 from libffi upstream in order to fix
Stefan Krah
2013-01-27
2
-6/+6
*
|
Issue #13886: Fix input() to not strip out supposedly-invalid input bytes.
Nadeem Vawda
2013-01-27
1
-1/+1
*
|
Issue #1602133: 'environ' is not really available with shared libraries on OSX
Ronald Oussoren
2013-01-25
1
-3/+4
*
|
Issue #13454: Fix a crash when deleting an iterator created by itertools.tee()
Serhiy Storchaka
2013-01-25
1
-1/+20
*
|
Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL.
Charles-François Natali
2013-01-19
1
-2/+2
*
|
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-19
5
-12/+17
*
|
Show the function signature in the docstring
Raymond Hettinger
2013-01-19
1
-3/+3
*
|
check windows fd validity (closes #16992)
Benjamin Peterson
2013-01-18
1
-1/+1
*
|
Issue #10527: Use poll() instead of select() for multiprocessing pipes
Richard Oudkerk
2013-01-14
1
-0/+33
*
|
make deque_clear void, since it's infallible
Benjamin Peterson
2013-01-13
1
-6/+2
*
|
Issue #16398: Optimize deque.rotate()
Raymond Hettinger
2013-01-12
1
-14/+58
*
|
use PyInt_FromSsize_t instead of PyLong_FromSsize_t (#10182)
Benjamin Peterson
2013-01-10
1
-4/+4
*
|
Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB
Victor Stinner
2013-01-03
1
-2/+11
*
|
Issue #16828: Fix error incorrectly raised by bz2.compress('').
Nadeem Vawda
2013-01-02
1
-1/+1
*
|
get the core to compile --disable-unicode
Benjamin Peterson
2013-01-02
1
-0/+4
*
|
Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy.
Richard Oudkerk
2013-01-01
1
-0/+7
*
|
rename MathcObject to match object in doctrings for re module (#16760)
Andrew Svetlov
2012-12-25
1
-1/+1
*
|
Issue #16443: Add docstrings to regular expression match objects.
Andrew Svetlov
2012-12-23
1
-9/+49
*
|
ctypes: DECREF error_object _after_ re-acquiring GIL
Kristjan Valur Jonsson
2012-12-21
1
-1/+1
*
|
#8853: Allow port to be of type long for socket.getaddrinfo()
Petri Lehtinen
2012-12-20
1
-3/+7
*
|
call close on the underlying stream even if flush raises (#16597)
Benjamin Peterson
2012-12-20
2
-9/+33
*
|
Issue #16714: use 'raise' exceptions, don't 'throw'.
Andrew Svetlov
2012-12-18
3
-5/+5
*
|
remove dead code
Benjamin Peterson
2012-12-15
1
-2/+0
*
|
#16681: use "bidirectional class" instead of "bidirectional category" in the ...
Ezio Melotti
2012-12-14
1
-1/+1
*
|
1 << 31 is invalid for signed integers, fix it by making 1 unsigned.
Gregory P. Smith
2012-12-11
1
-2/+2
*
|
Issue #16628: Fix a memory leak in ctypes.resize().
Antoine Pitrou
2012-12-08
3
-2/+3
*
|
Issue #10182: The re module doesn't truncate indices to 32 bits anymore.
Antoine Pitrou
2012-12-02
1
-5/+5
*
|
Plug a leak in timemodule. The module dictionary is saved during
Gregory P. Smith
2012-11-27
1
-3/+6
*
|
#16306: report only the first unknown option and add more tests. Patch by Se...
Ezio Melotti
2012-11-23
1
-0/+1
*
|
Issue #1160: Fix compiling large regular expressions on UCS2 builds.
Antoine Pitrou
2012-11-20
2
-9/+8
*
|
Issue #15677: Also fix docstrings in zlib module.
Nadeem Vawda
2012-11-11
1
-3/+3
*
|
Fixes issue #9535: Fix pending signals that have been received but not yet
Gregory P. Smith
2012-11-11
1
-0/+16
*
|
Fix typo in backporting fix of issue #16411 to 2.7.
Nadeem Vawda
2012-11-11
1
-2/+2
*
|
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces...
Nadeem Vawda
2012-11-11
1
-0/+2
*
|
Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco...
Nadeem Vawda
2012-11-11
1
-45/+55
*
|
Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...
Nadeem Vawda
2012-11-04
1
-6/+23
[prev]
[next]