Trees | Indices | Help |
|
---|
|
object --+ | Patch
A patch in a PatchSeries
|
|||
|
|||
|
|||
|
|||
str
|
|
||
|
|||
Inherited from |
|
|||
patch_exts =
|
|
|||
subject The patch's subject, either from the patch header or from the filename. |
|||
author The patch's author |
|||
email The patch author's email address |
|||
date The patch's modification time |
|||
Inherited from |
|
x.__init__(...) initializes x; see help(type(x)) for signature
|
repr(x)
|
Read patch information into a structured form using git mailinfo |
Determine the patch's subject based on the it's filename >>> p = Patch('debian/patches/foo.patch') >>> p._get_subject_from_filename() 'foo' >>> Patch('foo.patch')._get_subject_from_filename() 'foo' >>> Patch('debian/patches/foo.bar')._get_subject_from_filename() 'foo.bar' >>> p = Patch('debian/patches/foo') >>> p._get_subject_from_filename() 'foo' >>> Patch('0123-foo.patch')._get_subject_from_filename() 'foo' >>> Patch('0123.patch')._get_subject_from_filename() '0123' >>> Patch('0123-foo-0123.patch')._get_subject_from_filename() 'foo-0123'
|
Return the key key from the info Fill self.info if not already done.
|
|
subjectThe patch's subject, either from the patch header or from the filename.
|
authorThe patch's author
|
The patch author's email address
|
dateThe patch's modification time
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sat Dec 31 11:30:00 2016 | http://epydoc.sourceforge.net |