(self)
| 1101 | def __exit__(self, *args): |
| 1102 | self.close() |
| 1103 | def __repr__(self): |
| 1104 | if self.path: |
| 1105 | return "<AddedDllDirectory({!r})>".format(self.path) |
| 1106 | return "<AddedDllDirectory()>" |
| 1107 | |
| 1108 | def add_dll_directory(path): |
| 1109 | """Add a path to the DLL search path. |