@@ -441,6 +441,7 @@ def _add_codeblock(self, lit: CodeBlock) -> None:
441
441
)
442
442
raise ExtensionError (message , modname = "sphinx_literate" )
443
443
444
+ assert (lit is not None )
444
445
self ._blocks [key ] = lit
445
446
446
447
def _override_codeblock (self , lit : CodeBlock , relation_to_prev : str ):
@@ -459,9 +460,11 @@ def _override_codeblock(self, lit: CodeBlock, relation_to_prev: str):
459
460
# Add to the list of block with no parent, even though the
460
461
# relation_to_prev is not NEW. This will be addressed when
461
462
# resolving missings.
463
+ assert (lit is not None )
462
464
self ._blocks [lit .key ] = lit
463
465
lit .prev = None
464
466
elif existing .tangle_root != lit .tangle_root :
467
+ assert (lit is not None )
465
468
self ._blocks [lit .key ] = lit
466
469
lit .prev = existing
467
470
else :
@@ -479,7 +482,6 @@ def merge(self, other: CodeBlockRegistry) -> None:
479
482
defined before the other one (matters when resolving missing blocks).
480
483
The other registry must no longer be used after this.
481
484
"""
482
- X = next (iter (other ._blocks .values ()))
483
485
# Merge tangle hierarchies
484
486
for h in other ._hierarchy .values ():
485
487
self .set_tangle_parent (h .root , h .parent , h .source_location , h .fetch_files )
@@ -511,6 +513,9 @@ def try_fixing_all_missing(self):
511
513
# If found, register it as previous literate block
512
514
if existing :
513
515
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 )
514
519
child_lit .prev = existing
515
520
else :
516
521
new_missing_list .append (missing )
@@ -724,6 +729,8 @@ def check_integrity(self, allow_missing=False):
724
729
bb = b
725
730
while bb is not None :
726
731
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 } " )
727
734
assert (bb .key in missing_by_key )
728
735
assert (missing_by_key [bb .key ].relation_to_prev == bb .relation_to_prev )
729
736
bb = bb .next
0 commit comments