Links
AI / Agents
gdtest-jupyter-kernel
Tests jupyter: python3 config.
Tests jupyter: ‘python3’ explicit kernel config. Doesn’t change behavior for non-notebook builds but exercises the config path. Two functions (compute, evaluate).
Source files
gdtest_jupyter_kernel/
__init__.py
"""Package testing jupyter python3 config."""
__version__ = "0.1.0"
__all__ = ["compute", "evaluate"]
def compute(x: float, y: float) -> float:
"""
Compute the sum of two numbers.
Parameters
----------
x
The first number.
y
The second number.
Returns
-------
float
The sum of x and y.
"""
return x + y
def evaluate(expr: str) -> float:
"""
Evaluate a mathematical expression string.
Parameters
----------
expr
The expression to evaluate.
Returns
-------
float
The result of the evaluation.
"""
return 0.0README.md
# gdtest-jupyter-kernel Tests jupyter: python3 config.
great-docs.yml
jupyter: python3