�
��c@s�dZdZdZdZeeZeZeZeeZdZeddZ dZ
dZeeeeZe
eed ��Zed
�ie�Z[dd�Zdad�Zd
dkZdd2d��YZdefd��YZdd3d��YZeZeZ eZ!eZ"d�Z#d�Z$d�Z%dd�Z&dd�Z'dd�Z(dd
d�Z)e)Z*dd
d�Z+dd�ZeZ,d�Z-d �Z.d!�Z/d"�Z0d#�Z1e2Z3e4Z5e6Z7d$�Z8d%d&�Z9d%d'�Z:d(�Z;d)�Z<d*�Z=d+�Z>d,d-�Z?d
d.�Z@d/�ZAd
d0�ZBy0d
d1kClZlZlZlZeeZWneDj
onXdS(4s�A collection of string operations (most are no longer used).
Warning: most of the code you see here isn't normally used nowadays.
Beginning with Python 1.6, many of these functions are implemented as
methods on the standard string object. They used to be implemented by
a built-in module called strop, but strop is now obsolete itself.
Public module variables:
whitespace -- a string containing all characters considered whitespace
lowercase -- a string containing all characters considered lowercase letters
uppercase -- a string containing all characters considered uppercase letters
letters -- a string containing all characters considered letters
digits -- a string containing all characters considered decimal digits
hexdigits -- a string containing all characters considered hexadecimal digits
octdigits -- a string containing all characters considered octal digits
punctuation -- a string containing all characters considered punctuation
printable -- a string containing all characters considered printable
s
tabcdefghijklmnopqrstuvwxyztABCDEFGHIJKLMNOPQRSTUVWXYZt
0123456789tabcdeftABCDEFt01234567s !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~itcCs>|pdig}|i|�D]}||i�q!~�S(s�capwords(s, [sep]) -> string
Split the argument into words using split, capitalize each
word using capitalize, and join the capitalized words using
join. Note that this replaces runs of whitespace characters by
a single space.
t (tjointsplitt
capitalize(tstsept_[1]tx((s/sys/lib/python/string.pytcapwords-s cCs�t|�t|�jo
td�ntptdt�ant}tt|�}x,tt|��D]}|||||<qiWdi|�S(s�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.
s)maketrans arguments must have same lengthRN( tlent
ValueErrort_idmapLtmaptNonet_idmaptordtrangeR(tfromstrttostrtLti((s/sys/lib/python/string.pyt maketrans;s
i�Nt _multimapcBs eZdZd�Zd�ZRS(s�Helper class for combining multiple mappings.
Used by .{safe_,}substitute() to combine the mapping and keyword
arguments.
cCs||_||_dS(N(t_primaryt
_secondary(tselftprimaryt secondary((s/sys/lib/python/string.pyt__init__Ys cCs4y|i|SWntj
o|i|SnXdS(N(RtKeyErrorR(R tkey((s/sys/lib/python/string.pyt__getitem__]s(t__name__t
__module__t__doc__R#R&(((s/sys/lib/python/string.pyRSs t_TemplateMetaclasscBseZdZd�ZRS(s/
%(delim)s(?:
(?P<escaped>%(delim)s) | # Escape sequence of two delimiters
(?P<named>%(id)s) | # delimiter and a Python identifier
{(?P<braced>%(id)s)} | # delimiter and a braced identifier
(?P<invalid>) # Other ill-formed delimiter exprs
)
cCs�tt|�i|||�d|jo
|i}n/tihti|i�d<|id<}ti|ti ti
B�|_dS(Ntpatterntdelimtid(tsuperR*R#R+t_retescapet delimitert idpatterntcompilet
IGNORECASEtVERBOSE(tclstnametbasestdctR+((s/sys/lib/python/string.pyR#ns
(R'R(R+R#(((s/sys/lib/python/string.pyR*dstTemplatecBsDeZdZeZdZdZd�Zd�Zd�Z d�Z
RS(s.A string class for supporting $-substitutions.t$s[_a-z][_a-z0-9]*cCs
||_dS(N(ttemplate(R R<((s/sys/lib/python/string.pyR#�scCs|id�}|i| it�}|pd}d}n*|tdi|d ��}t|�}td||f��dS(NtinvalidiRi�s.Invalid placeholder in string: line %d, col %d(tstartR<t
splitlinestTrueRRR(R tmoRtlinestcolnotlineno((s/sys/lib/python/string.pyt_invalid�s
cs�t|�djotd��n|p
|�n)|ot||d��n|d���fd�}�ii|�i�S(NisToo many positional argumentsics�|id�p
|id�}|dj o�|}d|fSn|id�dj o�iSn|id�dj o�i|�ntd�i��dS(Ntnamedtbraceds%stescapedR=s#Unrecognized named group in pattern(tgroupRR1RERR+(RARFtval(tmappingR (s/sys/lib/python/string.pytconvert�s
(Rt TypeErrorRR+tsubR<(R targstkwsRL((R RKs/sys/lib/python/string.pyt
substitute�s
cs�t|�djotd��n|p
|�n)|ot||d��n|d���fd�}�ii|�i�S(NisToo many positional argumentsic s|id�}|dj o8yd�|fSWqTtj
o�i|SqTXn|id�}|dj o@yd�|fSWq�tj
o�id|dSq�Xn|id�dj o�iSn|id�dj o�iSntd�i��dS( NRFs%sRGt{t}RHR=s#Unrecognized named group in pattern(RIRR$R1RR+(RARFRG(RKR (s/sys/lib/python/string.pyRL�s$
(RRMRR+RNR<(R RORPRL((R RKs/sys/lib/python/string.pytsafe_substitute�s
(R'R(R)R*t
__metaclass__R1R2R#RERQRT(((s/sys/lib/python/string.pyR:zs cCs
|i�S(sSlower(s) -> string
Return a copy of the string s converted to lowercase.
(tlower(R((s/sys/lib/python/string.pyRV�scCs
|i�S(sSupper(s) -> string
Return a copy of the string s converted to uppercase.
(tupper(R((s/sys/lib/python/string.pyRW�scCs
|i�S(s�swapcase(s) -> string
Return a copy of the string s with upper case characters
converted to lowercase and vice versa.
(tswapcase(R((s/sys/lib/python/string.pyRX�scCs
|i|�S(sstrip(s [,chars]) -> string
Return a copy of the string s with leading and trailing
whitespace removed.
If chars is given and not None, remove characters in chars instead.
If chars is unicode, S will be converted to unicode before stripping.
(tstrip(Rtchars((s/sys/lib/python/string.pyRY�s cCs
|i|�S(s�lstrip(s [,chars]) -> string
Return a copy of the string s with leading whitespace removed.
If chars is given and not None, remove characters in chars instead.
(tlstrip(RRZ((s/sys/lib/python/string.pyR[scCs
|i|�S(s�rstrip(s [,chars]) -> string
Return a copy of the string s with trailing whitespace removed.
If chars is given and not None, remove characters in chars instead.
(trstrip(RRZ((s/sys/lib/python/string.pyR\scCs|i||�S(srsplit(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 given, splits at no more than
maxsplit places (resulting in at most maxsplit+1 words). If sep
is not specified or is None, any whitespace string is a separator.
(split and splitfields are synonymous)
(R (RRtmaxsplit((s/sys/lib/python/string.pyR scCs|i||�S(sWrsplit(s [,sep [,maxsplit]]) -> list of strings
Return a list of the words in the string s, using sep as the
delimiter string, starting at the end of the string and working
to the front. If maxsplit is given, at most maxsplit splits are
done. If sep is not specified or is None, any whitespace string
is a separator.
(trsplit(RRR]((s/sys/lib/python/string.pyR^&s RcCs
|i|�S(s�join(list [,sep]) -> string
Return a string composed of the words in list, with
intervening occurrences of sep. The default separator is a
single space.
(joinfields and join are synonymous)
(R(twordsR((s/sys/lib/python/string.pyR2s
cGs
|i|�S(spindex(s, sub [,start [,end]]) -> int
Like find but raises ValueError when the substring is not found.
(tindex(RRO((s/sys/lib/python/string.pyR`@scGs
|i|�S(srrindex(s, sub [,start [,end]]) -> int
Like rfind but raises ValueError when the substring is not found.
(trindex(RRO((s/sys/lib/python/string.pyRaIscGs
|i|�S(s�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.
(tcount(RRO((s/sys/lib/python/string.pyRbRscGs
|i|�S(sfind(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.
(tfind(RRO((s/sys/lib/python/string.pyRc]s
cGs
|i|�S(srfind(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.
(trfind(RRO((s/sys/lib/python/string.pyRdjs
cCs
t|�S(sYatof(s) -> float
Return the floating point number represented by the string s.
(t_float(R((s/sys/lib/python/string.pytatof|si
cCs
t||�S(ssatoi(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.
(t_int(Rtbase((s/sys/lib/python/string.pytatoi�scCs
t||�S(s�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.
(t_long(RRh((s/sys/lib/python/string.pytatol�scGs|i||�S(s�ljust(s, width[, fillchar]) -> string
Return a left-justified version of s, in a field of the
specified width, padded with spaces as needed. The string is
never truncated. If specified the fillchar is used instead of spaces.
(tljust(RtwidthRO((s/sys/lib/python/string.pyRl�scGs|i||�S(s�rjust(s, width[, fillchar]) -> string
Return a right-justified version of s, in a field of the
specified width, padded with spaces as needed. The string is
never truncated. If specified the fillchar is used instead of spaces.
(trjust(RRmRO((s/sys/lib/python/string.pyRn�scGs|i||�S(s�center(s, width[, fillchar]) -> string
Return a center version of s, in a field of the specified
width. padded with spaces as needed. The string is never
truncated. If specified the fillchar is used instead of spaces.
(tcenter(RRmRO((s/sys/lib/python/string.pyRo�scCs-t|t�pt|�}n|i|�S(s�zfill(x, width) -> string
Pad a numeric string x with zeros on the left, to fill a field
of the specified width. The string x is never truncated.
(t
isinstancet
basestringtreprtzfill(RRm((s/sys/lib/python/string.pyRs�sicCs
|i|�S(s�expandtabs(s [,tabsize]) -> string
Return a copy of the string s with all tab characters replaced
by the appropriate number of spaces, depending on the current
column, and the tabsize (default 8).
(t
expandtabs(Rttabsize((s/sys/lib/python/string.pyRt�scCs4|o|i||�Sn|i||d �SdS(sgtranslate(s,table [,deletions]) -> string
Return a copy of the string s, where all characters occurring
in the optional argument deletions are removed, and the
remaining characters have been mapped through the given
translation table, which must be a string of length 256. The
deletions argument is not allowed for Unicode strings.
iN(t translate(Rttablet deletions((s/sys/lib/python/string.pyRv�s
cCs
|i�S(socapitalize(s) -> string
Return a copy of the string s with only its first character
capitalized.
(R
(R((s/sys/lib/python/string.pyR
�scCs|i|||�S(s�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.
(treplace(RtoldtnewR]((s/sys/lib/python/string.pyRy�s(Rt lowercaset uppercaset
whitespace(((ER)R~R|R}tletterstascii_lowercasetascii_uppercaset
ascii_letterstdigitst hexdigitst octdigitstpunctuationt printableRtchrtxrangetltstrRRRRRRtreR/RttypeR*R:Rtindex_errort
atoi_errort
atof_errort
atol_errorRVRWRXRYR[R\R tsplitfieldsR^t
joinfieldsR`RaRbRcRdtfloatRetintRgtlongRjRfRiRkRlRnRoRsRtRvR
RytstroptImportError(((s/sys/lib/python/string.pys<module>sz
Z
"
|