summaryrefslogtreecommitdiff
path: root/lib/git/blob.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2010-03-03 23:46:23 -0500
committerMichael Trier <mtrier@gmail.com>2010-03-03 23:46:23 -0500
commite3e2c8c14b861b4d4865a9574e812ef9f2609771 (patch)
treec71c7da3843389ea3b7041a0200d7abe3b0e580d /lib/git/blob.py
parentacb0fa8b94ef421ad60c8507b634759a472cd56c (diff)
downloadgitpython-e3e2c8c14b861b4d4865a9574e812ef9f2609771.tar.gz
Corrected a bunch of whitespace that makes some folks crazy. Added Sebastian to the AUTHORS file.
Diffstat (limited to 'lib/git/blob.py')
-rw-r--r--lib/git/blob.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/git/blob.py b/lib/git/blob.py
index 82a41f73..e63037d4 100644
--- a/lib/git/blob.py
+++ b/lib/git/blob.py
@@ -1,5 +1,5 @@
# blob.py
-# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
+# Copyright (C) 2008-2010 Michael Trier (mtrier@gmail.com) and contributors
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
@@ -49,7 +49,7 @@ class Blob(object):
Returns
int
-
+
NOTE
The size will be cached after the first access
"""
@@ -64,7 +64,7 @@ class Blob(object):
Returns
str
-
+
NOTE
The data will be cached after the first access.
"""
@@ -78,7 +78,7 @@ class Blob(object):
Returns
str
-
+
NOTE
Defaults to 'text/plain' in case the actual file type is unknown.
"""
@@ -102,7 +102,7 @@ class Blob(object):
Returns
list: [git.Commit, list: [<line>]]
- A list of tuples associating a Commit object with a list of lines that
+ A list of tuples associating a Commit object with a list of lines that
changed within the given commit. The Commit objects will be given in order
of appearance.
"""