D7284: mdiff: mark diffopts as having dynamic attributes

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Nov 7 03:34:37 EST 2019


Closed by commit rHGf2f460cdb4f5: mdiff: mark diffopts as having dynamic attributes (authored by durin42).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7284?vs=17654&id=17698

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7284/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7284

AFFECTED FILES
  mercurial/mdiff.py

CHANGE DETAILS

diff --git a/mercurial/mdiff.py b/mercurial/mdiff.py
--- a/mercurial/mdiff.py
+++ b/mercurial/mdiff.py
@@ -38,6 +38,7 @@
 splitnewlines = bdiff.splitnewlines
 
 
+# TODO: this looks like it could be an attrs, which might help pytype
 class diffopts(object):
     '''context is the number of context lines
     text treats all files as text
@@ -52,6 +53,8 @@
     upgrade generates git diffs to avoid data loss
     '''
 
+    _HAS_DYNAMIC_ATTRIBUTES = True
+
     defaults = {
         b'context': 3,
         b'text': False,



To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list