doc: remove has_key usage in hgmanpage stable
authorNicolas Dumazet <nicdumz.commits@gmail.com>
Thu, 22 Jul 2010 14:33:50 +0900
branchstable
changeset 11643 50fede14fe4d
parent 11642 7f3581c5ad93
child 11644 c4f6f0a1bd5a
child 11645 88b89ace643b
doc: remove has_key usage in hgmanpage
doc/hgmanpage.py
--- a/doc/hgmanpage.py	Thu Jul 22 14:30:29 2010 +0900
+++ b/doc/hgmanpage.py	Thu Jul 22 14:33:50 2010 +0900
@@ -303,7 +303,7 @@
 
             def __init__(self, style):
                 self._style = style
-                if node.has_key('start'):
+                if 'start' in node:
                     self._cnt = node['start'] - 1
                 else:
                     self._cnt = 0
@@ -345,7 +345,7 @@
             def __repr__(self):
                 return 'enum_style-%s' % list(self._style)
 
-        if node.has_key('enumtype'):
+        if 'enumtype' in node:
             self._list_char.append(enum_char(node['enumtype']))
         else:
             self._list_char.append(enum_char('bullet'))