comparison hgsubversion/maps.py @ 728:cfefeefad199

rename TagMap to Tags, to free up the TagMap name
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Wed, 06 Oct 2010 16:50:10 +0200
parents c787147fa3b7
children 467b95348e6a
comparison
equal deleted inserted replaced
727:e830b592917b 728:cfefeefad199
95 else: 95 else:
96 # Mercurial incorrectly splits at e.g. '.', so we roll our own. 96 # Mercurial incorrectly splits at e.g. '.', so we roll our own.
97 return author.rsplit('@', 1)[0] 97 return author.rsplit('@', 1)[0]
98 98
99 99
100 class TagMap(dict): 100 class Tags(dict):
101 """Map tags to converted node identifier. 101 """Map tags to converted node identifier.
102 102
103 tag names are non-empty strings. 103 tag names are non-empty strings.
104 """ 104 """
105 VERSION = 2 105 VERSION = 2