# File lib/curl/easy.rb, line 229
      def perform(*args)
        c = Curl::Easy.new *args
        yield c if block_given?
        c.perform
        c
      end