# File lib/twitter/client/timelines.rb, line 203
      def user_timeline(*args)
        options = args.last.is_a?(Hash) ? args.pop : {}
        if user = args.pop
          options.merge_user!(user)
        end
        get("/1/statuses/user_timeline.json", options).map do |status|
          Twitter::Status.new(status)
        end
      end