This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author flxkid
Recipients flxkid
Date 2008-01-04.21:34:05
SpamBayes Score 0.0017364129
Marked as misclassified No
Message-id <1199482445.72.0.241275927673.issue1738@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2008-01-04 21:34:06flxkidsetspambayes_score: 0.00173641 -> 0.0017364129
recipients: + flxkid
2008-01-04 21:34:05flxkidsetspambayes_score: 0.00173641 -> 0.00173641
messageid: <1199482445.72.0.241275927673.issue1738@psf.upfronthosting.co.za>
2008-01-04 21:34:05flxkidlinkissue1738 messages
2008-01-04 21:34:05flxkidcreate