Skip to content

Commit e84da20

Browse files
committed
Upgrade chapter Loading from a file
1 parent 3a96836 commit e84da20

File tree

7 files changed

+410
-57
lines changed

7 files changed

+410
-57
lines changed

_extensions/sphinx_literate/registry.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ def _add_codeblock(self, lit: CodeBlock) -> None:
441441
)
442442
raise ExtensionError(message, modname="sphinx_literate")
443443

444+
assert(lit is not None)
444445
self._blocks[key] = lit
445446

446447
def _override_codeblock(self, lit: CodeBlock, relation_to_prev: str):
@@ -459,9 +460,11 @@ def _override_codeblock(self, lit: CodeBlock, relation_to_prev: str):
459460
# Add to the list of block with no parent, even though the
460461
# relation_to_prev is not NEW. This will be addressed when
461462
# resolving missings.
463+
assert(lit is not None)
462464
self._blocks[lit.key] = lit
463465
lit.prev = None
464466
elif existing.tangle_root != lit.tangle_root:
467+
assert(lit is not None)
465468
self._blocks[lit.key] = lit
466469
lit.prev = existing
467470
else:
@@ -479,7 +482,6 @@ def merge(self, other: CodeBlockRegistry) -> None:
479482
defined before the other one (matters when resolving missing blocks).
480483
The other registry must no longer be used after this.
481484
"""
482-
X = next(iter(other._blocks.values()))
483485
# Merge tangle hierarchies
484486
for h in other._hierarchy.values():
485487
self.set_tangle_parent(h.root, h.parent, h.source_location, h.fetch_files)
@@ -511,6 +513,9 @@ def try_fixing_all_missing(self):
511513
# If found, register it as previous literate block
512514
if existing:
513515
child_lit = self.get_by_key(missing.key)
516+
if child_lit.prev is not None:
517+
print(f"ERROR! Block '{missing.key}' already has a prev block!")
518+
assert(child_lit.prev is None)
514519
child_lit.prev = existing
515520
else:
516521
new_missing_list.append(missing)
@@ -724,6 +729,8 @@ def check_integrity(self, allow_missing=False):
724729
bb = b
725730
while bb is not None:
726731
if bb.prev is None and bb.relation_to_prev != 'NEW':
732+
if bb.key not in missing_by_key:
733+
print(f"bb.key = {bb.key}")
727734
assert(bb.key in missing_by_key)
728735
assert(missing_by_key[bb.key].relation_to_prev == bb.relation_to_prev)
729736
bb = bb.next

appendices/debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Debugging (🚧WIP)
1+
Debugging (<span class="bullet">🟠</span>WIP)
22
=========
33

44
It is important to get familiar with some basic debugging tips as early as possible.

0 commit comments

Comments
 (0)