Package gbp :: Package git
[hide private]
[frames] | no frames]

Package git

Accessing Git from python

Submodules [hide private]

Classes [hide private]
  FixedOffset
Fixed offset in seconds east from UTC.
Functions [hide private]
 
rfc822_date_to_git(rfc822_date)
Parse a date in RFC822 format, and convert to a 'seconds tz' string.
Variables [hide private]
  __package__ = 'gbp.git'
Function Details [hide private]

rfc822_date_to_git(rfc822_date)

 

Parse a date in RFC822 format, and convert to a 'seconds tz' string.

>>> rfc822_date_to_git('Thu, 1 Jan 1970 00:00:01 +0000')
'1 +0000'
>>> rfc822_date_to_git('Thu, 20 Mar 2008 01:12:57 -0700')
'1206000777 -0700'
>>> rfc822_date_to_git('Sat, 5 Apr 2008 17:01:32 +0200')
'1207407692 +0200'