Example #1
0
File: os.py Project: kirkboy/bits
 def values(self):
     return _bits._getenvdict().values()
Example #2
0
File: os.py Project: kirkboy/bits
 def keys(self):
     return _bits._getenvdict().keys()
Example #3
0
File: os.py Project: kirkboy/bits
 def items(self):
     return _bits._getenvdict().items()
Example #4
0
File: os.py Project: kirkboy/bits
 def __len__(self):
     return len(_bits._getenvdict())
Example #5
0
File: os.py Project: kirkboy/bits
 def copy(self):
     return _bits._getenvdict()
Example #6
0
File: os.py Project: kirkboy/bits
 def __repr__(self):
     return repr(_bits._getenvdict())
Example #7
0
File: os.py Project: kirkboy/bits
 def __cmp__(self, other):
     return cmp(_bits._getenvdict(), other)
Example #8
0
 def items(self):
     return _bits._getenvdict().items()
Example #9
0
 def values(self):
     return _bits._getenvdict().values()
Example #10
0
 def keys(self):
     return _bits._getenvdict().keys()
Example #11
0
 def copy(self):
     return _bits._getenvdict()
Example #12
0
 def __len__(self):
     return len(_bits._getenvdict())
Example #13
0
 def __cmp__(self, other):
     return cmp(_bits._getenvdict(), other)
Example #14
0
 def __repr__(self):
     return repr(_bits._getenvdict())