Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Public Member Functions | |
def | __init__ |
def | __hash__ |
def | __setitem__ |
def | __delitem__ |
def | __setslice__ |
def | __delslice__ |
def | immutable |
![]() | |
def | __init__ |
def | __str__ |
def | __repr__ |
def | __int__ |
def | __long__ |
def | __float__ |
def | __complex__ |
def | __hash__ |
def | __cmp__ |
def | __contains__ |
def | __len__ |
def | __getitem__ |
def | __getslice__ |
def | __add__ |
def | __radd__ |
def | __iadd__ |
def | __mul__ |
def | __imul__ |
def | capitalize |
def | center |
def | count |
def | decode |
def | encode |
def | endswith |
def | expandtabs |
def | find |
def | index |
def | isalpha |
def | isalnum |
def | isdecimal |
def | isdigit |
def | islower |
def | isnumeric |
def | isspace |
def | istitle |
def | isupper |
def | join |
def | ljust |
def | lower |
def | lstrip |
def | replace |
def | rfind |
def | rindex |
def | rjust |
def | rstrip |
def | split |
def | splitlines |
def | startswith |
def | strip |
def | swapcase |
def | title |
def | translate |
def | upper |
Data Fields | |
data | |
![]() | |
data | |
mutable string objects Python strings are immutable objects. This has the advantage, that strings may be used as dictionary keys. If this property isn't needed and you insist on changing string values in place instead, you may cheat and use MutableString. But the purpose of this class is an educational one: to prevent people from inventing their own mutable string class derived from UserString and than forget thereby to remove (override) the __hash__ method inherited from ^UserString. This would lead to errors that would be very hard to track down. A faster and better solution is to rewrite your program using lists.
Definition at line 132 of file UserString.py.
def __delitem__ | ( | self, | |
index | |||
) |
Definition at line 154 of file UserString.py.
References UserDict.data, UserList.data, UserString.data, _localized_month.data, _localized_day.data, SubPattern.data, _Hqxcoderengine.data, _Rlecoderengine.data, Request.data, simple_producer.data, _Environ.data, and FormContentDict.data.
def __delslice__ | ( | self, | |
start, | |||
end | |||
) |
Definition at line 165 of file UserString.py.
References UserDict.data, UserList.data, UserString.data, _localized_month.data, _localized_day.data, SubPattern.data, _Hqxcoderengine.data, _Rlecoderengine.data, Request.data, simple_producer.data, _Environ.data, FormContentDict.data, and sre_parse.max.
def __hash__ | ( | self) |
Definition at line 149 of file UserString.py.
def __setitem__ | ( | self, | |
index, | |||
sub | |||
) |
Definition at line 151 of file UserString.py.
References UserDict.data, UserList.data, UserString.data, _localized_month.data, _localized_day.data, SubPattern.data, _Hqxcoderengine.data, _Rlecoderengine.data, Request.data, simple_producer.data, _Environ.data, and FormContentDict.data.
def __setslice__ | ( | self, | |
start, | |||
end, | |||
sub | |||
) |
Definition at line 157 of file UserString.py.
References UserDict.data, UserList.data, UserString.data, _localized_month.data, _localized_day.data, SubPattern.data, _Hqxcoderengine.data, _Rlecoderengine.data, Request.data, simple_producer.data, _Environ.data, FormContentDict.data, sre_parse.max, and locale.str().
def immutable | ( | self) |
Definition at line 168 of file UserString.py.
References UserDict.data, UserList.data, UserString.data, _localized_month.data, _localized_day.data, SubPattern.data, _Hqxcoderengine.data, _Rlecoderengine.data, Request.data, simple_producer.data, _Environ.data, and FormContentDict.data.
data |
Definition at line 148 of file UserString.py.