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
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%.
Walter Dörwald
2003-12-11
3
-27/+54
*
Move list and tuple tests from test_types.py to their own scripts:
Walter Dörwald
2003-12-08
7
-514/+696
*
Implement itertools.groupby()
Raymond Hettinger
2003-12-06
1
-1/+107
*
Remove extra copy of test_key_with_exception that somehow appeared
Michael W. Hudson
2003-12-04
1
-7/+0
*
Fixes and tests for various "holding pointers when arbitrary Python code
Michael W. Hudson
2003-12-04
1
-0/+45
*
Typo repair; added some comments and horizontal whitespace.
Tim Peters
2003-12-04
1
-9/+10
*
Fix test_unicode_file errors on platforms without Unicode file support,
Mark Hammond
2003-12-03
2
-19/+27
*
Add parameters indent, width and depth to pprint.pprint() and pprint.pformat()
Walter Dörwald
2003-12-03
1
-0/+6
*
Patch #750542: pprint now will pretty print subclasses of list, tuple
Walter Dörwald
2003-12-03
1
-4/+39
*
Reduce the size of Big String and Big Binary tests to 2**14 (minus one
Guido van Rossum
2003-12-03
1
-2/+2
*
Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with
Mark Hammond
2003-12-03
2
-78/+148
*
Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be
Mark Hammond
2003-12-03
1
-0/+21
*
As discussed on python-dev, added two extractor functions to the
Raymond Hettinger
2003-12-01
1
-0/+39
*
Add testcases for _winreg segfault (SF 851056).
Guido van Rossum
2003-11-30
1
-1/+3
*
Fix a bug discovered by Kalle Svensson: comparing sys.maxint to
Guido van Rossum
2003-11-29
1
-1/+1
*
- Removed FutureWarnings related to hex/oct literals and conversions
Guido van Rossum
2003-11-29
5
-58/+49
*
Make sure the list.sort's decorate step unwinds itself before returning
Raymond Hettinger
2003-11-28
1
-0/+7
*
Add optional fillchar argument to ljust(), rjust(), and center() string methods.
Raymond Hettinger
2003-11-26
1
-3/+3
*
* Checkin remaining documentation
Raymond Hettinger
2003-11-24
1
-14/+59
*
test_guess_all_types(): Use a more robust test for checking that
Barry Warsaw
2003-11-23
1
-4/+7
*
* Simplify hash function and add test to show effectiveness of the hash
Raymond Hettinger
2003-11-23
1
-13/+72
*
Extend temporary hashability to remove() and discard().
Raymond Hettinger
2003-11-22
1
-0/+10
*
Allow temporary hashability for the __contains__ test.
Raymond Hettinger
2003-11-21
1
-0/+2
*
issubset() and issuperset() to work with general iterables
Raymond Hettinger
2003-11-21
1
-0/+4
*
test_applesingle is an expected skip almost anywhere.
Guido van Rossum
2003-11-20
1
-29/+40
*
SF bug 839548: Bug in type's GC handling causes segfaults.
Tim Peters
2003-11-20
1
-0/+205
*
test_applesingle is an expected skip on Win32
Raymond Hettinger
2003-11-20
1
-0/+1
*
Fix for [ 765456 ]: testAFakeZlib failed on platforms that use a
Just van Rossum
2003-11-18
1
-0/+7
*
Test the applesingle decoder.
Jack Jansen
2003-11-18
1
-0/+72
*
Various fixups (most suggested by Armin Rigo).
Raymond Hettinger
2003-11-17
1
-0/+25
*
* Migrate set() and frozenset() from the sandbox.
Raymond Hettinger
2003-11-16
12
-36/+1206
*
subtype_dealloc(): A more complete fix for critical bug 840829 +
Tim Peters
2003-11-13
1
-0/+19
*
Patch #839877: Remove unused lambda expression.
Martin v. Löwis
2003-11-13
1
-4/+0
*
SF bug 840829: weakref callbacks and gc corrupt memory.
Tim Peters
2003-11-12
1
-0/+20
*
Improve the implementation of itertools.tee().
Raymond Hettinger
2003-11-12
1
-24/+31
*
Update test to handle list.__reversed__().
Raymond Hettinger
2003-11-08
1
-0/+1
*
Convert heapq.py to a C implementation.
Raymond Hettinger
2003-11-08
1
-1/+0
*
Overallocate target buffer for normalization more early. Fixes #834676.
Martin v. Löwis
2003-11-06
1
-0/+3
*
Implement and apply PEP 322, reverse iteration
Raymond Hettinger
2003-11-06
1
-1/+19
*
* Use weakref's of DBCursor objects for the iterator cursors to avoid a
Gregory P. Smith
2003-11-03
1
-3/+76
*
* Fix the singlethreaded deadlocks occurring in the simple bsddb interface.
Gregory P. Smith
2003-11-02
1
-1/+52
*
Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2.
Martin v. Löwis
2003-10-31
1
-0/+4
*
Update test to include "sorted" in dir(list).
Raymond Hettinger
2003-10-29
1
-1/+2
*
Add list.sorted() classmethod.
Raymond Hettinger
2003-10-29
1
-0/+58
*
Deleting cyclic object comparison.
Armin Rigo
2003-10-28
4
-69/+43
*
Replace the window() example with pairwise() which demonstrates tee().
Raymond Hettinger
2003-10-26
1
-13/+10
*
Minor improvements to itertools.tee():
Raymond Hettinger
2003-10-26
1
-0/+12
*
Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().
Walter Dörwald
2003-10-24
1
-0/+12
*
Added itertools.tee()
Raymond Hettinger
2003-10-24
1
-61/+130
*
Patch #813200: Quote executable path on Windows. Fixes #811082.
Martin v. Löwis
2003-10-23
1
-2/+10
[next]