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
*
Oops. Really fix the indentation problem this time.
Jeremy Hylton
2003-09-10
1
-13/+13
*
Fix inconsistent mix of tabs and spaces that caused test to fail.
Jeremy Hylton
2003-09-10
1
-5/+4
*
display link to module docs when it looks like the object module is a core
Skip Montanaro
2003-09-10
1
-1/+47
*
Python Bug 775061
Kurt B. Kaiser
2003-09-10
3
-97/+2
*
Add an example to address a common question of how to split iterators.
Raymond Hettinger
2003-09-08
1
-4/+30
*
Set the warnings stacklevel to two.
Raymond Hettinger
2003-09-08
1
-2/+2
*
SF bug 801631: file.truncate fault on windows.
Tim Peters
2003-09-07
1
-0/+28
*
**kwds arg was missing from __init__ for Dict{Reader,Writer} classes.
Skip Montanaro
2003-09-06
2
-4/+11
*
SF bug #801342: Bug (documentation or real, your choice) in random.sample.
Raymond Hettinger
2003-09-06
2
-0/+14
*
SF bug #800796: Difference between hash() and __hash__()
Raymond Hettinger
2003-09-05
1
-0/+5
*
Patch #798145: Return correct information from nl_langinfo(RADIXCHAR).
Martin v. Löwis
2003-09-04
1
-0/+34
*
Catch locale.error as well. Fixes #788378. Will backport to 2.3.
Martin v. Löwis
2003-09-03
1
-1/+1
*
test_get_param_with_semis_in_quotes(): Test case for SF bug #794466.
Barry Warsaw
2003-09-03
1
-0/+7
*
A fix for parsing parameters when there are semicolons inside the
Barry Warsaw
2003-09-03
1
-1/+18
*
use the long names for re compilation options; this makes it easier to
Fred Drake
2003-09-02
1
-1/+1
*
Modernize code a bit: use isinstance instead of type(); return True/False
Andrew M. Kuchling
2003-09-02
1
-4/+7
*
[Patch #759208] Fix has_key emulation to not raise KeyError
Andrew M. Kuchling
2003-09-02
1
-1/+3
*
Only apply case-insensitivity test on appropriate platforms.' test_filecmp.py
Raymond Hettinger
2003-09-02
1
-2/+6
*
SF bug #453515: filecmp.dircmp case sensitivity bug
Raymond Hettinger
2003-09-02
2
-8/+12
*
SF 798269: bug fix for doctest (sf bug id: 798254
Raymond Hettinger
2003-09-02
1
-2/+3
*
SF patch #736962: Port tests to unittest (Part 2)
Raymond Hettinger
2003-09-02
1
-12/+90
*
SF patch #790443: add SafeConfigParser to __all__
Raymond Hettinger
2003-09-01
1
-1/+1
*
SF bug #785222: zlib monotonic test
Raymond Hettinger
2003-08-31
1
-11/+0
*
SF patch #736962: Port tests to unittest
Raymond Hettinger
2003-08-30
5
-33/+145
*
SF bug 797650: Infinite loop in textwrap.py
Raymond Hettinger
2003-08-30
2
-1/+11
*
Eliminate unnecessary eval() in tests
Raymond Hettinger
2003-08-30
1
-19/+18
*
SF bug #793826: using itertools.izip to mutate tuples
Raymond Hettinger
2003-08-29
1
-1/+32
*
Rework previous fix slightly; the &0x20 test seems useless, and the isprint()...
Andrew M. Kuchling
2003-08-29
1
-4/+2
*
Add tests for meta- bit set
Andrew M. Kuchling
2003-08-29
1
-1/+4
*
[Bug #790356] unctrl() doesn't work for full printable charset. Fix by Dave ...
Andrew M. Kuchling
2003-08-29
1
-0/+2
*
Add simple unit test for ascii.unctrl() function
Andrew M. Kuchling
2003-08-29
1
-0/+13
*
[Bug #776542] open_https() generates a bad Authorization header because it ca...
Andrew M. Kuchling
2003-08-29
1
-1/+1
*
Make sure parentheses are escaped when used in the format string.
Brett Cannon
2003-08-29
2
-1/+10
*
Support DBEnv.set_shm_key() to allow multi-threaded multi-process
Gregory P. Smith
2003-08-28
1
-0/+2
*
Fix SF bug [ 788011 ] compiler.compileFile fails on csv.py
Jeremy Hylton
2003-08-28
1
-1/+6
*
Fix typo in docstring: The switch is '-x', not '-s'.
Thomas Heller
2003-08-27
1
-1/+1
*
Remove a typo. (Or is this some markup I don't understand? ;-)
Thomas Heller
2003-08-27
1
-1/+1
*
SF bug #795506: Wrong handling of string format code for float values.
Raymond Hettinger
2003-08-27
1
-0/+1
*
test_largefile can leave its temp file open if one of many tests fail. On
Jason Tishler
2003-08-26
1
-73/+81
*
Bump the version number for the standalone mimelib package.
Barry Warsaw
2003-08-19
1
-1/+1
*
test_rfc2231_no_language_or_charset_in_filename(),
Barry Warsaw
2003-08-19
1
-0/+37
*
get_param(): Update the docstring to explain how CHARSET and LANGUAGE
Barry Warsaw
2003-08-19
1
-7/+12
*
decode_rfc2231(): We need to urllib.unquote() the value even if the
Barry Warsaw
2003-08-19
1
-1/+1
*
Improvements to set.py:
Raymond Hettinger
2003-08-17
2
-49/+190
*
Keep doctests in sync with the docs.
Raymond Hettinger
2003-08-16
1
-5/+5
*
Make sets.py compatible with Py2.2
Raymond Hettinger
2003-08-15
1
-1/+19
*
Make a copy of L before appending, so the global L remains
Walter Dörwald
2003-08-15
1
-4/+4
*
Fix for
Michael W. Hudson
2003-08-15
1
-0/+31
*
IDLE didn't start correctly when Python was installed in "Program Files"
Kurt B. Kaiser
2003-08-14
2
-2/+19
*
[Patch #739124] Add use_default_colors() to curses module
Andrew M. Kuchling
2003-08-13
1
-0/+3
[next]