Show More
@@ -458,6 +458,9 b' class basefilectx(object):' | |||
|
458 | 458 | def __str__(self): |
|
459 | 459 | return "%s@%s" % (self.path(), short(self.node())) |
|
460 | 460 | |
|
461 | def __repr__(self): | |
|
462 | return "<%s %s>" % (type(self).__name__, str(self)) | |
|
463 | ||
|
461 | 464 | class filectx(basefilectx): |
|
462 | 465 | """A filecontext object makes access to data related to a particular |
|
463 | 466 | filerevision convenient.""" |
@@ -507,9 +510,6 b' class filectx(basefilectx):' | |||
|
507 | 510 | # considered when solving linkrev issue are on the table. |
|
508 | 511 | return changectx(self._repo.unfiltered(), self._changeid) |
|
509 | 512 | |
|
510 | def __repr__(self): | |
|
511 | return "<filectx %s>" % str(self) | |
|
512 | ||
|
513 | 513 | def __hash__(self): |
|
514 | 514 | try: |
|
515 | 515 | return hash((self._path, self._filenode)) |
General Comments 0
You need to be logged in to leave comments.
Login now