# File lib/rack/utils.rb, line 425
425:     def status_code(status)
426:       if status.is_a?(Symbol)
427:         SYMBOL_TO_STATUS_CODE[status] || 500
428:       else
429:         status.to_i
430:       end
431:     end