# File lib/rake.rb, line 896
896:     def exclude(*patterns)
897:       patterns.each do |pat| @exclude_patterns << pat end
898:       if ! @pending
899:         calculate_exclude_regexp
900:         reject! { |fn| fn =~ @exclude_re }
901:       end
902:       self
903:     end