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
*
Back out fix for issue #13886; it introduced a new bug in interactive readlin...
Nadeem Vawda
2013-02-02
1
-1/+1
*
In the _hashlib module, only initialize the static data for OpenSSL's
Gregory P. Smith
2013-02-02
1
-6/+9
*
Additional fix for Issue #12268: The io module file object writelines() metho...
Gregory P. Smith
2013-02-01
2
-3/+9
*
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
*
Clean trailing whitespace in itertoolsmodule.c.
Serhiy Storchaka
2013-01-25
1
-4/+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
*
Issue #10527: Use poll() instead of select() for multiprocessing pipes
Richard Oudkerk
2013-01-15
1
-0/+33
*
Issue #16922: fixed findtext() to return empty Unicode string instead of empt...
Eli Bendersky
2013-01-13
1
-1/+1
*
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
*
Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding
Victor Stinner
2013-01-01
1
-3/+7
*
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
-15/+55
*
Merge with 3.1 : Don't DECREF the ctypes error_object without the GIL held.
Kristjan Valur Jonsson
2012-12-21
1
-1/+1
|
\
|
*
Don't DECREF the ctypes error_object without the GIL held.
Kristjan Valur Jonsson
2012-12-21
1
-1/+1
*
|
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
*
|
Code style fixup: No need for double ((parenthesis)) and use {} on an if else.
Gregory P. Smith
2012-12-11
1
-4/+5
*
|
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 #16416: On Mac OS X, operating system data are now always
Victor Stinner
2012-12-03
1
-8/+0
*
|
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
-1/+6
*
|
Issue #12848: The pure Python pickle implementation now treats object lengths...
Antoine Pitrou
2012-11-24
1
-1/+1
*
|
#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: Document that zlib and gzip accept a compression level of 0 to ...
Nadeem Vawda
2012-11-11
1
-3/+3
*
|
Fixes issue #9535: Fix pending signals that have been received but not
Gregory P. Smith
2012-11-11
1
-0/+16
*
|
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
*
|
Issue #16230: Fix a crash in select.select() when one the lists changes size ...
Antoine Pitrou
2012-11-01
1
-4/+2
*
|
Issue #16228: Fix a crash in the json module where a list changes size while ...
Antoine Pitrou
2012-11-01
1
-7/+3
*
|
Fix docstring for deque ctor to mark iterable parameter optional
Andrew Svetlov
2012-10-31
1
-1/+1
*
|
initialize more global type objects (closes #16369)
Benjamin Peterson
2012-10-31
1
-0/+3
*
|
#14897: Enhance error messages of struct.pack and struct.pack_into
Petri Lehtinen
2012-10-29
1
-4/+14
*
|
Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and ...
Mark Dickinson
2012-10-25
1
-4/+3
*
|
Issue #14398: Fix size truncation and overflow bugs in bz2 module.
Nadeem Vawda
2012-10-21
1
-152/+176
*
|
Fixes Issue #16114: The subprocess module no longer provides a
Gregory P. Smith
2012-10-10
1
-1/+6
*
|
Closes #15897: zipimport.c doesn't check return value of fseek(). Typo
Jesus Cea
2012-10-03
1
-5/+5
*
|
Closes #15897: zipimport.c doesn't check return value of fseek()
Jesus Cea
2012-10-03
1
-7/+36
*
|
Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patc...
Senthil Kumaran
2012-09-25
1
-3/+7
*
|
Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()
Christian Heimes
2012-09-24
1
-1/+1
*
|
Issue #15973: fixed 3.2 backport.
Alexander Belopolsky
2012-09-20
1
-2/+4
*
|
Issue #15973: Fixed segmentation fault on timezone comparison to other types.
Alexander Belopolsky
2012-09-20
1
-3/+7
[next]