We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe03258 commit 4919d59Copy full SHA for 4919d59
robots/tests/tests.py
@@ -1,7 +1,6 @@
1
# coding=utf-8
2
3
-# todo On Django 1.4 change testcase to django.test.SimpleTestCase
4
-from django.utils import unittest
+import unittest
5
6
from robots.utils import clean_pattern, join_patterns, create_rules
7
robots/utils.py
@@ -5,6 +5,7 @@
try:
# Python 3
from urllib.parse import quote, unquote
8
+ unichr = chr
9
except ImportError:
10
# Python 2
11
from urllib import quote, unquote
0 commit comments