Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a71b0fb

Browse files
[FIX] OsOperations::mkstemp is added
We forgot about this thing.
1 parent 23cb761 commit a71b0fb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

testgres/operations/os_ops.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def pathsep(self):
7777
def mkdtemp(self, prefix=None):
7878
raise NotImplementedError()
7979

80+
def mkstemp(self, prefix=None):
81+
raise NotImplementedError()
82+
8083
def copytree(self, src, dst):
8184
raise NotImplementedError()
8285

0 commit comments

Comments
 (0)