MCPcopy Create free account
hub / github.com/ipython/ipython / long_function

Function long_function

IPython/core/tests/test_oinspect.py:413–417  ·  view source on GitHub ↗
(
        a_really_long_parameter: int,
        and_another_long_one: bool = False,
        let_us_make_sure_this_is_looong: Optional[str] = None,
    )

Source from the content-addressed store, hash-verified

411 from typing import Optional
412
413 def long_function(
414 a_really_long_parameter: int,
415 and_another_long_one: bool = False,
416 let_us_make_sure_this_is_looong: Optional[str] = None,
417 ) -> bool: pass
418
419 sig = oinspect._render_signature(
420 signature(long_function),

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected