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
