Merge from HEAD:
authorTim Potter <tpot@samba.org>
Tue, 19 Nov 2002 01:07:24 +0000 (01:07 +0000)
committerTim Potter <tpot@samba.org>
Tue, 19 Nov 2002 01:07:24 +0000 (01:07 +0000)
>Fix typo in docstring.

>Remove non-integer Pointer values, which are no longer supported.

source/python/examples/tdbpack/test_tdbpack.py

index 83282e745e40ca3dd3c6a57ec9e0dda9e16a6a07..837600f789e0dd4b0cd49827912b1108287edd4d 100755 (executable)
@@ -1,6 +1,6 @@
 #! /usr/bin/env python2.2
 
-__doc__ = """test case for samba.tdbkpack functions
+__doc__ = """test case for samba.tdbpack functions
 
 tdbpack provides a means of pickling values into binary formats
 compatible with that used by the samba tdbpack()/tdbunpack()
@@ -113,8 +113,6 @@ class PackTests(unittest.TestCase):
         not "canonical".
         """
         cases = [('w', (42,), '\x2a\0'),
-                 ('p', [None], '\0\0\0\0'),
-                 ('p', ['true'], '\x01\0\0\0'),
                  ]
 
         for packer in both_packers: