show/hide this revision's text 3 corrected a mistake (converting minutes - hours)

New in version 2.6.

For a naive object, the %z and %Z format codes are replaced by empty strings.

Looks like this is implemented only in >= 2.6, I think you have to manually parse it.

I can't see another solution than to remove the time zone data.:

from datetime import timedelta,datetime
try:
    offset = int("Tue, 22 Jul 2008 08:17:41 +0300"[-5:])
catch:
    print "Error"

delta = timedelta(minutes timedelta(hours = offset / 100)

fmt = "%a, %d %b %Y %H:%M:%S"
time = datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0200"[:-6], fmt)
time -= delta
show/hide this revision's text 2 added 40 characters in body

New in version 2.6.

For a naive object, the %z and %Z format codes are replaced by empty strings.

Looks like this is implemented only in >= 2.6, I think you have to manually parse it.

It could work like this

I can't see another solution than to remove the time zone data.:

from datetime import timedelta,datetime
try:
    offset = int("Tue, 22 Jul 2008 08:17:41 +0300"[-5:])
catch:
    print "Error"

delta = timedelta(minutes = offset)

fmt = "%a, %d %b %Y %H:%M:%S"
time = datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0200"[:-5], 0200"[:-6], fmt)
time -= delta
show/hide this revision's text 1

New in version 2.6.

For a naive object, the %z and %Z format codes are replaced by empty strings.

Looks like this is implemented only in >= 2.6, I think you have to manually parse it.

It could work like this:

from datetime import timedelta,datetime
try:
    offset = int("Tue, 22 Jul 2008 08:17:41 +0300"[-5:])
catch:
    print "Error"

delta = timedelta(minutes = offset)

fmt = "%a, %d %b %Y %H:%M:%S"
time = datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0200"[:-5], fmt)
time -= delta