MCPcopy Create free account
hub / github.com/quantopian/zipline / foo

Method foo

tests/utils/test_preprocess.py:186–187  ·  view source on GitHub ↗
(a, b, c)

Source from the content-addressed store, hash-verified

184
185 @expect_types(a=int, b=int)
186 def foo(a, b, c):
187 return a, b, c
188
189 self.assertEqual(foo(1, 2, 3), (1, 2, 3))
190 self.assertEqual(foo(1, 2, c=3), (1, 2, 3))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected