Links
AI / Agents
gdtest-source-title
Tests source.placement: title config.
Tests source.placement: ‘title’ (vs. default ‘usage’). Source code links should appear near the title/heading of each API entry, not in the usage section. Two functions (compress, decompress).
Source files
gdtest_source_title/
__init__.py
"""Package testing source.placement title config."""
__version__ = "0.1.0"
__all__ = ["compress", "decompress"]
def compress(data: bytes) -> bytes:
"""
Compress binary data.
Parameters
----------
data
The data to compress.
Returns
-------
bytes
The compressed data.
"""
return data
def decompress(data: bytes) -> bytes:
"""
Decompress binary data.
Parameters
----------
data
The data to decompress.
Returns
-------
bytes
The decompressed data.
"""
return dataREADME.md
# gdtest-source-title Tests source.placement: title config.
great-docs.yml
source: placement: title