Переглянути джерело

Some bugfixes and additions to the MixIn.

(Don't mind me, just developing software on Amtrak on the way to
Wikimania).
tags/v0.1
Ben Kurtovic 12 роки тому
джерело
коміт
0cd2bd3168
1 змінених файлів з 19 додано та 6 видалено
  1. +19
    -6
      mwparserfromhell/string_mixin.py

+ 19
- 6
mwparserfromhell/string_mixin.py Переглянути файл

@@ -30,34 +30,47 @@ class StringMixIn(object): # UnicodeMixIn?
return repr(unicode(self)) return repr(unicode(self))


def __lt__(self, other): def __lt__(self, other):
if isinstance(other, unicodeingMixin):
if isinstance(other, StringMixin):
return unicode(self) < unicode(other) return unicode(self) < unicode(other)
return unicode(self) < other return unicode(self) < other


def __le__(self, other): def __le__(self, other):
if isinstance(other, unicodeingMixin):
if isinstance(other, StringMixin):
return unicode(self) <= unicode(other) return unicode(self) <= unicode(other)
return unicode(self) <= other return unicode(self) <= other


def __eq__(self, other): def __eq__(self, other):
if isinstance(other, unicodeingMixin):
if isinstance(other, StringMixin):
return unicode(self) == unicode(other) return unicode(self) == unicode(other)
return unicode(self) == other return unicode(self) == other


def __ne__(self, other): def __ne__(self, other):
if isinstance(other, unicodeingMixin):
if isinstance(other, StringMixin):
return unicode(self) != unicode(other) return unicode(self) != unicode(other)
return unicode(self) != other return unicode(self) != other


def __gt__(self, other): def __gt__(self, other):
if isinstance(other, unicodeingMixin):
if isinstance(other, StringMixin):
return unicode(self) > unicode(other) return unicode(self) > unicode(other)
return unicode(self) > other return unicode(self) > other


def __ge__(self, other): def __ge__(self, other):
if isinstance(other, unicodeingMixin):
if isinstance(other, StringMixin):
return unicode(self) >= unicode(other) return unicode(self) >= unicode(other)
return unicode(self) >= other return unicode(self) >= other


def __nonzero__(self):
return bool(unicode(self))

def __len__(self):
return len(unicode(self))

def __iter__(self):
for char in unicode(self):
yield char

def __getitem__(self, index): def __getitem__(self, index):
return unicode(self)[index] return unicode(self)[index]

def __contains__(self, item):
return item in unicode(self)

Завантаження…
Відмінити
Зберегти