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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed leak in sys.flags initialization.
Serhiy Storchaka
2013-12-17
1
-0/+1
*
Close #19999: tolerate coarse time when testing time.monotonic() on very
Victor Stinner
2013-12-16
1
-1/+1
*
Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns
Christian Heimes
2013-12-16
2
-2/+7
*
Issue #19987: Re-write test_alias_fallback in test_winsound to have two
Zachary Ware
2013-12-16
2
-8/+9
*
Merge heads
Serhiy Storchaka
2013-12-16
2
-1/+3
|
\
|
*
Merge.
Charles-François Natali
2013-12-16
1
-0/+1
|
|
\
|
|
*
Issue #17919: add missing import of USHRT_MAX
Christian Heimes
2013-12-16
1
-0/+1
|
*
|
Merge.
Charles-François Natali
2013-12-16
4
-4/+32
|
|
\
\
|
|
|
/
|
*
|
Merge.
Charles-François Natali
2013-12-15
116
-552/+1088
|
|
\
\
|
*
|
|
Issue #19965: Make sure that Python-ast.h is properly taken into account in the
Charles-François Natali
2013-12-15
1
-1/+2
*
|
|
|
Issue #19912: Fixed numerous bugs in ntpath.splitunc().
Serhiy Storchaka
2013-12-16
3
-20/+33
*
|
|
|
Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
Serhiy Storchaka
2013-12-16
3
-1/+7
|
|
_
|
/
|
/
|
|
*
|
|
#19532: make compileall with no file/dir args respect -f and -q.
R David Murray
2013-12-16
3
-1/+28
*
|
|
Issue #19986: Avoid an incorrect warning of older gcc versions.
Stefan Krah
2013-12-15
1
-3/+4
|
|
/
|
/
|
*
|
Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e.
Serhiy Storchaka
2013-12-14
6
-45/+12
*
|
Issue #19623: Fixed writing to unseekable files in the aifc module.
Serhiy Storchaka
2013-12-14
6
-62/+103
*
|
Issue #17919: Fixed integer overflow in the eventmask parameter.
Serhiy Storchaka
2013-12-14
4
-17/+50
*
|
Fix C++ header usage. This __STDC_LIMIT_MACROS scheme can still be subverted
Stefan Krah
2013-12-14
1
-9/+11
*
|
#19981: fix typo in email.mailbox docs. Patch by Claudiu Popa.
Ezio Melotti
2013-12-14
1
-2/+2
*
|
#19970: Fix some comment typos.
R David Murray
2013-12-14
3
-4/+4
*
|
Issue #19963: Document that importlib.import_module() will import
Brett Cannon
2013-12-13
2
-2/+8
*
|
#18036: update .pyc FAQ entry in light of PEP 3147.
R David Murray
2013-12-13
1
-18/+27
*
|
Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c"
Victor Stinner
2013-12-13
3
-3/+25
*
|
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
Serhiy Storchaka
2013-12-13
3
-7/+4
*
|
Issue #14432: Fix compilation when thread support is disabled
Victor Stinner
2013-12-13
1
-0/+4
*
|
Issue #14432: Generator now clears the borrowed reference to the thread state
Victor Stinner
2013-12-13
4
-0/+141
*
|
Do not discard const qualifier without a reason.
Stefan Krah
2013-12-12
1
-7/+7
*
|
Avoid UnicodeEncodeError by only printing ASCII.
Zachary Ware
2013-12-12
1
-2/+2
*
|
Filter namespaceobject's files properly in the pythoncore VS project.
Zachary Ware
2013-12-11
1
-2/+6
*
|
Issue #19828: Fixed test_site when the whole suite is run with -S.
Zachary Ware
2013-12-11
2
-9/+10
*
|
#19063: partially fix set_payload handling of non-ASCII string input.
R David Murray
2013-12-11
4
-11/+63
*
|
Issue #17576: Deprecation warning emitted now when __int__() or __index__()
Serhiy Storchaka
2013-12-11
7
-186/+312
*
|
Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the
Gregory P. Smith
2013-12-11
2
-2/+9
*
|
Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial
Ned Deily
2013-12-11
2
-12/+18
*
|
Issue #19928: Fix test on Windows
Zachary Ware
2013-12-10
1
-2/+2
*
|
#19943: fix typo noticed by Jakub Wilk.
Ezio Melotti
2013-12-10
1
-1/+1
*
|
Issue #19407: add Python Packaging User Guide notes
Nick Coghlan
2013-12-10
3
-5/+32
*
|
Issue #19928: Implemented a test for repr() of cell objects.
Serhiy Storchaka
2013-12-10
2
-3/+11
*
|
Issue #19481: print() of string subclass instance in IDLE no more hangs.
Serhiy Storchaka
2013-12-10
2
-2/+10
*
|
Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
Victor Stinner
2013-12-10
2
-4/+6
*
|
Add libmpdec license.
Stefan Krah
2013-12-08
1
-0/+33
*
|
Fix two typos.
Stefan Krah
2013-12-08
2
-2/+2
*
|
Missed one copyright.
Stefan Krah
2013-12-08
1
-1/+1
*
|
Update copyright. The four year increment is intentional (to save work).
Stefan Krah
2013-12-08
33
-33/+33
*
|
Issue #17429: Oops, remove unused import
Victor Stinner
2013-12-08
1
-1/+0
*
|
Issue #17429: platform.linux_distribution() now decodes files from the UTF-8
Victor Stinner
2013-12-08
4
-2/+30
*
|
Fixes issue #19929: Call os.read with 32768 within subprocess.Popen
Gregory P. Smith
2013-12-08
2
-1/+5
*
|
#18430: Document that peek() may change the position of the underlying file for
Nadeem Vawda
2013-12-08
3
-0/+15
*
|
Issue #19535: Fixed test_docxmlrpc when python is run with -OO.
Serhiy Storchaka
2013-12-08
2
-2/+6
*
|
Remove mentions of Python 2.x and being externally maintained from
Gregory P. Smith
2013-12-08
1
-5/+2
[next]