mirror of
https://github.com/samba-team/samba.git
synced 2025-11-20 08:23:50 +03:00
11 lines
140 B
Python
Executable File
11 lines
140 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys, tdb
|
|
from os import *
|
|
|
|
t = tdb.open('foo.tdb', 0, 0, O_RDWR | O_CREAT, 0600)
|
|
tdb.close(t)
|
|
|
|
unlink('foo.tdb')
|
|
|