aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/notmuch/filename.py
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2011-12-14 14:04:35 +0100
committerSebastian Spaeth <Sebastian@SSpaeth.de>2012-01-02 16:33:29 +0100
commit4a6642a2a1e2d15f71fff6b6a0b4bbb0296e2bdb (patch)
tree03010a44550262af65950393339f2064087ae199 /bindings/python/notmuch/filename.py
parent26d52cf6cf4573fa2ef41b6150f5686bc91ea785 (diff)
py3k: Add and use a mixin class that implements __str__
Amended by Sebastian Spaeth <Sebastian@SSpaeth.de> to include the required sys import in globals.py.
Diffstat (limited to 'bindings/python/notmuch/filename.py')
-rw-r--r--bindings/python/notmuch/filename.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/bindings/python/notmuch/filename.py b/bindings/python/notmuch/filename.py
index a7cd7e6..969931a 100644
--- a/bindings/python/notmuch/filename.py
+++ b/bindings/python/notmuch/filename.py
@@ -18,10 +18,10 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
"""
from ctypes import c_char_p
from notmuch.globals import (nmlib, STATUS, NotmuchError,
- NotmuchFilenamesP, NotmuchMessageP)
+ NotmuchFilenamesP, NotmuchMessageP, _str, Python3StringMixIn)
-class Filenames(object):
+class Filenames(Python3StringMixIn):
"""Represents a list of filenames as returned by notmuch
This object contains the Filenames iterator. The main function is
@@ -98,9 +98,6 @@ class Filenames(object):
self._files = None
- def __str__(self):
- return unicode(self).encode('utf-8')
-
def __unicode__(self):
"""Represent Filenames() as newline-separated list of full paths