File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""GCF decoder: parses GCF text back into a Payload."""
22
3+ from __future__ import annotations
4+
35from .constants import KIND_EXPAND
46from .types import Edge , Payload , Symbol
57
Original file line number Diff line number Diff line change 11"""GCF encoder: serializes Payload into GCF text format."""
22
3+ from __future__ import annotations
4+
35from .constants import KIND_ABBREV
46from .types import Payload , Symbol
57
Original file line number Diff line number Diff line change 11"""GCF generic encoder: serializes arbitrary Python values into GCF tabular format."""
22
3+ from __future__ import annotations
4+
35from typing import Any
46
57
Original file line number Diff line number Diff line change 11"""Session-based deduplication for GCF encoding."""
22
3+ from __future__ import annotations
4+
35import threading
46
57from .constants import KIND_ABBREV
Original file line number Diff line number Diff line change 11"""Data types for GCF payloads."""
22
3+ from __future__ import annotations
4+
35from dataclasses import dataclass , field
46
57
You can’t perform that action at this time.
0 commit comments