# File lib/twitter/client/list_subscribers.rb, line 35
      def list_subscribers(*args)
        options = {:cursor => -1}.merge(args.last.is_a?(Hash) ? args.pop : {})
        list = args.pop
        user = args.pop || get_screen_name
        merge_list_into_options!(list, options)
        merge_owner_into_options!(user, options)
        response = get("1/lists/subscribers", options)
        format.to_s.downcase == 'xml' ? response['users_list'] : response
      end