File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 44 - 2.7
55 - 3.2
66 - 3.3
7- - 3.4
87
98env :
109 - DJANGO=Django==1.4.13
@@ -18,8 +17,6 @@ matrix:
1817 env : DJANGO=Django==1.4.13
1918 - python : 3.3
2019 env : DJANGO=Django==1.4.13
21- - python : 3.4
22- env : DJANGO=Django==1.4.13
2320 - python : 2.6
2421 env : DJANGO=git+https://github.com/django/django.git@stable/1.7.x#egg=Django
2522
Original file line number Diff line number Diff line change 1- import urlparse
1+ try :
2+ from urllib import parse as urlparse
3+ except ImportError :
4+ import urlparse
25
36from django .test import TestCase , RequestFactory
47from django .core .urlresolvers import reverse_lazy
Original file line number Diff line number Diff line change 1- import urlparse
1+ try :
2+ from urllib import parse as urlparse
3+ except ImportError :
4+ import urlparse
25
36from django .views .generic .edit import UpdateView
47from django .views .decorators .csrf import csrf_exempt
You can’t perform that action at this time.
0 commit comments