Home | Trees | Indices | Help |
|
---|
|
object --+ | FileLog
A utility class for storing the results of a 'p4 filelog' command.
A filelog consists of a list of FileRevision objects, one for each revision of a particular depot file.See Also: FileRevision, Integration
Instance Methods | |||
|
|||
Inherited from |
Static Methods | |||
|
Instance Variables | |
str or unicode
|
depotFile The path of the file in the repository. |
list of FileRevision objects.
|
revisions A list of FileRevision objects for this
depotFile.
|
Properties | |
Inherited from |
Method Details |
|
Construct a populated FileLog object from a 'p4 filelog' record. Example:| from perforce.connection import Connection | from perforce.results import FileLog | c = Connection() | c.connect() | results = c.run('filelog', '//depot/some/file.txt') | fileLog = FileLog.parseRecord(results.records[0])
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Sun Aug 05 12:30:13 2007 | http://epydoc.sourceforge.net |