25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

9 satır
268 B

  1. #!/usr/bin/python
  2. # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*-
  3. #
  4. # esempio minimo di controller WSGI
  5. #
  6. def application( environ, start_response ):
  7. start_response( '200 OK', [('content-type', 'text/html')] )
  8. return [ 'Greetings from pippero' ]