summaryrefslogtreecommitdiff
path: root/django/contrib/search/default.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/search/default.py')
-rw-r--r--django/contrib/search/default.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/django/contrib/search/default.py b/django/contrib/search/default.py
new file mode 100644
index 0000000000..705f5a8f15
--- /dev/null
+++ b/django/contrib/search/default.py
@@ -0,0 +1,9 @@
+from base import Indexer
+
+# This is the future home of a pure-Python text indexer.
+
+# Alec Thomas has created a built-in indexer for his library here:
+# http://swapoff.org/wiki/pyndexter
+
+class DefaultIndexer(Indexer):
+ pass \ No newline at end of file