New submission from Oliver Nelson: dircmp's ignore and hide list only take exact files to ignore, not unix filename pattern's. This means you can't hide/ignore *.bak or something similar. Changing the _filter function adds this:
def newfilter(flist, skip): for pattern in skip: flist = list(ifilterfalse(fnmatch.filter(flist, pattern).__contains__, flist)) return flist __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1738> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com