Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ullas Savkoor
6,016 PointsCorrection-localize method works only with naive datetime
Kenneth Love :You mentioned in the video that you believed localize method can take aware datetimes too, however in a codechallenge when I tried to use localize on an aware datetime, it did not work. Further when I tried it an Python EVAL loop I got ValueError saying localize take naive datetime. Request your comments on the same.
1 Answer

Kenneth Love
Treehouse Guest TeacherWell, looking at the pytz docs, seems I was wrong:
This library only supports two ways of building a localized time. The first is to use the localize() method provided by the pytz library. This is used to localize a naive datetime (datetime with no timezone information)
Ullas Savkoor
6,016 PointsUllas Savkoor
6,016 PointsOn a totally unrelated topic, why can't we use del on file objects which we get through open function. For Eg:
Kenneth Love
Treehouse Guest TeacherKenneth Love
Treehouse Guest TeacherUh, I can delete a file object just fine. It leaves an
unclosed file
hanging around, though.