s4-python: Add more module docstrings.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 5 Dec 2010 16:00:45 +0000 (17:00 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 5 Dec 2010 16:27:05 +0000 (17:27 +0100)
source4/scripting/python/samba/tests/blackbox/__init__.py
source4/scripting/python/samba/tests/blackbox/ndrdump.py
source4/scripting/python/samba/tests/dcerpc/__init__.py
source4/scripting/python/samba/tests/dcerpc/bare.py
source4/scripting/python/samba/tests/dcerpc/misc.py
source4/scripting/python/samba/tests/dcerpc/registry.py
source4/scripting/python/samba/tests/dcerpc/rpc_talloc.py
source4/scripting/python/samba/tests/dcerpc/rpcecho.py
source4/scripting/python/samba/tests/dcerpc/sam.py
source4/scripting/python/samba/tests/dcerpc/unix.py

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..8569cb55bd3985553a3ecf2467d465ae1374764d 100644 (file)
@@ -0,0 +1 @@
+"""Blackbox tests. """
index 06c1b5c7d325bc95116c340381d498fcf1bb75fc..5a56afdbfb74063405a536ce7862e44e704a2527 100755 (executable)
@@ -1,9 +1,12 @@
 #!/usr/bin/python
-# Blackbox tests for masktest
-# Copyright (C) 2008 Andrew Tridgell
-# Copyright (C) 2008 Andrew Bartlett
+# Blackbox tests for ndrdump
+# Copyright (C) 2008 Andrew Tridgell <tridge@samba.org>
+# Copyright (C) 2008 Andrew Bartlett <abartlet@samba.org>
+# Copyright (C) 2010 Jelmer Vernooij <jelmer@samba.org>
 # based on test_smbclient.sh
 
+"""Blackbox tests for ndrdump."""
+
 import os
 from samba.tests import BlackboxTestCase
 
index b6bf83030443607afd4d2f4f2691cf7f89a57dfd..0f9625570a6d1452b1664970600176827e9d2112 100644 (file)
@@ -17,4 +17,5 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+"""Tests for the DCE/RPC Python bindings."""
 
index c3679fef86d9ac33e52db1f47faa1c77193965de..22163697f8f16d66a17ce4bd1885b31d2388ff88 100644 (file)
@@ -18,6 +18,8 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+"""Tests for samba.dcerpc.bare."""
+
 from samba.dcerpc import ClientConnection
 import samba.tests
 
index 689cea360c7b6a38e427de143ff15cb032d0075d..37a647a8425abdca7e6492664d87aaab9a4626a3 100644 (file)
@@ -17,6 +17,8 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+"""Tests for samba.dcerpc.misc."""
+
 from samba.dcerpc import misc
 import samba.tests
 
index 7b0cb5f60b88ba92efc058f49e3ab649b8d38d29..f0716d5ffb07c7de73c4da319012bd410cc9743b 100644 (file)
@@ -17,6 +17,8 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+"""Tests for samba.dcerpc.registry."""
+
 from samba.dcerpc import winreg
 from samba.tests import RpcInterfaceTestCase
 
index d561dde514cf6449af11db133851672291cbdbfc..fe0f93ef9ba510453916813dcf5cd35ef6881388 100755 (executable)
@@ -10,6 +10,8 @@
 #
 #    trial samba.tests.dcerpc.rpc_talloc
 
+"""Tests for the talloc handling in the generated Python DCE/RPC bindings."""
+
 import sys
 
 sys.path.insert(0, "bin/python")
index b7dd065b8c3c623d7b8f9860a99b6b8ee7af315a..ba7ad9688b42ecffd78443e753d0208f8f137934 100644 (file)
@@ -17,6 +17,8 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+"""Tests for samba.dceprc.rpcecho."""
+
 from samba.dcerpc import echo
 from samba.ndr import ndr_pack, ndr_unpack
 from samba.tests import RpcInterfaceTestCase, TestCase
index 4ae5fd85b398efb43e2f1becdce8e5d6256736f1..38b381d3aaa248f2bc8f6378fcd715dbdd7c6605 100644 (file)
@@ -18,6 +18,8 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+"""Tests for samba.dcerpc.sam."""
+
 from samba.dcerpc import samr, security
 from samba.tests import RpcInterfaceTestCase
 
index 4e1fe65ec5cb5c947130477d7285a56cc86b43c3..16bf37e749b736e9878b23882641f44be00aead3 100644 (file)
@@ -17,6 +17,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+"""Tests for samba.dcerpc.unixinfo."""
+
+
 from samba.dcerpc import unixinfo
 from samba.tests import RpcInterfaceTestCase