# HG changeset patch # User Durham Goode # Date 1431816346 25200 # Node ID 7f53f305d4a6b5fb64f1a8c079f949547b68c706 # Parent 581e2066d8025260a97ff639efab7019d6fa6943 ignore: rename readignorefile to readpatternfile A future commit will move the readignorefile logic into match.py so it can be used from general match rules. Let's rename the function to represent this new behavior. diff -r 581e2066d802 -r 7f53f305d4a6 mercurial/ignore.py --- a/mercurial/ignore.py Sat May 16 15:45:06 2015 -0700 +++ b/mercurial/ignore.py Sat May 16 15:45:46 2015 -0700 @@ -11,7 +11,7 @@ _commentre = None -def readignorefile(filepath, warn): +def readpatternfile(filepath, warn): '''parse a pattern file, returning a list of patterns. These patterns should be given to compile() to be validated and converted into a match function.''' @@ -64,7 +64,7 @@ if f in pats: continue try: - pats[f] = readignorefile(f, warn) + pats[f] = readpatternfile(f, warn) except IOError, inst: warn(_("skipping unreadable ignore file '%s': %s\n") % (f, inst.strerror))