python_binary

in lib/pygments/popen.rb [46:52]


    def python_binary
      @python_binary ||= begin
        `which python2`
        $?.success? ? "python2" : "python"
      end
    end