]> granicus.if.org Git - python/commit
Fixed 'findall()' so it only returns regular files -- no directories.
authorGreg Ward <gward@python.net>
Thu, 29 Jun 2000 02:06:29 +0000 (02:06 +0000)
committerGreg Ward <gward@python.net>
Thu, 29 Jun 2000 02:06:29 +0000 (02:06 +0000)
commit499822d95975a4b59f902443596d1207c8f274b9
tree85f55ff9cb322faa52a12cd7bb7fa808767c791c
parent4f4b799b3358516370653900789132231324003c
Fixed 'findall()' so it only returns regular files -- no directories.
Changed 'prune_file_list()' so it also prunes out RCS and CVS directories.
Added 'is_regex' parameter to 'select_pattern()', 'exclude_pattern()',
  and 'translate_pattern()', so that you don't have to be constrained
  by the simple shell-glob-like pattern language, and can escape into
  full-blown regexes when needed.  Currently this is only available
  in code -- it's not exposed in the manifest template mini-language.
Added 'prune' option (controlled by --prune and --no-prune) to determine
  whether we call 'prune_file_list()' or not -- it's true by default.
Fixed 'negative_opt' -- it was misnamed and not being seen by dist.py.
Added --no-defaults to the option table, so it's seen by FancyGetopt.
Lib/distutils/command/sdist.py