Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(66)

Delta Between Two Patch Sets: Lib/test/test_set.py

Issue 602: range: lean and mean (Closed) SVN Base: http://svn.python.org/view/*checkout*/python/branches/py3k/
Left Patch Set: address more concerns Created 5 months, 1 week ago , Downloaded from: http://bugs.python.org/file10183/range_lean_and_mean5.patch
Right Patch Set: __len__ is back! Created 5 months, 1 week ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 import unittest 1 import unittest
2 from test import test_support 2 from test import test_support
3 from weakref import proxy 3 from weakref import proxy
4 import operator 4 import operator
5 import copy 5 import copy
6 import pickle 6 import pickle
7 import os 7 import os
8 from random import randrange, shuffle 8 from random import randrange, shuffle
9 import sys 9 import sys
10 import warnings 10 import warnings
(...skipping 1748 matching lines...) Show 10 above Show 10 below
1759 import gc 1759 import gc
1760 counts = [None] * 5 1760 counts = [None] * 5
1761 for i in range(len(counts)): 1761 for i in range(len(counts)):
1762 test_support.run_unittest(*test_classes) 1762 test_support.run_unittest(*test_classes)
1763 gc.collect() 1763 gc.collect()
1764 counts[i] = sys.gettotalrefcount() 1764 counts[i] = sys.gettotalrefcount()
1765 print(counts) 1765 print(counts)
1766 1766
1767 if __name__ == "__main__": 1767 if __name__ == "__main__":
1768 test_main(verbose=True) 1768 test_main(verbose=True)
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld r338