diff options
author | Martin Pool <mbp@samba.org> | 2002-11-12 21:40:37 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-11-12 21:40:37 +0000 |
commit | 4a18526257ec4582679efa7a21d0b31ad07992fb (patch) | |
tree | 81b5dc8fa092b92e896d51c57c7a8a9c8b1f8793 | |
parent | 5191719eeec7062118da2be3aefe35d065e97900 (diff) | |
download | samba-4a18526257ec4582679efa7a21d0b31ad07992fb.tar.gz samba-4a18526257ec4582679efa7a21d0b31ad07992fb.tar.xz samba-4a18526257ec4582679efa7a21d0b31ad07992fb.zip |
Remove non-integer Pointer values, which are no longer supported.
-rwxr-xr-x | source/python/examples/tdbpack/test_tdbpack.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source/python/examples/tdbpack/test_tdbpack.py b/source/python/examples/tdbpack/test_tdbpack.py index 83282e745e4..d3364542740 100755 --- a/source/python/examples/tdbpack/test_tdbpack.py +++ b/source/python/examples/tdbpack/test_tdbpack.py @@ -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: |