# File lib/amazon/search.rb, line 939
      def wishlist_search(list_id, weight=HEAVY, page=1, &block)

        url = AWS_PREFIX + "?t=%s&WishlistSearch=%s&f=xml" +
              "&type=%s&dev-t=%s&page=%s"
        @type = WEIGHT[weight]

        unless list_id.length.between?(12, 13)
          raise TermError, "list ID length must be 12 or 13 characters"
        end

        search(url % [@id, list_id, @type, @token, page], &block)
      end