diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-24 16:32:07 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-24 16:32:07 -0500 |
| commit | 219018602f817bffedbb3d157fd9267d21f97098 (patch) | |
| tree | f940ea51e3be586686fa456d790a581959e64d03 /modules/prog-python.el | |
| parent | 61dad3bd7b327eb0cf5bb3a6a0421a7055ed126b (diff) | |
| download | dotemacs-219018602f817bffedbb3d157fd9267d21f97098.tar.gz dotemacs-219018602f817bffedbb3d157fd9267d21f97098.zip | |
docs(load-graph): classify programming modules
Sixth classification batch: prog-general plus the language modules — prog-c, prog-go, prog-lisp, prog-python, prog-webdev, prog-json, prog-yaml, prog-shell, prog-training. I annotated each header, added a Batch 6 table to the inventory, and extended the validation allowlist. 52 of 102 modules are now classified.
prog-general owns the shared defaults and tree-sitter/LSP policy and stays eager. The language modules are eager only by init order and should load by major mode, so they're tagged Phase 6 deferral candidates. prog-shell's after-save executable hook is the one side effect worth scoping. No new hidden dependencies.
Diffstat (limited to 'modules/prog-python.el')
| -rw-r--r-- | modules/prog-python.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/prog-python.el b/modules/prog-python.el index 5f9a4175..d8556c4d 100644 --- a/modules/prog-python.el +++ b/modules/prog-python.el @@ -2,6 +2,17 @@ ;; author Craig Jennings <c@cjennings.net> ;;; Commentary: +;; +;; Layer: 3 (Domain Workflow). +;; Category: D/P. +;; Load shape: eager. +;; Eager reason: none necessary; currently eager but should load by Python major +;; mode (Phase 6 deferral candidate). +;; Top-level side effects: package configuration via use-package; warns at load +;; if pyright is missing. +;; Runtime requires: system-lib. +;; Direct test load: yes. +;; ;; Python programming environment with LSP, tree-sitter, and formatting. ;; ;; Installation: |
