# File lib/twitter/client/lists.rb, line 72
      def list_timeline(*args)
        options = args.last.is_a?(Hash) ? args.pop : {}
        list = args.pop
        options.merge_list!(list)
        owner = args.pop || self.current_user.screen_name
        options.merge_owner!(owner)
        get("/1/lists/statuses.json", options).map do |status|
          Twitter::Status.new(status)
        end
      end