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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ...
Vinay Sajip
2007-01-08
1
-2/+2
*
Fix zero-length corner case for iterating over a mutating deque.
Raymond Hettinger
2007-01-08
1
-0/+6
*
Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181.
Peter Astrand
2007-01-07
1
-3/+4
*
Re-implemented fix for #1531862 once again, in a way that works with Python 2...
Peter Astrand
2007-01-07
1
-2/+6
*
[Patch #1520904] Fix bsddb tests to write to the temp directory instead of th...
Andrew M. Kuchling
2007-01-05
11
-14/+17
*
[Bug #1622533] Make docstrings raw strings because they contain control chara...
Andrew M. Kuchling
2007-01-05
2
-2/+2
*
Support linking of the bsddb module against BerkeleyDB 4.5.x
Gregory P. Smith
2007-01-05
2
-3/+4
*
Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,
Martin v. Löwis
2007-01-04
1
-5/+5
*
Fix stability of heapq's nlargest() and nsmallest().
Raymond Hettinger
2007-01-04
2
-18/+14
*
Add EnvironmentVarGuard to test.test_support. Provides a context manager to
Brett Cannon
2007-01-04
1
-1/+33
*
For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing.
Raymond Hettinger
2006-12-30
1
-0/+26
*
SF bug #1623890, fix argument name in docstring
Neal Norwitz
2006-12-29
1
-1/+1
*
Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument.
Lars Gustäbel
2006-12-27
2
-0/+15
*
[Rest of patch #1182394] Add ._current() method so that we can use the writte...
Andrew M. Kuchling
2006-12-27
1
-4/+12
*
[Part of patch #1182394] Move the HMAC blocksize to be a class-level
Andrew M. Kuchling
2006-12-27
1
-3/+4
*
Patch #1262036: Prevent TarFiles from being added to themselves under
Lars Gustäbel
2006-12-23
2
-27/+20
*
Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell()
Lars Gustäbel
2006-12-23
2
-107/+164
*
Frak; this test also fails
Andrew M. Kuchling
2006-12-22
1
-7/+7
*
Darn; this test works when you run test_pty.py directly, but fails when regrt...
Andrew M. Kuchling
2006-12-22
1
-5/+5
*
[Patch #827559 from Chris Gonnerman] Make SimpleHTTPServer redirect when a di...
Andrew M. Kuchling
2006-12-22
1
-0/+6
*
[Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect;
Andrew M. Kuchling
2006-12-22
2
-1/+18
*
[Bug #776202] Apply Walter Doerwald's patch to use text mode for encoded files
Andrew M. Kuchling
2006-12-22
1
-7/+7
*
[Bug #802128 continued] Modify mode depending on the process umask.
Andrew M. Kuchling
2006-12-22
2
-6/+21
*
[Bug #802128] Make the mode argument of dumbdbm actually work the way it's
Andrew M. Kuchling
2006-12-22
2
-3/+23
*
[Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in su...
Andrew M. Kuchling
2006-12-22
1
-0/+19
*
[Apply length-checking.diff from bug #1599254]
Andrew M. Kuchling
2006-12-20
1
-2/+23
*
Testcase for patch #1484695.
Georg Brandl
2006-12-20
2
-6/+28
*
Bug #1590891: random.randrange don't return correct value for big number
Raymond Hettinger
2006-12-20
2
-1/+9
*
Patch #1484695: The tarfile module now raises a HeaderError exception
Georg Brandl
2006-12-19
1
-10/+17
*
[Patch #1587139 by kxroberto] Protect lock acquisition/release with
Andrew M. Kuchling
2006-12-19
1
-43/+56
*
[Patch #1600491 from Jim Jewett] Describe how to build help files on Windows
Andrew M. Kuchling
2006-12-19
1
-0/+3
*
[Patch #1617413 from Dug Song] Fix HTTP Basic authentication via HTTPS
Andrew M. Kuchling
2006-12-19
1
-2/+2
*
[Patch #1618455 by Ben Maurer] Improve speed of HMAC by using str.translate()
Andrew M. Kuchling
2006-12-19
1
-9/+4
*
Make sre's SubPattern objects accept slice objects like it already accepts
Thomas Wouters
2006-12-19
1
-0/+2
*
1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
Kurt B. Kaiser
2006-12-15
2
-1/+24
*
[Patch #1599256 from David Watson] check that os.fsync is available before us...
Andrew M. Kuchling
2006-12-14
1
-1/+2
*
Add test.test_support.guard_warnings_filter . This function returns a context
Brett Cannon
2006-12-13
4
-26/+29
*
Remove unneeded imports of 'warnings'.
Brett Cannon
2006-12-13
2
-2/+0
*
Remove an unneeded import of 'warnings'.
Brett Cannon
2006-12-13
1
-1/+0
*
Fix typo.
Walter Dörwald
2006-12-12
1
-1/+1
*
Patch by "cuppatea" (SF #1503765)
Vinay Sajip
2006-12-11
1
-4/+5
*
Patch by Jeremy Katz (SF #1609407)
Vinay Sajip
2006-12-11
1
-2/+2
*
Move errno imports back to individual functions.
Georg Brandl
2006-12-11
1
-2/+3
*
Patch #1608267: fix a race condition in os.makedirs() is the directory
Georg Brandl
2006-12-09
1
-3/+8
*
Add test for SF bug 1576657
Raymond Hettinger
2006-12-08
1
-0/+11
*
Fix a bad assumption that all objects assigned to '__loader__' on a module
Brett Cannon
2006-12-06
1
-1/+2
*
Patch #1610437: fix a tarfile bug with long filename headers.
Georg Brandl
2006-12-06
2
-11/+19
*
- Fix build failure on kfreebsd and on the hurd.
Matthias Klose
2006-12-03
1
-1/+1
*
Patch #1371075: Make ConfigParser accept optional dict type
Martin v. Löwis
2006-12-03
2
-8/+53
*
Move IDLE news into NEWS.txt.
Martin v. Löwis
2006-12-03
1
-0/+3
[prev]
[next]