diff options
author | Tim Potter <tpot@samba.org> | 2002-11-19 01:07:24 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-11-19 01:07:24 +0000 |
commit | 09cc065c3163bd7aff30e0923b47ec3b151ad8bd (patch) | |
tree | a7a6a40378c33f4bcb992535cd3366658de98053 /source3/python/examples | |
parent | 630a5714549396c90e876d2d2db1278354ce32cf (diff) | |
download | samba-09cc065c3163bd7aff30e0923b47ec3b151ad8bd.tar.gz samba-09cc065c3163bd7aff30e0923b47ec3b151ad8bd.tar.bz2 samba-09cc065c3163bd7aff30e0923b47ec3b151ad8bd.zip |
Merge from HEAD:
>Fix typo in docstring.
>Remove non-integer Pointer values, which are no longer supported.
(This used to be commit dcef3ae5caaa4461a279a4463a7b467e75efa6d7)
Diffstat (limited to 'source3/python/examples')
-rwxr-xr-x | source3/python/examples/tdbpack/test_tdbpack.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/python/examples/tdbpack/test_tdbpack.py b/source3/python/examples/tdbpack/test_tdbpack.py index 83282e745e..837600f789 100755 --- a/source3/python/examples/tdbpack/test_tdbpack.py +++ b/source3/python/examples/tdbpack/test_tdbpack.py @@ -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: |