Changeset 7960 for django/branches/newforms-admin/django/db/models
- Timestamp:
- 07/18/08 18:01:28 (6 months ago)
- Files:
-
- django/branches/newforms-admin (modified) (1 prop)
- django/branches/newforms-admin/django/db/models/base.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/newforms-admin
- Property svnmerge-integrated changed from /django/trunk:1-4345,4350-4357,4359-4365,4371-4372,4374-4377,4380-4386,4388,4390-4391,4400-4402,4404-4408,4410,4412-4419,4426-4427,4430-4432,4434,4441,4443-4444,4446-4447,4450,4452-4453,4455-4458,4476,4503,4546,4564-4569,4580-4586,4617,4630,4641-6390,6392-7953 to /django/trunk:1-4345,4350-4357,4359-4365,4371-4372,4374-4377,4380-4386,4388,4390-4391,4400-4402,4404-4408,4410,4412-4419,4426-4427,4430-4432,4434,4441,4443-4444,4446-4447,4450,4452-4453,4455-4458,4476,4503,4546,4564-4569,4580-4586,4617,4630,4641-6390,6392-7959
django/branches/newforms-admin/django/db/models/base.py
r7936 r7960 485 485 import warnings 486 486 warnings.warn( 487 message = "Representing uploaded files as dictionaries is"\ 488 " deprecated. Use django.core.files.SimpleUploadedFile"\ 489 " instead.", 487 message = "Representing uploaded files as dictionaries is deprecated. Use django.core.files.uploadedfile.SimpleUploadedFile instead.", 490 488 category = DeprecationWarning, 491 489 stacklevel = 2 … … 497 495 import warnings 498 496 warnings.warn( 499 message = "Representing uploaded files as strings is "\ 500 " deprecated. Use django.core.files.SimpleUploadedFile "\ 501 " instead.", 497 message = "Representing uploaded files as dictionaries is deprecated. Use django.core.files.uploadedfile.SimpleUploadedFile instead.", 502 498 category = DeprecationWarning, 503 499 stacklevel = 2
