Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(772)

Unified Diff: venv/Lib/site-packages/django/forms/extras/__init__.py

Issue 554060043: testMe
Patch Set: Created 2 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: venv/Lib/site-packages/django/forms/extras/__init__.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/venv/Lib/site-packages/django/forms/extras/__init__.py
@@ -0,0 +1,12 @@
+import warnings
+
+from django.forms.widgets import SelectDateWidget
+from django.utils.deprecation import RemovedInDjango20Warning
+
+__all__ = ['SelectDateWidget']
+
+
+warnings.warn(
+ "django.forms.extras is deprecated. You can find "
+ "SelectDateWidget in django.forms.widgets instead.",
+ RemovedInDjango20Warning, stacklevel=2)
« no previous file with comments | « venv/Lib/site-packages/django/forms/boundfield.py ('k') | venv/Lib/site-packages/django/forms/extras/widgets.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b