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