List contents in the dir. Returns ------- names : list The content of directory
(self)
| 168 | return os.path.join(self.temp_dir, name) |
| 169 | |
| 170 | def listdir(self): |
| 171 | """List contents in the dir. |
| 172 | |
| 173 | Returns |
| 174 | ------- |
| 175 | names : list |
| 176 | The content of directory |
| 177 | """ |
| 178 | return os.listdir(self.temp_dir) |
| 179 | |
| 180 | |
| 181 | atexit.register(TempDirectory.remove_tempdirs) |
no outgoing calls
no test coverage detected