Home
last modified time | relevance | path

Searched refs:odict (Results 1 – 10 of 10) 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/grpc-grpc/tools/buildgen/
Dbuild-cleaner.py34 def repr_ordered_dict(dumper, odict): argument
35 return dumper.represent_mapping(u'tag:yaml.org,2002:map', odict.items())
/external/python/funcsigs/
D.coveragerc3 omit=funcsigs/odict*
/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/cpython3/Misc/NEWS.d/
D3.5.0rc1.rst7 Resize odict in all cases that the underlying dict resizes.
/external/python/funcsigs/funcsigs/
D__init__.py16 from funcsigs.odict import OrderedDict
/external/python/cpython2/Doc/library/
Dpickle.rst764 odict = self.__dict__.copy() # copy the dict since we change it
765 del odict['fh'] # remove filehandle entry
766 return odict