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
*
Issue #12541: Be lenient with quotes around Realm field of HTTP Basic Authent...
Senthil Kumaran
2012-05-15
3
-1/+19
*
#14766: Reflow the altered paragraphs.
R David Murray
2012-05-15
1
-18/+17
*
#14766: Add correct algorithm for when a 'time' object is naive.
R David Murray
2012-05-15
1
-12/+26
*
bsddb never existed in 3.x, no need to keep downloading sleepycat
Brian Curtin
2012-05-15
1
-3/+0
*
Followup to issue #14157: respect the relative ordering of values produced by...
Antoine Pitrou
2012-05-14
2
-0/+13
*
Stop deleting non-existing bytecode files.
Martin v. Löwis
2012-05-14
1
-2/+0
*
Remove tab characters
Antoine Pitrou
2012-05-14
1
-8/+8
*
Use size_t, not ssize_t (issue #14801).
Antoine Pitrou
2012-05-14
1
-1/+1
*
Upgrade bzip2 to 1.0.6.
Martin v. Löwis
2012-05-14
8
-22/+22
*
#14405: remove outdated/broken/duplicate links.
Ezio Melotti
2012-05-14
1
-5/+0
*
Issue #14245: Improve floating-point entry in FAQ. Thanks Zbyszek Jędrzejew...
Mark Dickinson
2012-05-13
2
-37/+27
*
#14770: improve the library FAQ.
Ezio Melotti
2012-05-13
1
-54/+45
*
Issue #14793: fix grammar in bytes object paragraph; patch by Tshepang Lekhon...
Sandro Tosi
2012-05-13
1
-1/+2
*
correctly define what 'fill' could be; thanks to Leland Hulbert from docs@
Sandro Tosi
2012-05-12
1
-1/+1
*
Issue #14662: Prevent shutil failures on OS X when destination does not
Ned Deily
2012-05-11
3
-2/+37
*
Issue #14157: Fix time.strptime failing without a year on February 29th.
Antoine Pitrou
2012-05-10
3
-1/+11
*
Some nits in the pickle docs.
Antoine Pitrou
2012-05-10
1
-21/+23
*
Removed outdated statement about pickle's and marshal's relative performance.
Antoine Pitrou
2012-05-10
1
-8/+0
*
#14763: document default maxsplit value for str.split.
Ezio Melotti
2012-05-10
1
-2/+2
*
Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is...
Jesus Cea
2012-05-10
4
-2/+6
*
Issue #14761: Fix potential leak on an error case in the import machinery.
Antoine Pitrou
2012-05-09
3
-1/+5
*
Improve the grammar of a non-sentence.
R David Murray
2012-05-09
1
-2/+2
*
fix possible refleak (closes #14752)
Benjamin Peterson
2012-05-08
1
-2/+4
*
Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.
Larry Hastings
2012-05-08
1
-0/+1
*
remove basically bitrotted XXXs
Benjamin Peterson
2012-05-08
1
-9/+0
*
Issue #14741: Fix missing support for ellipsis in parser module.
Mark Dickinson
2012-05-07
3
-5/+5
*
Issue #14697: Fix missing parser module support for set displays and set comp...
Mark Dickinson
2012-05-07
3
-21/+105
*
Issue #14701: Add missing support for 'raise ... from' in parser module.
Mark Dickinson
2012-05-07
3
-12/+21
*
Fix issue number in Misc/NEWS.
Mark Dickinson
2012-05-07
1
-1/+1
*
Fix document title for Sphinx.
Georg Brandl
2012-05-06
1
-3/+3
*
Issue #14965: Fix missing support for starred assignments in Tools/parser/unp...
Mark Dickinson
2012-05-06
3
-0/+17
*
#14034: fix indentation.
Ezio Melotti
2012-05-06
1
-78/+78
*
#14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe.
Ezio Melotti
2012-05-06
5
-0/+777
*
#13183: backport fixes to test_pdb to 3.2 branch
Georg Brandl
2012-05-06
1
-2/+5
*
Fix for issue 14725 for 3.2 branch
Richard Oudkerk
2012-05-05
3
-1/+22
*
Fix test connecting to sha256.tbs-internet.com.
Antoine Pitrou
2012-05-04
2
-114/+119
*
close() doesn't take any args (closes #14717)
Benjamin Peterson
2012-05-03
1
-1/+1
*
Changed order of cleanup operations to be more sensible.
Vinay Sajip
2012-05-03
1
-1/+1
*
os.popen().close() returns None on success, not 0...
Charles-François Natali
2012-05-02
1
-1/+1
*
Issue #14698: Make test_posix more robust when the current UID doesn't have an
Charles-François Natali
2012-05-02
1
-2/+7
*
fix windows test failure - issue13183
Senthil Kumaran
2012-05-02
1
-1/+1
*
fix calling the classmethod descriptor directly (closes #14699)
Benjamin Peterson
2012-05-01
3
-3/+59
*
issue13183 - Fix pdb skipping frames after hitting a breakpoint and running s...
Senthil Kumaran
2012-05-01
3
-1/+68
*
Issue #10433: Document unique behavior of 'os.getgroups' on Mac OS X.
Ned Deily
2012-04-30
1
-0/+18
*
#14558: document the module, argv, and testLoader args of unittest.main.
Ezio Melotti
2012-04-30
1
-7/+15
*
Issue11352 - Update cgi module docs
Senthil Kumaran
2012-04-30
1
-7/+10
*
Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed.
Martin v. Löwis
2012-04-30
2
-1/+7
*
fixed test_imaplib failure on Win
Alexander Belopolsky
2012-04-29
1
-1/+5
*
Issue #14696: Fix parser module to understand 'nonlocal' declarations.
Mark Dickinson
2012-04-29
3
-5/+48
*
Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near
Alexander Belopolsky
2012-04-29
5
-15/+45
[next]