A simple library for merging two strings with respect to a base one, performing three-way string merge. Current version: 0.1.1 (stable, minor bug fixes). No regular release cadence; developed by Spyder IDE.
pip install three-mergeVerified import paths — ran on the pinned version, not inferred.
Merges strings a and b with respect to base, handling conflicts.
Wrap in try-except: from three_merge import MergeConflict; try: result = merge(...); except MergeConflict as e: ...
Always use latest version (0.1.1) to avoid known bugs.
Import with underscore: import three_merge
Import it explicitly: from three_merge import MergeConflict
Use: from three_merge import merge
No dependency data recorded yet.