Links
AI / Agents
Config Combo E
Tests source.branch=develop, source.path=lib, parser=sphinx, and changelog.
Source files
gdtest_config_combo_e/
__init__.py
"""Config combo E — source.branch, source.path, parser=sphinx, changelog."""
__version__ = "0.1.0"
__all__ = ["connect", "disconnect", "send", "receive"]
def connect(host: str, port: int = 8080) -> bool:
"""
Connect to a remote host.
:param host: The hostname or IP address.
:type host: str
:param port: The port number (default 8080).
:type port: int
:returns: True if connected successfully.
:rtype: bool
"""
return True
def disconnect() -> None:
"""
Disconnect from the remote host.
:returns: None
"""
pass
def send(data: bytes) -> int:
"""
Send data to the remote host.
:param data: The bytes to send.
:type data: bytes
:returns: Number of bytes sent.
:rtype: int
"""
return len(data)
def receive(max_bytes: int = 1024) -> bytes:
"""
Receive data from the remote host.
:param max_bytes: Maximum bytes to receive.
:type max_bytes: int
:returns: The received bytes.
:rtype: bytes
"""
return b""CHANGELOG.md
# Changelog ## [0.1.0] - 2026-01-15 ### Added - Initial release. - Connection management functions.
README.md
# Config Combo E Tests source.branch=develop, source.path=lib, parser=sphinx, and changelog.
great-docs.yml
parser: sphinx source: branch: develop path: lib changelog: CHANGELOG.md