projects
/
mudpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f30c36
)
Use PosixPath arguments with os.remove()
author
Jeremy Stanley
<fungi@yuggoth.org>
Sun, 1 Nov 2020 16:48:25 +0000
(16:48 +0000)
committer
Jeremy Stanley
<fungi@yuggoth.org>
Sun, 1 Nov 2020 16:48:25 +0000
(16:48 +0000)
Starting with Python 3.6, it's possible to pass a PosixPath to the
os.remove function instead of having to use the .name attribute.
mudpy/tests/selftest.py
patch
|
blob
|
history
diff --git
a/mudpy/tests/selftest.py
b/mudpy/tests/selftest.py
index
ede3cb2
..
bb19d33
100644
(file)
--- a/
mudpy/tests/selftest.py
+++ b/
mudpy/tests/selftest.py
@@
-477,9
+477,7
@@
def start_service(config):
# Clean up any previous test output
for f in pathlib.Path(".").glob("capture_*.log"):
- # have to use .name here since remove() doesn't support passing a
- # PosixPath argument until Python3.6
- os.remove(f.name)
+ os.remove(f)
for d in ("data", "var"):
shutil.rmtree(d, ignore_errors=True)