From 3b204bfbdc1d1312a2697e7ccd01aeb862e19294 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Tue, 26 Jul 2011 09:33:47 -0700 Subject: [PATCH] Revert "adding max_amount to realistic.names generator" This is now unused code. This reverts commit 52ba1d4fbf9b3547f8fd27199cf2c4f2c59dbd45. --- s3tests/realistic.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/s3tests/realistic.py b/s3tests/realistic.py index 458fa08..3251136 100644 --- a/s3tests/realistic.py +++ b/s3tests/realistic.py @@ -137,13 +137,12 @@ def files(mean, stddev, seed=None): break yield RandomContentFile(size=size, seed=rand.getrandbits(32)) -def names(mean, stddev, charset=None, seed=None, max_amount=None): +def names(mean, stddev, charset=None, seed=None): """ Yields strings that are somewhat plausible as file names, where the lenght of each filename follows the normal distribution with `mean` and `stddev`. """ - count = 0 if charset is None: charset = string.ascii_lowercase rand = random.Random(seed) @@ -155,11 +154,6 @@ def names(mean, stddev, charset=None, seed=None, max_amount=None): name = ''.join(rand.choice(charset) for _ in xrange(length)) yield name - count += 1 - if count == max_amount: - return - - def files_varied(groups, unlimited=False): """ Yields a weighted-random selection of file-like objects. """ # Quick data type sanity.