summaryrefslogtreecommitdiff
path: root/lib/git/diff.py
Commit message (Collapse)AuthorAgeFilesLines
* implement a far far faster diff parserPaul Sowden2008-12-151-42/+19
| | | | | The old diff parser in list_from_string took a large amount of time to parse long diffs, on one of my repositories it took over 3 minutes to parse the initial commit. The new parser uses a single regexp to match the header of a diff, and iterates over the each individual diff by splitting the entire string by the diff seperator, attempting to match the header for each individual diff. With the new parser parsing the same repository is almost instant, woohoo! (cherry picked from commit 5b6b27f153bdc30380bea12a528ef483571dd57a)
* Fix unneeded dict unpacking.Steve Frécinaux2008-09-051-2/+2
|
* Added license information to all files.Michael Trier2008-07-161-0/+6
|
* renamed git_python to git. Removed pop_key and replaced with dict.pop. Fixed ↵Michael Trier2008-05-301-0/+79
up tests so they pass except for stderr test. Modified version information retrieval.