Lines Matching full:allowance
144 return entry.allowance(url)
147 return self.default_entry.allowance(url)
157 """A rule line is a single "Allow:" (allowance==True) or "Disallow:"
158 (allowance==False) followed by a path."""
159 def __init__(self, path, allowance):
160 if path == '' and not allowance:
162 allowance = True
164 self.allowance = allowance
170 return (self.allowance and "Allow" or "Disallow") + ": " + self.path
200 def allowance(self, filename):
206 return line.allowance