Opened 17 years ago

Closed 17 years ago

#4037 closed (invalid)

need from / import

Reported by: chwolfe Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In the section in tutorial one,

import datetime

# ...
class Poll(models.Model):

# ...
def was_published_today(self):

return self.pub_date.date() == datetime.date.today()

I think the import line should be:

from datetime import datetime

I am somewhat new to python so maybe I'm doing something wrong.

Change History (1)

comment:1 by James Bennett, 17 years ago

Resolution: invalid
Status: newclosed

No, it's correct. The Python standard module datetime contains classes named datetime and date. Doing import datetime makes datetime the _module_ available to you, so the two classes need to be referred to as datetime.datetime and datetime.date.

Note: See TracTickets for help on using tickets.
Back to Top