# File lib/twitter/client/lists.rb, line 179
      def list_subscribers(*args)
        options = {:cursor => -1}.merge(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)
        cursor = get("/1/lists/subscribers.json", options)
        Twitter::Cursor.new(cursor, 'users', Twitter::User)
      end