##// END OF EJS Templates
pytype: don't warn us about ignored-on-py3 metaclasses...
Augie Fackler -
r43775:70d42e2a default
parent child Browse files
Show More
@@ -80,7 +80,7 b' def writeerr(data):'
80 80 ####################
81 81
82 82
83 class embeddedmatcher(object):
83 class embeddedmatcher(object): # pytype: disable=ignored-metaclass
84 84 """Base class to detect embedded code fragments in *.t test script
85 85 """
86 86
@@ -29,7 +29,7 b' class BundleReadException(Exception):'
29 29 pass
30 30
31 31
32 class abstractbundlestore(object):
32 class abstractbundlestore(object): # pytype: disable=ignored-metaclass
33 33 """Defines the interface for bundle stores.
34 34
35 35 A bundle store is an entity that stores raw bundle data. It is a simple
@@ -205,7 +205,7 b' def earlygetopt(args, shortlist, namelis'
205 205 return parsedopts, parsedargs
206 206
207 207
208 class customopt(object):
208 class customopt(object): # pytype: disable=ignored-metaclass
209 209 """Manage defaults and mutations for any type of opt."""
210 210
211 211 __metaclass__ = abc.ABCMeta
@@ -611,7 +611,7 b' def unquotestring(s):'
611 611 return s[1:-1]
612 612
613 613
614 class resourcemapper(object):
614 class resourcemapper(object): # pytype: disable=ignored-metaclass
615 615 """Mapper of internal template resources"""
616 616
617 617 __metaclass__ = abc.ABCMeta
@@ -31,7 +31,7 b' class TemplateNotFound(error.Abort):'
31 31 pass
32 32
33 33
34 class wrapped(object):
34 class wrapped(object): # pytype: disable=ignored-metaclass
35 35 """Object requiring extra conversion prior to displaying or processing
36 36 as value
37 37
@@ -108,7 +108,7 b' class wrapped(object):'
108 108 """
109 109
110 110
111 class mappable(object):
111 class mappable(object): # pytype: disable=ignored-metaclass
112 112 """Object which can be converted to a single template mapping"""
113 113
114 114 __metaclass__ = abc.ABCMeta
@@ -1304,7 +1304,7 b' class cowsortdict(cow, sortdict):'
1304 1304 """
1305 1305
1306 1306
1307 class transactional(object):
1307 class transactional(object): # pytype: disable=ignored-metaclass
1308 1308 """Base class for making a transactional type into a context manager."""
1309 1309
1310 1310 __metaclass__ = abc.ABCMeta
General Comments 0
You need to be logged in to leave comments. Login now