Coding style.

More consistent leading underscores.
This commit is contained in:
Andrew Hamilton 2016-02-15 14:11:08 +00:00
parent 736dd3a701
commit 4919a1ed2a
10 changed files with 134 additions and 132 deletions

View file

@ -14,7 +14,7 @@ class CacheFirstResultTestCase(unittest.TestCase):
def test_cache_first_result_decorator(self):
class A:
@termstr.cache_first_result
@termstr._cache_first_result
def a(self, foo):
return foo
a = A()
@ -22,7 +22,7 @@ class CacheFirstResultTestCase(unittest.TestCase):
self.assertEqual(a.a(4), 3)
class B:
@termstr.cache_first_result
@termstr._cache_first_result
def b(self, foo):
return foo
b = B()