mirror of
https://github.com/Hopiu/django.git
synced 2026-03-31 21:30:33 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7971 bcc190cf-cafb-0310-a4f2-bffc1f526a37
7 lines
No EOL
193 B
Python
7 lines
No EOL
193 B
Python
import warnings
|
|
warnings.warn(
|
|
category = DeprecationWarning,
|
|
message = "django.newforms is no longer new. Import django.forms instead.",
|
|
stacklevel = 2
|
|
)
|
|
from django.forms import * |