diff options
author | Martin Pool <mbp@samba.org> | 2002-09-09 08:34:35 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-09-09 08:34:35 +0000 |
commit | 0d3276355e0511d6aff110a3943199629b3c00fd (patch) | |
tree | 28e03ad11c9e522b5e1a6a122bd52f3a9590db97 /source/python/samba | |
parent | fc5e8b8f672d461809f113fe14435841608b046f (diff) | |
download | samba-0d3276355e0511d6aff110a3943199629b3c00fd.tar.gz samba-0d3276355e0511d6aff110a3943199629b3c00fd.tar.xz samba-0d3276355e0511d6aff110a3943199629b3c00fd.zip |
Put all Python modules into the 'samba' subpackage. Now you need to
write
import samba.tdbutil
samba.tdbutil.pack('f', ['hello'])
You need 'cvs update -d' to get the new subdirectory for this to build
properly.
Diffstat (limited to 'source/python/samba')
-rw-r--r-- | source/python/samba/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source/python/samba/__init__.py b/source/python/samba/__init__.py new file mode 100644 index 00000000000..c818ca3e044 --- /dev/null +++ b/source/python/samba/__init__.py @@ -0,0 +1,7 @@ +"""samba + +Various Python modules for interfacing to Samba. + +Try using help() to examine their documentation. +""" + |