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
*
#20634: fix typo in IDLE README noticed by Saimadhav Heblikar.
Ezio Melotti
2014-02-15
1
-1/+1
*
fix links to builtin repr function (closes #20573)
Benjamin Peterson
2014-02-14
1
-4/+5
*
Issue #20605: Make test_socket getaddrinfo OS X segfault test more robust.
Ned Deily
2014-02-14
2
-2/+10
*
#19680: add back documentation for print and exec in the interactive help.
Ezio Melotti
2014-02-14
2
-7/+9
*
Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.
Serhiy Storchaka
2014-02-12
3
-2/+48
*
Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.
Serhiy Storchaka
2014-02-12
1
-2/+4
*
Add references for Xcode and the Python Developer's Guide
Ned Deily
2014-02-12
1
-0/+7
*
avoid name clash with posix_close (closes #20594)
Benjamin Peterson
2014-02-11
2
-2/+8
*
Issue #20558: Improved implementation of error handling.
Vinay Sajip
2014-02-11
1
-27/+30
*
Issue #19856: shutil.move() failed to move a directory to other directory
Serhiy Storchaka
2014-02-11
3
-1/+14
*
Merge heads
Serhiy Storchaka
2014-02-10
1
-2/+3
|
\
|
*
#19906: clarify note in urllib docs.
Ezio Melotti
2014-02-10
1
-2/+3
*
|
issue12085: Use more Pythonic way to check _child_created.
Serhiy Storchaka
2014-02-10
1
-4/+5
|
/
*
Issue #20437: Fixed 43 potential bugs when deleting objects references.
Serhiy Storchaka
2014-02-09
18
-82/+45
*
#14983: always add a line end after a MIME boundary marker.
R David Murray
2014-02-08
5
-12/+26
*
Issue #20406: Use Python application icons for Idle window title bars.
Terry Jan Reedy
2014-02-08
9
-1/+16
*
Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests.
Serhiy Storchaka
2014-02-08
3
-38/+38
*
Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref t...
Serhiy Storchaka
2014-02-08
8
-28/+29
*
Issue #20546: Use specific asserts in int tests.
Serhiy Storchaka
2014-02-08
1
-2/+2
*
#20013: don't raise socket error when selected mailbox deleted.
R David Murray
2014-02-07
2
-0/+9
*
Issue #20532: Tests which use _testcapi now are marked as CPython only.
Serhiy Storchaka
2014-02-07
20
-103/+204
*
Issue #20520: Fixed readline test in test_codecs.
Serhiy Storchaka
2014-02-06
1
-6/+15
*
Issue #20374: delete spurious empty line
Ned Deily
2014-02-06
1
-1/+0
*
Issue #20374: Avoid compiler warnings when compiling readline with libedit.
Ned Deily
2014-02-06
1
-0/+9
*
Issue #19920: Added tests for TarFile.list(). Based on patch by Vajrasky Kok.
Serhiy Storchaka
2014-02-05
2
-0/+79
*
Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests.
Serhiy Storchaka
2014-02-05
1
-1/+36
*
Issue #20509: Added cross-reference in documentation.
Vinay Sajip
2014-02-04
1
-2/+3
*
mmap obmalloc arenas so that they may be immediately returned to the system w...
Benjamin Peterson
2014-02-04
5
-15/+46
*
Skip expr* tests for large integers for Tcl <8.5.
Serhiy Storchaka
2014-02-03
1
-4/+8
*
Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug...
Antoine Pitrou
2014-02-03
3
-7/+27
*
Issue #19761: Fixed Tkinter tests on OS X.
Serhiy Storchaka
2014-02-03
2
-7/+14
*
Issue #20368: The null character now correctly passed from Tcl to Python (in
Serhiy Storchaka
2014-02-03
4
-105/+174
*
Merge heads
Serhiy Storchaka
2014-02-03
1
-1/+1
|
\
|
*
use system mercurial
Benjamin Peterson
2014-02-03
1
-1/+1
*
|
Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),
Serhiy Storchaka
2014-02-03
1
-0/+131
|
/
*
Added cookbook entry on logging filter configuration using dictConfig().
Vinay Sajip
2014-02-03
1
-0/+220
*
Issue #20435: Fix _pyio.StringIO.getvalue() to take into account newline tran...
Antoine Pitrou
2014-02-02
3
-1/+19
*
Issue #19990: Install test/imghdrdata.
Ned Deily
2014-02-02
1
-1/+3
*
Issue #20423: fix documentation of io.StringIO's newline parameter
Antoine Pitrou
2014-02-02
1
-3/+3
*
Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.
Serhiy Storchaka
2014-02-02
1
-5/+32
*
use with statement to ensure zipfile is always closed (closes #20102)
Benjamin Peterson
2014-02-02
1
-11/+9
*
Update the python.gif icon for the Idle classbrowser and pathbowser
Terry Jan Reedy
2014-02-02
1
-0/+0
*
#20288: fix handling of invalid numeric charrefs in HTMLParser.
Ezio Melotti
2014-02-01
3
-3/+11
*
Issue #19683: Add __closure__ and other missing attributes to function docs.
Mark Dickinson
2014-02-01
1
-24/+30
*
Fix unfinished thought in xml overview page. Suggested by Bo Bayles on docs@.
Zachary Ware
2014-01-31
1
-0/+1
*
Idle test: 2nd try at suppressing compile time warning (hint by Nick Coghlan).
Terry Jan Reedy
2014-01-31
1
-1/+1
*
Issue #20444: Reduced code duplication. Thanks to dongwm for the report and p...
Vinay Sajip
2014-01-30
1
-52/+36
*
Idlelib & buildbots: suppress py3 deprecation message even if enabled.
Terry Jan Reedy
2014-01-29
1
-2/+6
*
Backported a test for lone surrogates support in io.StringIO.
Serhiy Storchaka
2014-01-29
1
-0/+10
*
Silence deprecation warning in sunau.py
Terry Jan Reedy
2014-01-29
1
-1/+1
[next]