apply-edit-block
Apply search/replace edit blocks from coding agents to source text, with a fallback ladder for near-exact matches. This is the Python port of the JavaScript apply-edit-block package.
The problem
Coding agents (and the humans steering them) emit edits as a block of "find this text, replace it with this text." The search text is almost never byte-exact: the model drops trailing whitespace, reindents a block, paraphrases a comment, or gets one word wrong in an otherwise correct match. Aider, Cline, Roo, Continue, and a pile of homegrown tools each reimplement their own ladder of fallback matching strategies to cope with this, usually as a tangle of regexes buried inside a larger apply-patch function. There are a handful of small competing packages for this and no clear winner, and none of them report which strategy actually matched so callers can log and tune it.
This package is that ladder, pulled out on its own. It matches search text against source text using five strategies of decreasing strictness, applies the replacement, and reports which strategy it used and how confident the match was. It does the matching only: no filesystem access, no git, no diff generation.
Install
pip install apply-edit-block
Usage
from apply_edit_block import apply_edit, apply_edits, parse_blocks, similarity
source = '''function greet(name):
print("hi " + name)
'''
# The model dropped a trailing space, but the exact strategy still
# finds it via the fallback ladder.
edit = {
"search": ' print("hi " + name) ',
"replace": ' print(f"hi {name}")',
}
result = apply_edit(source, edit)
print(result.strategy) # 'trailing-ws'
print(result.text)
# function greet(name):
# print(f"hi {name}")
# Parse the conventional fenced format agents emit and apply every block.
patch = '''
<<<<<<< SEARCH
print("hi " + name)
=======
print(f"hi {name}")
>>>>>>> REPLACE
'''
edits = parse_blocks(patch)
multi = apply_edits(source, edits)
print(multi.ok, multi.applied) # True 1
# similarity() is the same scoring function 'fuzzy' uses internally.
print(similarity("a\nb\nc", "a\nb\nz")) # 0.6666666666666666
API
apply_edit(source, edit, *, anchor_slack=2, threshold=0.85) -> EditResult
source: str- the full file contents.edit- anEditdataclass, or a dict withsearch: strandreplace: strkeys.anchor_slack: int(default2) - for the'anchor'strategy, how far the source's line gap between the first/last non-empty search lines may differ from the search's.threshold: float(default0.85) - for the'fuzzy'strategy, the minimum similarity score required to accept a window.- Returns an
EditResult, a frozen dataclass:@dataclass(frozen=True) class EditResult: ok: bool text: str # edited source on success, ORIGINAL source on failure strategy: Optional[str] # 'exact' | 'trailing-ws' | 'indent' | 'anchor' | 'fuzzy' | 'empty-search' | None similarity: float # 1 on exact match; best similarity found otherwise (0..1) start: int # char offset of match start in the original source, -1 on failure end: int # char offset of match end (exclusive) in the original source, -1 on failure
- Raises
TypeErroronly ifsourceor the edit'ssearchis not a string. A failed match never raises; it returnsok=False. - An empty
searchstring means "prependreplaceto the file":ok=True,strategy='empty-search',start=0,end=0.
The strategies are tried in this order, stopping at the first success:
exact- plain substring search.trailing-ws- line-by-line comparison with trailing whitespace stripped from every line on both sides.indent- line-by-line comparison with each line's leading whitespace stripped. On success, the indent delta (the matched source line's indentation minus the search's first line's indentation) is applied to every line of the replacement: add spaces for a positive delta, strip up to that many leading spaces for a negative one. Blank replacement lines are left blank.anchor- matches only on the first and last non-empty lines ofsearch, and requires the line gap between them in the source to be withinanchor_slackof the search's gap. Useful when an interior line was paraphrased.fuzzy- slides a window the size ofsearch's line count over the source and scores each window withsimilarity(); the best-scoring window is accepted if its score is at leastthreshold.
On failure, similarity reports the best score fuzzy saw while sliding, so callers can tune threshold.
apply_edits(source, edits, *, anchor_slack=2, threshold=0.85) -> MultiResult
Applies a list of edits in order, each to the output of the previous one.
@dataclass(frozen=True)
class MultiResult:
ok: bool
text: str
results: List[EditResult]
applied: int
ok is true only if every edit applied. On the first failure it stops immediately: text is the source as of the last successful edit, results holds one EditResult per edit attempted (including the failing one), and applied is the count that succeeded.
parse_blocks(text) -> List[Edit]
Parses the conventional fenced format:
<<<<<<< SEARCH
old code
=======
new code
>>>>>>> REPLACE
Marker lines are matched by prefix (<{3,}, ={3,}, >{3,}), so 3 or more marker characters and trailing text on the marker line (<<<<<<< SEARCH, ======= divider) are both tolerated. Text outside a block is ignored. Returns [] when there are no blocks. A block that opens but never closes (no matching >>>>>>> line before the text ends, or before a new <<<<<<< line starts another block) is skipped, not treated as an error.
Returns a list of Edit dataclass instances (not dicts):
@dataclass(frozen=True)
class Edit:
search: str
replace: str
Edit instances and plain {"search": ..., "replace": ...} dicts are interchangeable everywhere an edit argument is accepted, so the output of parse_blocks can be passed straight into apply_edit / apply_edits, and so can your own dicts.
similarity(a, b) -> float
Normalized line-level similarity between two strings, 0..1. This is the exact function the 'fuzzy' strategy uses internally, exported so callers can score candidate matches themselves or tune threshold against real data.
How it works
similarity() splits both strings on \n and computes the longest common subsequence (LCS) of the two line arrays, using exact string equality per line, then divides by the length of the longer array. This is a classic O(n*m) dynamic-programming LCS, not a character-level edit distance. That tradeoff is deliberate: it is cheap to reason about and it is what makes the 'fuzzy' strategy tolerate one bad line out of ten (LCS of 9, divided by 10, is 0.9) without needing a fuzzy string-distance library.
The tradeoff has a real limit: a line that differs by even one character (extra indentation, a changed variable name, a dropped semicolon) counts as a total non-match for that line in the LCS, since comparison is exact-string, not per-character. That is why 'indent' and 'trailing-ws' exist as their own strategies rather than being folded into 'fuzzy': they normalize a specific, common kind of per-line noise before comparing, so a whole block that only differs in leading or trailing whitespace still counts as fully matched rather than scoring low on similarity.
The 'anchor' strategy is the loosest exact-match strategy: it trusts only the first and last non-empty lines of search and a line-count budget for what's in between, so it can survive a paraphrased comment or a rewritten line in the middle of an otherwise-recognizable block. It does not use similarity at all.
All offsets (start, end) are character indices into the original source string that was passed in, and end is exclusive, so source[start:end] is always the exact text that was replaced.
This module has zero runtime dependencies and is a single file (apply_edit_block.py).
The original JavaScript version, with the same behavior, lives at the repository root: ../index.js.
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apply_edit_block-0.1.0.tar.gz.
File metadata
- Download URL: apply_edit_block-0.1.0.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dffc0129de5077937d82008780aeed7d22a13709efe8901dbe0e82ed5299b861
|
|
| MD5 |
5e1fad79cac8caba45f95e60006b7443
|
|
| BLAKE2b-256 |
4cb771f5eaeceb536cf62e4e6b981c5a7957f116e178dea83032d39912265966
|
File details
Details for the file apply_edit_block-0.1.0-py3-none-any.whl.
File metadata
- Download URL: apply_edit_block-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3361d9453fc0d0f7d90b9bb05de365c60ac724721114f2a72cdbca4216081ddf
|
|
| MD5 |
4349ef69a8e20d0931891f049b368511
|
|
| BLAKE2b-256 |
6de58853e12320d8ff81486627c99688ba7e078eb20f6dce4575bffc31ba7b45
|