kill unused code
This commit is contained in:
parent
4b1e0d235d
commit
e98ccd309b
1 changed files with 0 additions and 24 deletions
|
@ -257,30 +257,6 @@ class DictImporter(object):
|
||||||
|
|
||||||
return mod
|
return mod
|
||||||
|
|
||||||
class ordered_dict(dict):
|
|
||||||
def keys(self):
|
|
||||||
keys = super(ordered_dict, self).keys()
|
|
||||||
keys.sort()
|
|
||||||
return keys
|
|
||||||
|
|
||||||
def values(self):
|
|
||||||
return [ self[key] for key in self.keys() ]
|
|
||||||
|
|
||||||
def items(self):
|
|
||||||
return [ (key,self[key]) for key in self.keys() ]
|
|
||||||
|
|
||||||
def iterkeys(self):
|
|
||||||
for key in self.keys():
|
|
||||||
yield key
|
|
||||||
|
|
||||||
def itervalues(self):
|
|
||||||
for value in self.values():
|
|
||||||
yield value
|
|
||||||
|
|
||||||
def iteritems(self):
|
|
||||||
for key,value in self.items():
|
|
||||||
yield key, value
|
|
||||||
|
|
||||||
py_modules = {}
|
py_modules = {}
|
||||||
for source in py_sources:
|
for source in py_sources:
|
||||||
py_modules[source.modpath] = source.srcpath
|
py_modules[source.modpath] = source.srcpath
|
||||||
|
|
Loading…
Reference in a new issue