show/hide this revision's text 2 changed it to a non-deprecated api

is there a real way to do this with strptime?

No, but since your format appears to be an RFC822-family date, you can read it much more easily using the rfc822email library instead:

>>> import rfc822
email.utils
>>> rfc822.parsedate_tz('Tueemail.utils.parsedate_tz('Tue, 22 Jul 2008 08:17:41 +0200')
(2008, 7, 22, 8, 17, 41, 0, 1, 0, 7200)

(7200 = timezone offset from UTC in seconds)

show/hide this revision's text 1

is there a real way to do this with strptime?

No, but since your format appears to be an RFC822-family date, you can read it much more easily using the rfc822 library instead:

>>> import rfc822
>>> rfc822.parsedate_tz('Tue, 22 Jul 2008 08:17:41 +0200')
(2008, 7, 22, 8, 17, 41, 0, 1, 0, 7200)

(7200 = timezone offset from UTC in seconds)