summaryrefslogtreecommitdiff
path: root/django/utils/itercompat.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/itercompat.py')
-rw-r--r--django/utils/itercompat.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/django/utils/itercompat.py b/django/utils/itercompat.py
index 096f808671..9895e3f816 100644
--- a/django/utils/itercompat.py
+++ b/django/utils/itercompat.py
@@ -1,12 +1,5 @@
-"""
-Providing iterator functions that are not in all version of Python we support.
-Where possible, we try to use the system-native version and only fall back to
-these implementations if necessary.
-"""
-
-
def is_iterable(x):
- "A implementation independent way of checking for iterables"
+ "An implementation independent way of checking for iterables"
try:
iter(x)
except TypeError: