Author: gwilson
Date: 2007-09-08 00:11:17 -0500 (Sat, 08 Sep 2007)
New Revision: 6066
Modified:
django/trunk/django/db/models/fields/__init__.py
Log:
Fixed imports to adhere to PEP 8 and stripped trailing whitespace.
Modified: django/trunk/django/db/models/fields/__init__.py
===================================================================
--- django/trunk/django/db/models/fields/__init__.py 2007-09-08 05:09:39 UTC
(rev 6065)
+++ django/trunk/django/db/models/fields/__init__.py 2007-09-08 05:11:17 UTC
(rev 6066)
@@ -1,3 +1,11 @@
+import datetime
+import os
+import time
+try:
+ import decimal
+except ImportError:
+ from django.utils import _decimal as decimal # for Python 2.3
+
from django.db import get_creation_module
from django.db.models import signals
from django.dispatch import dispatcher
@@ -12,11 +20,6 @@
from django.utils.translation import ugettext_lazy, ugettext as _
from django.utils.encoding import smart_unicode, force_unicode, smart_str
from django.utils.maxlength import LegacyMaxlength
-import datetime, os, time
-try:
- import decimal
-except ImportError:
- from django.utils import _decimal as decimal # for Python 2.3
class NOT_PROVIDED:
pass
@@ -382,7 +385,7 @@
def save_form_data(self, instance, data):
setattr(instance, self.name, data)
-
+
def formfield(self, form_class=forms.CharField, **kwargs):
"Returns a django.newforms.Field instance for this database Field."
defaults = {'required': not self.blank, 'label':
capfirst(self.verbose_name), 'help_text': self.help_text}
@@ -785,10 +788,10 @@
def save_form_data(self, instance, data):
if data:
getattr(instance, "save_%s_file" % self.name)(data.filename,
data.content, save=False)
-
+
def formfield(self, **kwargs):
defaults = {'form_class': forms.FileField}
- # If a file has been provided previously, then the form doesn't
require
+ # If a file has been provided previously, then the form doesn't require
# that a new file is provided this time.
if 'initial' in kwargs:
defaults['required'] = False
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---