MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / Foo

Class Foo

test/base/test_utils.py:3085–3089  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3083class GenericReprTest(fixtures.TestBase):
3084 def test_all_positional(self):
3085 class Foo:
3086 def __init__(self, a, b, c):
3087 self.a = a
3088 self.b = b
3089 self.c = c
3090
3091 eq_(util.generic_repr(Foo(1, 2, 3)), "Foo(1, 2, 3)")
3092

Calls

no outgoing calls