Home | History | Annotate | Download | only in lib-dynload
__gmon_start__ _init _fini __cxa_finalize _Jv_RegisterClasses PyString_AsStringAndSize __ctype_b_loc PyString_FromStringAndSize PyExc_DeprecationWarning PyErr_WarnEx PyString_AsString __ctype_toupper_loc _PyArg_ParseTuple_SizeT PyExc_ValueError PyErr_SetString PyExc_OverflowError _PyString_Resize __ctype_tolower_loc PyList_New memcmp PyList_Append PyInt_FromLong free malloc memcpy PyTuple_GetItem PyErr_NoMemory PySequence_Size PySequence_GetItem PyExc_TypeError PyErr_Occurred PyLong_FromString PyOS_snprintf __errno_location PyOS_strtol PyOS_strtoul PyOS_string_to_double PyFloat_FromDouble initstrop Py_InitModule4 PyModule_AddObject libc.so.6 _edata __bss_start _end GLIBC_2.1.3 GLIBC_2.3 GLIBC_2.0 
strop functions are obsolete; use string methods maketrans arguments must have same length translation table must be 256 characters long first argument must be sequence of strings first argument must be a sequence invalid literal for atol(): %.200s invalid literal for atoi(): %.200s atoi() literal too large: %.200s invalid literal for atof(): %.200s t#t#:maketrans s#|i:expandtabs tabsize must be at least 1 new string is too long St#|t#:translate t#|z#n:split empty separator t#t#|nn:rfind t#t#|nn:find t#t#|nn:count t#t#t#|n:replace empty pattern string O|t#:join input too long s|i:atol invalid base for atol() empty string for atol() s|i:atoi invalid base for atoi() s:atof empty string for atof() strop whitespace lowercase uppercase capitalize joinfields lstrip lower rstrip splitfields swapcase upper 
T Common string manipulations, optimized for speed. Always use "import string" rather than referencing this module directly. atof(s) -> float Return the floating point number represented by the string s. atoi(s [,base]) -> int Return the integer represented by the string s in the given base, which defaults to 10. The string s must consist of one or more digits, possibly preceded by a sign. If base is 0, it is chosen from the leading characters of s, 0 for octal, 0x or 0X for hexadecimal. If base is 16, a preceding 0x or 0X is accepted. atol(s [,base]) -> long Return the long integer represented by the string s in the given base, which defaults to 10. The string s must consist of one or more digits, possibly preceded by a sign. If base is 0, it is chosen from the leading characters of s, 0 for octal, 0x or 0X for hexadecimal. If base is 16, a preceding 0x or 0X is accepted. A trailing L or l is not accepted, unless base is 0. capitalize(s) -> string Return a copy of the string s with only its first character capitalized. count(s, sub[, start[, end]]) -> int Return the number of occurrences of substring sub in string s[start:end]. Optional arguments start and end are interpreted as in slice notation. expandtabs(string, [tabsize]) -> string Expand tabs in a string, i.e. replace them by one or more spaces, depending on the current column and the given tab size (default 8). The column number is reset to zero after each newline occurring in the string. This doesn't understand other non-printing characters. find(s, sub [,start [,end]]) -> in Return the lowest index in s where substring sub is found, such that sub is contained within s[start,end]. Optional arguments start and end are interpreted as in slice notation. Return -1 on failure. join(list [,sep]) -> string joinfields(list [,sep]) -> string Return a string composed of the words in list, with intervening occurrences of sep. Sep defaults to a single space. (join and joinfields are synonymous) lstrip(s) -> string Return a copy of the string s with leading whitespace removed. lower(s) -> string Return a copy of the string s converted to lowercase. maketrans(frm, to) -> string Return a translation table (a string of 256 bytes long) suitable for use in string.translate. The strings frm and to must be of the same length. replace (str, old, new[, maxsplit]) -> string Return a copy of string str with all occurrences of substring old replaced by new. If the optional argument maxsplit is given, only the first maxsplit occurrences are replaced. rfind(s, sub [,start [,end]]) -> int Return the highest index in s where substring sub is found, such that sub is contained within s[start,end]. Optional arguments start and end are interpreted as in slice notation. Return -1 on failure. rstrip(s) -> string Return a copy of the string s with trailing whitespace removed. split(s [,sep [,maxsplit]]) -> list of strings splitfields(s [,sep [,maxsplit]]) -> list of strings Return a list of the words in the string s, using sep as the delimiter string. If maxsplit is nonzero, splits into at most maxsplit words. If sep is not specified, any whitespace string is a separator. Maxsplit defaults to 0. (split and splitfields are synonymous) strip(s) -> string Return a copy of the string s with leading and trailing whitespace removed. swapcase(s) -> string Return a copy of the string s with upper case characters converted to lowercase and vice versa. translate(s,table [,deletechars]) -> string Return a copy of the string s, where all characters occurring in the optional argument deletechars are removed, and the remaining characters have been mapped through the given translation table, which must be a string of length 256. upper(s) -> string Return a copy of the string s converted to uppercase. : 5 `U : 03 U : @1 W ?; @ X Z: % @Y 9 P Z M: # @[ : `+ @\ J; `+ @\ U; ] \; ] 9 P ] i: & ^ ?: @! _ b; ` !: ` i; ` V; `b u; b : @c ~; `d 
GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) GCC: (GNU) 4.6.x-google 20120106 (prerelease) GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) 
.symtab .strtab .shstrtab .hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .comment .debug_aranges .debug_info .debug_abbrev .debug_line .debug_ranges 
initfini.c crtstuff.c __CTOR_LIST__ __DTOR_LIST__ __JCR_LIST__ __do_global_dtors_aux completed.5467 dtor_idx.5469 frame_dummy __CTOR_END__ __FRAME_END__ __JCR_END__ __do_global_ctors_aux stropmodule.c do_strip strop_strip strop_rstrip strop_lstrip strop_upper strop_maketrans strop_expandtabs strop_translate strop_swapcase strop_lower strop_capitalize strop_splitfields strop_rfind strop_find strop_count strop_replace strop_joinfields strop_atol strop_atoi strop_atof strop_module__doc__ strop_methods atof__doc__ atoi__doc__ atol__doc__ capitalize__doc__ count__doc__ expandtabs__doc__ find__doc__ joinfields__doc__ lstrip__doc__ lower__doc__ maketrans__doc__ replace__doc__ rfind__doc__ rstrip__doc__ splitfields__doc__ strip__doc__ swapcase__doc__ translate__doc__ upper__doc__ _GLOBAL_OFFSET_TABLE_ __x86.get_pc_thunk.bx __dso_handle __DTOR_END__ _DYNAMIC __errno_location@@GLIBC_2.0 PyModule_AddObject PyOS_string_to_double PyString_AsString memcmp@@GLIBC_2.0 PyExc_ValueError __gmon_start__ _Jv_RegisterClasses _PyArg_ParseTuple_SizeT _fini PyErr_NoMemory PyExc_TypeError PyOS_snprintf PyString_FromStringAndSize PyFloat_FromDouble __ctype_toupper_loc@@GLIBC_2.3 PyErr_Occurred free@@GLIBC_2.0 __ctype_b_loc@@GLIBC_2.3 PyExc_DeprecationWarning memcpy@@GLIBC_2.0 PyInt_FromLong PyLong_FromString initstrop PySequence_GetItem PySequence_Size PyErr_WarnEx __bss_start malloc@@GLIBC_2.0 PyExc_OverflowError PyList_Append PyOS_strtoul __ctype_tolower_loc@@GLIBC_2.3 Py_InitModule4 PyString_AsStringAndSize _end PyTuple_GetItem _PyString_Resize PyErr_SetString _edata PyOS_strtol PyList_New __cxa_finalize@@GLIBC_2.1.3 _init