summaryrefslogtreecommitdiff
path: root/python/databuffer.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/databuffer.py')
-rw-r--r--python/databuffer.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/databuffer.py b/python/databuffer.py
index 3d754090..8644a75e 100644
--- a/python/databuffer.py
+++ b/python/databuffer.py
@@ -34,8 +34,6 @@ class DataBuffer(object):
self.handle = core.handle_of_type(handle, core.BNDataBuffer)
elif isinstance(contents, int) or isinstance(contents, long):
self.handle = core.BNCreateDataBuffer(None, contents)
- elif isinstance(contents, str):
- self.handle = core.BNCreateDataBuffer(contents.encode(), len(contents.encode()))
elif isinstance(contents, DataBuffer):
self.handle = core.BNDuplicateDataBuffer(contents.handle)
else: