Commit 6ba20a23 by rfkelly0

documentation formatting cleanup

parent 1da0b54d
...@@ -30,9 +30,10 @@ class TempFS(OSFS): ...@@ -30,9 +30,10 @@ class TempFS(OSFS):
def close(self): def close(self):
"""Removes the temporary directory. """Removes the temporary directory.
This will be called automatically when the object is cleaned up by Python. This will be called automatically when the object is cleaned up by
Note that once this method has been called, the FS object may no longer be used.""" Python. Note that once this method has been called, the FS object may
no longer be used.
"""
if not self._cleaned and self.exists("/"): if not self._cleaned and self.exists("/"):
self._lock.acquire() self._lock.acquire()
try: try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment