Exemplo n.º 1
0
def test_temporary_attribute_value():
    class O(object):
        def __init__(self):
            self.foobar = 0

    o = O()

    with util.temporary_attribute_value(o, "foobar", 42):
        assert o.foobar == 42
    assert o.foobar == 0
Exemplo n.º 2
0
Arquivo: compiler.py Projeto: koo5/hy
 def is_returnable(self, v):
     return temporary_attribute_value(self, "returnable", v)
Exemplo n.º 3
0
 def is_returnable(self, v):
     return temporary_attribute_value(self, "returnable", v)