/** * GENERATED FILE — DO NOT EDIT BY HAND. * * Regenerate with: * cd packages/claude-marketplace && bun run generate:python-stdlib * * Source of truth: CPython's own `sys.stdlib_module_names`, unioned across * every supported Python version (plus a short, documented list of importable * stdlib modules CPython omits from that frozenset — see the generator). * * Union is deliberate: modules come and go between releases, and a script * importing a module that only exists on an older Python is targeting that * Python, not depending on a third-party package. * * - Python 3.10 (3.10.19): 303 modules * - Python 3.11 (3.11.14): 305 modules * - Python 3.12 (3.12.12): 301 modules * - Python 3.13 (3.13.12): 290 modules * - Python 3.14 (3.14.3): 297 modules * * Total (union): 330 modules */ /** Interpreter versions whose `sys.stdlib_module_names` produced this list. */ export declare const PYTHON_STDLIB_SOURCE_VERSIONS: readonly string[]; /** Sorted, de-duplicated union of standard-library module names. */ export declare const PYTHON_STDLIB_MODULE_NAMES: readonly string[]; //# sourceMappingURL=python-stdlib-modules.generated.d.ts.map