Show revisions

GroupDocs.Comparison for Python via .NET lets you toggle the visibility of revisions in the output document.

Hide revisions in the result

Turn off revision display to simplify the output document.

import groupdocs.comparison as gc

with gc.Comparer("source.docx") as comparer:
    comparer.add("target.docx")
    options = gc.CompareOptions()
    options.show_revisions = False
    comparer.compare("result.docx", options)

🔹 Use case: Produce a clean deliverable without inline revision markers for end users.

The result is as follows:

Disable display Revisions
Close
Loading

Analyzing your prompt, please hold on...

An error occurred while retrieving the results. Please refresh the page and try again.