Python test

Python code posted by Nejr
created at 06 Apr 12:25

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
import sys, os
from django.http import HttpResponse

def view(request):
   if False:
      return HttpResponse('False!')

   try:
      a = 1 / 0
   except DivideByZeroExceptionOrSomething:
      return HttpResponse(':(')
   finally:
      relax = True
264 Bytes in 2 ms with coderay