Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

Remove trailing whitespace.

Changeset 130a62d76e56

Parent 0605f08122d1

by Jelmer Vernooij

Changes to 2 files · Browse files at 130a62d76e56 Showing diff from parent 0605f08122d1 Diff from another changeset...

 
1
 
2
3
 
4
5
6
7
8
 
9
10
11
12
13
 
14
15
16
 
40
41
42
43
44
 
 
45
46
47
 
71
72
73
74
 
75
76
77
 
 
1
2
 
3
4
5
6
7
 
8
9
10
11
12
 
13
14
15
16
 
40
41
42
 
 
43
44
45
46
47
 
71
72
73
 
74
75
76
77
@@ -1,16 +1,16 @@
-# object_store.py -- Object store for git objects +# object_store.py -- Object store for git objects  # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> -# +#  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License  # as published by the Free Software Foundation; either version 2  # or (at your option) a later version of the License. -# +#  # This program is distributed in the hope that it will be useful,  # but WITHOUT ANY WARRANTY; without even the implied warranty of  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  # GNU General Public License for more details. -# +#  # You should have received a copy of the GNU General Public License  # along with this program; if not, write to the Free Software  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, @@ -40,8 +40,8 @@
  )  from dulwich.pack import (   Pack, - PackData, - iter_sha1, + PackData, + iter_sha1,   load_pack_index,   write_pack,   write_pack_data, @@ -71,7 +71,7 @@
    def get_raw(self, name):   """Obtain the raw text for an object. - +   :param name: sha for the object.   :return: tuple with object type and object contents.   """
Change 1 of 14 Show Entire File dulwich/​objects.py Stacked
 
1
2
3
4
 
5
6
7
8
9
 
10
11
12
13
14
 
15
16
17
 
89
90
91
92
 
93
94
95
 
120
121
122
123
 
124
125
126
 
146
147
148
149
 
150
151
152
 
164
165
166
167
 
168
169
170
 
172
173
174
175
 
176
177
178
179
 
180
181
182
 
183
184
185
 
191
192
193
194
 
195
196
197
198
 
199
200
201
 
204
205
206
207
 
208
209
210
 
211
212
213
 
215
216
217
218
 
219
220
221
222
 
223
224
225
 
227
228
229
230
 
231
232
233
234
235
236
 
237
238
239
 
240
241
242
 
257
258
259
260
 
261
262
263
 
363
364
365
366
 
367
368
 
369
370
 
371
372
373
 
585
586
587
588
 
589
590
591
 
592
593
594
 
600
601
602
603
 
604
605
606
 
607
608
609
 
1
2
3
 
4
5
6
7
8
 
9
10
11
12
13
 
14
15
16
17
 
89
90
91
 
92
93
94
95
 
120
121
122
 
123
124
125
126
 
146
147
148
 
149
150
151
152
 
164
165
166
 
167
168
169
170
 
172
173
174
 
175
176
177
178
 
179
180
181
 
182
183
184
185
 
191
192
193
 
194
195
196
197
 
198
199
200
201
 
204
205
206
 
207
208
209
 
210
211
212
213
 
215
216
217
 
218
219
220
221
 
222
223
224
225
 
227
228
229
 
230
231
232
233
234
235
 
236
237
238
 
239
240
241
242
 
257
258
259
 
260
261
262
263
 
363
364
365
 
366
367
 
368
369
 
370
371
372
373
 
585
586
587
 
588
589
590
 
591
592
593
594
 
600
601
602
 
603
604
605
 
606
607
608
609
@@ -1,17 +1,17 @@
 # objects.py -- Access to base git objects  # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>  # Copyright (C) 2008-2009 Jelmer Vernooij <jelmer@samba.org> -# +#  # This program is free software; you can redistribute it and/or  # modify it under the terms of the GNU General Public License  # as published by the Free Software Foundation; version 2  # of the License or (at your option) a later version of the License. -# +#  # This program is distributed in the hope that it will be useful,  # but WITHOUT ANY WARRANTY; without even the implied warranty of  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  # GNU General Public License for more details. -# +#  # You should have received a copy of the GNU General Public License  # along with this program; if not, write to the Free Software  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, @@ -89,7 +89,7 @@
   class ShaFile(object):   """A git SHA file.""" - +   @classmethod   def _parse_legacy_object(cls, map):   """Parse a legacy object, creating it and setting object._text""" @@ -120,7 +120,7 @@
  def as_legacy_object(self):   text = self.as_raw_string()   return zlib.compress("%s %d\0%s" % (self._type, len(text), text)) - +   def as_raw_string(self):   if self._needs_serialization:   self.serialize() @@ -146,7 +146,7 @@
  self._sha = None   self._needs_parsing = True   self._needs_serialization = False - +   @classmethod   def _parse_object(cls, map):   """Parse a new style object , creating it and setting object._text""" @@ -164,7 +164,7 @@
  raw = map[used:]   object.set_raw_string(_decompress(raw))   return object - +   @classmethod   def _parse_file(cls, map):   word = (ord(map[0]) << 8) + ord(map[1]) @@ -172,14 +172,14 @@
  return cls._parse_legacy_object(map)   else:   return cls._parse_object(map) - +   def __init__(self):   """Don't call this directly"""   self._sha = None - +   def _parse_text(self):   """For subclasses to do initialisation time parsing""" - +   @classmethod   def from_file(cls, filename):   """Get the contents of a SHA file on disk""" @@ -191,11 +191,11 @@
  return shafile   finally:   f.close() - +   @classmethod   def from_raw_string(cls, type, string):   """Creates an object of the indicated type from the raw string given. - +   Type is the numeric type of an object. String is the raw uncompressed   contents.   """ @@ -204,10 +204,10 @@
  obj.type = type   obj.set_raw_string(string)   return obj - +   def _header(self):   return "%s %lu\0" % (self._type, len(self.as_raw_string())) - +   def sha(self):   """The SHA1 object that is the name of this object."""   if self._needs_serialization or self._sha is None: @@ -215,11 +215,11 @@
  self._sha.update(self._header())   self._sha.update(self.as_raw_string())   return self._sha - +   @property   def id(self):   return self.sha().hexdigest() - +   def get_type(self):   return self._num_type   @@ -227,16 +227,16 @@
  self._num_type = type     type = property(get_type, set_type) - +   def __repr__(self):   return "<%s %s>" % (self.__class__.__name__, self.id)     def __ne__(self, other):   return self.id != other.id - +   def __eq__(self, other):   """Return true id the sha of the two objects match. - +   The __le__ etc methods aren't overriden as they make no sense,   certainly at this level.   """ @@ -257,7 +257,7 @@
  def set_data(self, data):   self._text = data   - data = property(get_data, set_data, + data = property(get_data, set_data,   "The text contained within the blob object.")     @classmethod @@ -363,11 +363,11 @@
  object = property(get_object, set_object)     name = serializable_property("name", "The name of this tag") - tagger = serializable_property("tagger", + tagger = serializable_property("tagger",   "Returns the name of the person who created this tag") - tag_time = serializable_property("tag_time", + tag_time = serializable_property("tag_time",   "The creation timestamp of the tag. As the number of seconds since the epoch") - tag_timezone = serializable_property("tag_timezone", + tag_timezone = serializable_property("tag_timezone",   "The timezone that tag_time is in.")   message = serializable_property("message", "The message attached to this tag")   @@ -585,10 +585,10 @@
    parents = property(get_parents, set_parents)   - author = serializable_property("author", + author = serializable_property("author",   "The name of the author of the commit")   - committer = serializable_property("committer", + committer = serializable_property("committer",   "The name of the committer of the commit")     message = serializable_property("message", @@ -600,10 +600,10 @@
  commit_timezone = serializable_property("commit_timezone",   "The zone the commit time is in")   - author_time = serializable_property("author_time", + author_time = serializable_property("author_time",   "The timestamp the commit was written. as the number of seconds since the epoch.")   - author_timezone = serializable_property("author_timezone", + author_timezone = serializable_property("author_timezone",   "Returns the zone the author time is in.")     encoding = serializable_property("encoding",