Searched refs:odict (Results 1 – 10 of 10) sorted by relevance
/external/markdown/ |
D | regression-tests.py | 134 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__.py | 168 import odict 215 self.preprocessors = odict.OrderedDict() 249 self.inlinePatterns = odict.OrderedDict() 288 self.treeprocessors = odict.OrderedDict() 294 self.postprocessors = odict.OrderedDict()
|
D | blockparser.py | 45 self.blockprocessors = markdown.odict.OrderedDict()
|
/external/grpc-grpc/tools/buildgen/ |
D | build-cleaner.py | 34 def repr_ordered_dict(dumper, odict): argument 35 return dumper.represent_mapping(u'tag:yaml.org,2002:map', odict.items())
|
/external/python/funcsigs/ |
D | .coveragerc | 3 omit=funcsigs/odict*
|
/external/python/cpython2/Lib/ |
D | copy.py | 421 class odict(dict): class 428 o = odict({"A" : "B"})
|
/external/markdown/markdown/extensions/ |
D | footnotes.py | 77 self.footnotes = markdown.odict.OrderedDict()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0rc1.rst | 7 Resize odict in all cases that the underlying dict resizes.
|
/external/python/funcsigs/funcsigs/ |
D | __init__.py | 16 from funcsigs.odict import OrderedDict
|
/external/python/cpython2/Doc/library/ |
D | pickle.rst | 764 odict = self.__dict__.copy() # copy the dict since we change it 765 del odict['fh'] # remove filehandle entry 766 return odict
|