Home
last modified time | relevance | path

Searched refs:odict (Results 1 – 6 of 6) sorted by relevance

/external/markdown/
Dregression-tests.py134 self.odict = markdown.odict.OrderedDict()
135 self.odict['first'] = 'This'
136 self.odict['third'] = 'a'
137 self.odict['fourth'] = 'self'
138 self.odict['fifth'] = 'test'
142 self.assertEqual(self.odict.values(), ['This', 'a', 'self', 'test'])
146 self.assertEqual(self.odict.keys(),
151 self.assertEqual(self.odict.items(),
157 self.odict.add('second', 'is', '<third')
158 self.assertEqual(self.odict.items(),
[all …]
/external/markdown/markdown/
D__init__.py168 import odict
215 self.preprocessors = odict.OrderedDict()
249 self.inlinePatterns = odict.OrderedDict()
288 self.treeprocessors = odict.OrderedDict()
294 self.postprocessors = odict.OrderedDict()
Dblockparser.py45 self.blockprocessors = markdown.odict.OrderedDict()
/external/python/cpython2/Lib/
Dcopy.py421 class odict(dict): class
428 o = odict({"A" : "B"})
/external/markdown/markdown/extensions/
Dfootnotes.py77 self.footnotes = markdown.odict.OrderedDict()
/external/python/cpython2/Doc/library/
Dpickle.rst763 odict = self.__dict__.copy() # copy the dict since we change it
764 del odict['fh'] # remove filehandle entry
765 return odict