summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bigmem.py
Commit message (Collapse)AuthorAgeFilesLines
* Text files missing the SVN eol-style property.Tim Peters2006-05-161-964/+964
|
* Some style fixes and size-calculation fixes. Also do the small-memory runThomas Wouters2006-04-271-16/+21
| | | | | using a prime number, rather than a convenient power-of-2-and-multiple-of-5, so incorrect testing algorithms fail more easily.
* Some more size-estimate fixes, for large-list-tests.Thomas Wouters2006-04-271-2/+2
|
* Some more test-size-estimate fixes: test_append and test_insert trigger aThomas Wouters2006-04-261-3/+7
| | | | list resize, which overallocates.
* Add tests for += and *= on strings, and fix the memory-use estimate for theThomas Wouters2006-04-261-3/+37
| | | | list.extend tests (they were estimating half the actual use.)
* Whitespace normalization.Tim Peters2006-04-261-921/+921
|
* The result of SF patch #1471578: big-memory tests for strings, lists andThomas Wouters2006-04-261-0/+921
tuples. Lots to be added, still, but this will give big-memory people something to play with in 2.5 alpha 2, and hopefully get more people to write these tests.