From e650c09674f8841ea30bebc4ad50d528f4ef6378 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Mon, 17 Aug 2009 15:07:10 -0400 Subject: [PATCH] fixed plural6 for the last fucking time --- examples/plural6.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/plural6.py b/examples/plural6.py index 14facad..004f57e 100755 --- a/examples/plural6.py +++ b/examples/plural6.py @@ -19,10 +19,10 @@ class LazyRules: def __init__(self): self.pattern_file = open(self.rules_filename, encoding='utf-8') - - def __iter__(self): self.cache = [] self.cache_index = 0 + + def __iter__(self): return self def __next__(self):