��c @s�dZddlmZmZmZmZmZmZddlmZm Z m
Z
mZmZm
Z
ddlmZddlmZddlmZddlZddlZddlZddlZejd7_ejd 7_iZeje�Zd
ZdZdZd
Zidd6dd6dd6dd6dd6Zd�Z d�Z!d�Z"ej#j$ie d6e!d6e"d6�idd6dd 6Z&d!�Z'd"�Z(d#�Z)d$e*fd%��YZ+d&ejfd'��YZ,d(�Z-d)�Z.ed*d+d,ded-�fd.d/ded0�ed1�fged2��d3��Z/ed4ej0ed5��d6��Z1ed7d8d9ded:�fd;d<ded=�fd>d?ded@�fgej0edA��dB��Z2edCej0edD��dE��Z3dF�Z4dG�Z5dS(HsBexpand keywords in tracked files
This extension expands RCS/CVS-like or self-customized $Keywords$ in
tracked text files selected by your configuration.
Keywords are only expanded in local repositories and not stored in the
change history. The mechanism can be regarded as a convenience for the
current user or for archive distribution.
Keywords expand to the changeset data pertaining to the latest change
relative to the working directory parent of each file.
Configuration is done in the [keyword], [keywordset] and [keywordmaps]
sections of hgrc files.
Example::
[keyword]
# expand keywords in every python file except those matching "x*"
**.py =
x* = ignore
[keywordset]
# prefer svn- over cvs-like default keywordmaps
svn = True
.. note::
The more specific you are in your filename patterns the less you
lose speed in huge repositories.
For [keywordmaps] template mapping and expansion demonstration and
control run :hg:`kwdemo`. See :hg:`help templates` for a list of
available templates and filters.
Three additional date template filters are provided:
:``utcdate``: "2006/09/18 15:13:13"
:``svnutcdate``: "2006-09-18 15:13:13Z"
:``svnisodate``: "2006-09-18 08:13:13 -700 (Mon, 18 Sep 2006)"
The default template mappings (view with :hg:`kwdemo -d`) can be
replaced with customized keywords and templates. Again, run
:hg:`kwdemo` to control the results of your configuration changes.
Before changing/disabling active keywords, you must run :hg:`kwshrink`
to avoid storing expanded keywords in the change history.
To force expansion after enabling it, or a configuration change, run
:hg:`kwexpand`.
Expansions spanning more than one line and incremental expansions,
like CVS' $Log$, are not supported. A keyword template map "Log =
{desc}" expands to the first line of the changeset description.
i�(tcommandstcontexttcmdutiltdispatchtfilelogt
extensions(t localrepotmatchtpatchttemplatefilterst templatertutil(tscmutil(twebcommands(t_Ns kwdemos kwexpand kwfiles kwshrinktinternalsgadd addremove annotate bundle export grep incoming init log outgoing push tip verify convert email glogs9merge kwexpand kwshrink record qrecord resolve transplanttrecords
green boldskwfiles.enabledscyan bold underlineskwfiles.deletedtgreenskwfiles.enabledunknowntboldskwfiles.ignoredtnoneskwfiles.ignoredunknowncCs#tjtj|�ddfd�S(sN:utcdate: Date. Returns a UTC-date in this format: "2009/08/18 11:00:13".
is%Y/%m/%d %H:%M:%S(Rtdatestrt parsedate(ttext((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytutcdatevscCstj|d�S(sj:svnisodate: Date. Returns a date in this format: "2009-08-18 13:00:13
+0200 (Tue, 18 Aug 2009)".
s%%Y-%m-%d %H:%M:%S %1%2 (%a, %d %b %Y)(RR(R((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt
svnisodate{scCs#tjtj|�ddfd�S(sV:svnutcdate: Date. Returns a UTC-date in this format: "2009-08-18
11:00:13Z".
is%Y-%m-%d %H:%M:%SZ(RRR(R((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt
svnutcdate�sRRRR
tthgcmdcCs�idd6dd6}idd6dd6dd 6d
d6dd
6dd6idd6dd
6dd6dd6dd6f}|j||jdd��|S(sBReturns default keywordmaps according to keywordset configuration.s{node|short}tRevisions
{author|user}tAuthors{date|utcdate}tDates{file|basename},vtRCSfiletRCSFiles{root}/{file},vtSources;{file|basename},v {node|short} {date|utcdate} {author|user}tIds9{root}/{file},v {node|short} {date|utcdate} {author|user}tHeaders{date|svnisodate}s>{file|basename},v {node|short} {date|svnutcdate} {author|user}tLastChangedRevisiont
LastChangedBytLastChangedDatet
keywordsettsvn(tupdatet
configbool(tuit templatestkwsets((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt_defaultkwmaps�s$
cCs
|d|�S(slHelper for keyword expansion removal in text.
Depending on subfunc also returns number of substitutions.s$\1$((Rtsubfunc((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt_shrinktext�scCsd|d \}}g|D]}||kr|^q}g|D]}||kr<|^q<}||fS(s�Retrieves modified and added files from a working directory state
and returns the subset of each contained in given changed files
retrieved from a change context.i((twstatustchangedtmodifiedtaddedtf((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt
_preselect�s%%tkwtemplatercBs�eZdZd�Zejd��Zejd��Zejd��Zd�Z d�Z
d�Zd�Ze
d �Zd
�Zd�Zd�ZRS(
sr
Sets up keyword templates, corresponding keyword regex, and
provides keyword substitution functions.
cCs�||_||_tj|jdg||�|_tdtj�k|_t|_ |jj
d�}|r�td�|D��|_nt
|j�|_dS(NRRtkeywordmapscss-|]#\}}|tj|t�fVqdS(N(R
tparsestringtFalse(t.0tktv((s1/sys/lib/python2.7/site-packages/hgext/keyword.pys <genexpr>�s(R+trepoRtroottkwtoolst
restrictedtsplittrestrictR:t
postcommittconfigitemstdictR,R.(tselfR+R>tinctexctkwmaps((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt__init__�s ! cCs"djttj|jj���S(s+Returns bar-separated and escaped keywords.t|(tjointmaptretescapeR,tkeys(RG((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRP�scCstjd|j�S(s&Returns regex for unexpanded keywords.s\$(%s)\$(ROtcompileRP(RG((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytrekw�scCstjd|j�S(s$Returns regex for expanded keywords.s\$(%s): [^$\n\r]*? \$(RORRRP(RG((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytrekwexp�scs"���fd�}|||�S(s1Replaces keywords in data with expanded template.cs�|jd�}tj�j�jtddt�}|j�j|��jj �|j
�d�jjd��tj
�jj��}d||fS(NiRR?tfiles $%s: %s $(tgroupRtchangeset_templaterR+R>R:tNonetuse_templateR,t
pushbuffertshowR?R t firstlinet popbuffer(tmobjtkwtcttekw(tctxtpathRG(s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkwsub�s
((RGtdataRcRbR/Rd((RbRcRGs1/sys/lib/python2.7/site-packages/hgext/keyword.pyt
substitute�s cCs|jj|d|�j�S(s4Similar to filelog.linkrev, but returns a changectx.tfileid(R>tfilectxt changectx(RGRcRg((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytlinkctx�scCs[|jrW|j|�rWtj|�rW|j||�}|j||||jj�S|S(s$Returns data with keywords expanded.(RCRRtbinaryRjRfRStsub(RGRctnodeReRb((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytexpand�s)cCs;g|D]0}|j|�rd|j|�kr|^qS(skReturns subset of candidates which are configured for keyword
expansion but are not symbolic links.tl(Rtflags(RGtcandRbR5((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytiskwfile�scCs|js|s|jr-|j||�}n|s7dS|joC|}|js[|rj|rj|j�}n|jsy|r�|j}n |j}|r�td�} ntd�} xf|D]^}
|jr�jj|
�j ||
�}n|jj
|
�}tj|�rq�n|rW|r3|j
|
||
�}n|j||
||j�\}}n3|jrr|j|�}nt||j�\}}|r�|jj| |
�|jj|
ddt�}
|
j|�|
j�|r�jjj|
�q|jr|jjj|
�qq�q�WdS(s7Overwrites selected files expanding/shrinking keywords.Ns"overwriting %s expanding keywords
s"overwriting %s shrinking keywords
twbt
atomictemp(RCRDRrtmanifestRSRTRR>RUtreadtwreadRRkRjRftsubntsearchR0R+tnotetwopenertTruetwritetclosetdirstatetnormaltnormallookup(RGRbt
candidatestlookupRnRStkwcmdtmftre_kwtmsgR5Retfoundtfp((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt overwrite�sF
"$
cCs6|j|�r2tj|�r2t||jj�S|S(s4Returns text with all keyword substitutions removed.(RRRkR0RTRl(RGtfnameR((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytshrinkscCsP|j|�rLdj|�}tj|�sLt||jj�jt�Sn|S(s1Returns lines with keyword substitutions removed.R( RRMRRkR0RTRlt
splitlinesR|(RGR�tlinesR((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytshrinklines%s
cCs|jr|j||�S|S(s]If in restricted mode returns data read from wdir with
keyword substitutions removed.(RCR�(RGR�Re((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRw-s (t__name__t
__module__t__doc__RKRt
propertycacheRPRSRTRfRjRnRrR:R�R�R�Rw(((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR7�s
* t kwfilelogcBs8eZdZd�Zd�Zddd�Zd�ZRS(s�
Subclass of filelog to hook into its read, add, cmp methods.
Keywords are "stored" unexpanded, and processed on reading.
cCs/tt|�j||�||_||_dS(N(tsuperR�RKtkwtRc(RGtopenerR�Rc((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRK9s cCsDtt|�j|�}|j|�r+|S|jj|j||�S(s&Expands keywords when reading filelog.(R�R�RvtrenamedR�RnRc(RGRmRe((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRv>scCs=|jj|j|�}tt|�j||||||�S(s5Removes keyword substitutions when adding to filelog.(R�R�RcR�R�tadd(RGRtmetattrtlinktp1tp2((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�EscCs1|jj|j|�}tt|�j||�S(s-Removes keyword substitutions for comparison.(R�R�RcR�R�tcmp(RGRmR((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�JsN(R�R�R�RKRvRXR�R�(((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�4s
c Os�|rI|jdtj|||�dtd|jd�pE|jd��S|jd�rptjtd���ntjtd���dS( s\Bails out if [keyword] configuration is not active.
Returns status of working directory.Rtcleantunknowntalltkeywords[keyword] patterns cannot matchs no [keyword] patterns configuredN( tstatusRRR|tgetRERtAbortR(R+R>twctxR�tpatstopts((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt_statusOs$cOs�|d}t|j��dkr:tjtd���ntd}|j�}z�t||||||�}|\} }
}}}
}}| s�|
s�|s�|r�tjtd���n|j ||t
|�Wd|j�XdS(s7Selects files and passes them to kwtemplater.overwrite.isoutstanding uncommitted mergeR
soutstanding uncommitted changesN(RXtlentparentsRR�RR@twlockR�R�R|trelease(R+R>RnR�R�R�R�R�R�R3R4tremovedtdeletedR�tignoredR�((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt _kwfwriteYs
tkwdemotdtdefaults"show default keyword template mapsR5trcfilesread maps from rcfiletFILEs+hg kwdemo [-d] [-f RCFILE] [TEMPLATEMAP]...csN�fd�}d}tjdd�}�jtd�|�tj|j|t�}�jd|d��j dd�}�jdd|��j
d �}|s�|jd
�r��jtd��|r�jtd��n|jd
�s�r)|r�jtd��q)�jtd��n|jd
�rQ�j
|jd
��n|r�dgg|D]} | d^qd}
|jdd�}|j|
�|j��j
|jd��nt�j
d ��}n�|jd
�rn|r�jtd��n�jtd��t��}|r��jtd��x0|j�D]\}
}�jd |
|�qEWq�n4�jtd��|r�t|�}nt��}t��t�|��jd�|d�j
d��|d�j
d��|d |j��ddjt|j���d}|jj||�|d)j|g��jtd�|��j|�|jjd�x[�j
d�D]J\}}|jdd �d!j d"�d#kr�|j!jd|d�q�q�Wtd$�}�jd%|�|j"d&|��jtd'���j|j#|��t$j%|d(t�d)S(*s�print [keywordmaps] configuration and an expansion example
Show current, custom, or default keyword template maps and their
expansions.
Extend the current configuration by specifying maps as arguments
and using -f/--rcfile to source an external hgrc file.
Use -d/--default to disable current configuration.
See :hg:`help templates` for information on templates and filters.
csI�jd|�x1t|�D]#\}}�jd||f�qWdS(Ns[%s]
s%s = %s
(R}tsorted(tsectiontitemsR<R=(R+(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt demoitems{ssdemo.txtRskwdemo.s$creating temporary repository at %s
R�R'R(R8R�s3
configuration using custom keyword template maps
s! extending current template maps
R�s# overriding default svn keywordset
s# overriding default cvs keywordset
s[keywordmaps]
s
thgrctws-
configuration using default svn keywordset
s-
configuration using default cvs keywordset
s! disabling current template maps
s4
configuration using current keyword template maps
s[extensions]
keyword =
t$s$
$s$
s
keywords written to %s:
t
demobranchthookst.iitcommiti�s.hg keyword configuration and expansion exampleshg ci -m '%s'
Rs
keywords expanded
t
ignore_errorsN(&ttempfiletmkdtempRzRRtlocalrepositorytbaseuiR|t setconfigR*RER�R�t
readconfigR�t
writelinesR~RMRFR.t iteritemstuisetupt reposetupR}R�RQR{RXR�Rt setbranchRBtfindR+R�Rwtshutiltrmtree(R+R>targsR�R�tfnttmpdirR(tuikwmapstatrcmapsR�RJR<R=tkeywordstnametcmdR�((R+s1/sys/lib/python2.7/site-packages/hgext/keyword.pytdemoisx$
#
%tkwexpands!hg kwexpand [OPTION]... [FILE]...cOst||t||�dS(s�expand keywords in the working directory
Run after (re)enabling keyword expansion.
kwexpand refuses to run if given files contain local changes.
N(R�R|(R+R>R�R�((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRn�s tkwfilestAR�s&show keyword status flags of all filestitignores"show files excluded from expansiontuR�s%only show unknown (not tracked) filess hg kwfiles [OPTION]... [FILE]...cOsOtd}|d}t||||||�}|rA|j�pDd}|\}} }
}}}
}g}|jd�s�|jd�r�t|| |�}n|j||�}|j||�}|j||�}|jd�s�jd�r|||f}ngggf}|jd�s2|jd�r�|g|D]}||kr<|^q<g|D]}||kr^|^q^f7}ndj�}t|d|�}|j d|�}d }|jd�s�|j
r�d
}nxd|D]\\}}}d|}x@|D]8}|j�|jd|||j
||�d
|�qWq�|j�dS(sshow files configured for keyword expansion
List which files in the working directory are matched by the
[keyword] configuration patterns.
Useful to prevent inadvertent keyword expansion and to speed up
execution by including only files that are actual candidates for
expansion.
See :hg:`help keyword` on how to construct patterns both for
inclusion and exclusion of files.
With -A/--all and -v/--verbose the codes used to show the status
of files are::
K = keyword expansion candidate
k = keyword expansion candidate (not tracked)
I = ignored
i = ignored (not tracked)
R
RR�R�R�s5enabled deleted enabledunknown ignored ignoredunknownsK!kIiR�s%.0s%s
s%s %s
skwfiles.s
kwstatus pathtlabelN(R@RXR�tgetcwdR�R�RrRBtzipt formattertverboset startitemR}tpathtotend(R+R>R�R�R�R�R�tcwdR3R4R�R�R�R�R�tfilesR�t kwdeletedt kwunknownt showfilesR5tkwlabelstkwstatestfmtfmttkwstatetchart filenamesR�((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR��s<
%,
!tkwshrinks!hg kwshrink [OPTION]... [FILE]...cOst||t||�dS(s�revert expanded keywords in the working directory
Must be run before changing/disabling active keywords.
kwshrink refuses to run if given files contain local changes.
N(R�R:(R+R>R�R�((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�
s cCs d�}tjtd|�dS(s8 Monkeypatches dispatch._parse to retrieve user command.cSs;|||�\}}}}}|td<|||||fS(s9Monkeypatch dispatch._parse to obtain running hg command.R(R@(torigR+R�R�tfunctoptionst
cmdoptions((s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkwdispatch_parses
t_parseN(RtwrapfunctionR(R+R�((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�s csyyU|j�sPtdtj�ksPdtj|j�ksP|jjd�rTdSWnt k
rhnXgdg}}xF|j
d�D]5\}}|dkr�|j|�q�|j|�q�W|s�dSt||||�td<�d |j
f��fd
��Y�d�fd�}dddddd�fd
�}�fd�}�fd�} t�fd�}
�fd�}�fd�}tjtjd|�tjtjd|�tjtd|�tjtd| �tjtd|
�x'dj�D]}
tjt|
|�q�Ntj�D]@}y&tj|�}tj|d|�Wq(tk
rgq(Xq(W�|_
dS(sSets up repo as kwrepo for keyword substitution.
Overrides file method to return kwfilelog instead of filelog
if file matches user configuration.
Wraps commit to overwrite configured files with updated
keyword substitutions.
Monkeypatches patch and webcommands.Rs.hgsbundle:Ns.hg*R�R�R
tkwrepocseeZ�fd�Z��fd�Z�fd�Ze��fd�Zee��fd�ZRS(cs0|ddkr|d}nt|j�|�S(Nit/i(R�tsopener(RGR5(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRU=s
cs(t�|�j|�}�j||�S(N(R�Rw(RGtfilenameRe(R�R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRwBscs7|j|_zt�|�j||�SWd|`XdS(N(tkwcommitctxt commitctxR�R�(RGR�R�(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�Fscsvt�|�j||�}�jsr�j}t�_�j||t|j�|j��t t�|�_n|S(N(
R�RRDRCR|R�R�R4R3R:(RGRbterrortnRC(R�R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyROs &
c s�|j�}z�|s(|dj�}nt�|�j||�}|s�|d}t|dj�|�\}}�j||tt��j||tt �n|SWd|j
�XdS(NR�(R�R�R�trollbackR6RXR�R�R|R:R�( RGtdryruntforceR�R2tretRbR3R4(R�R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyRZs
(R�R�RURwR�R:RR((R�R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�<s
cs8|||||||��j|j|j�|_dS(sxMonkeypatch/wrap patch.patchfile.__init__ to avoid
rejects or conflicts due to expanded keywords in working dir.N(R�R�R�(R�RGR+tgptbackendtstoreteolmode(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkwpatchfile_initjsRcs%t�_||||||||�S(s*Monkeypatch patch.diff to avoid expansion.(R|RC(R�R>tnode1tnode2RtchangesR�tprefix(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkw_diffqs cstj�_||||�S(s2Wraps webcommands.x turning off keyword expansion.(RtneverR(R�twebtreqttmpl(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt
kwweb_skipwscs�|j�}z|t�_||||||||�} | |j�kr�|| }
t�_�j|
|
j�tt�t�_n| SWd|j�XdS(s3Wraps cmdutil.amend expanding keywords after amend.N( R�R|RDRmRCR�R�R:R�(R�R+R>t
commitfunctoldtextraR�R�R�tnewidRb(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkw_amend|s
c
s��j�}z�||�|||�|jd�r8dS�d��j������fd�}g�jj�D]-}d�j|�krv||�rv|^qv} �j�| tt�Wd|j �XdS(s�Wraps cmdutil.copy so that copy/rename destinations do not
contain expanded keywords.
Note that the source of a regular file destination may also be a
symlink:
hg cp sym x -> x is symlink
cp sym x; hg cp -A sym x -> x is file (maybe expanded keywords)
For the latter we have to follow the symlink to find out whether its
target is configured for expansion and we therefore must unexpand the
keywords in the destination.tdry_runNcs[�jj|�}d�j|�krNtj�j�tjj|��}n�j |�S(s�Returns true if dest is a regular file and configured for
expansion or a symlink which points to a file configured for
expansion. Ro(
RtcopiedRpRt canonpathR?tosRctrealpathR(tdesttsource(R�R�R>R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pythaskwsource�s
Ro(
R�R�RXR�RtcopiesRpR�R:R�(
R�R+R>R�R�trenameR�R%R5R�(R�(R�R>R�s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkw_copy�s
-c
s�|j�}z�t�_|d}|dj�}||||||�} |d}
||
kr�t||
j��\}}t�_�j |
|tt��j |
|ttt�t�_n| SWd|j
�XdS(s9Wraps record.dorecord expanding keywords after recording.R�N(R�R|RDRXR�R6R�R:RCR�R�(
R�R+R>RR�R�R�RbR1R trecctxR3R4(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pytkw_dorecord�s
cs�|jdkr^|jjsv�j|j��rBd|j�ksv|j�d|j�ksv|j�|j�kr�|jj |j
|j��StS(NRoi(
t_filerevRXt_repot_encodefilterpatsRRcRptsizet_filelogR�t _filenodeReR|(R�RGtfctx(R�(s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt
kwfilectx_cmp�s'R�RKtdifftamendtcopys$annotate changeset rev filediff difftdorecord(tlocalR@tnokwcommandsRBRt splitpathR?t_urlt
startswithtAttributeErrorREtappendR7t __class__RXR:RR�RRhRt patchfileRR
trecordextensionsR�tKeyError(R+R>RHRItpattoptRRRRR(R*R2tcR�R((R�R�s1/sys/lib/python2.7/site-packages/hgext/keyword.pyR�!sL#
"."
(6R�t mercurialRRRRRRRRRR R
RRtmercurial.hgwebR
tmercurial.i18nRR!ROR�R�toptionalrepot inferrepotcmdtabletcommandt
testedwithR8RAR@t
colortableRRRtfiltersR)[email protected]objectR7R�R�R�R�twalkoptsRnR�R�R�R�(((s1/sys/lib/python2.7/site-packages/hgext/keyword.pyt<module>Rsb..0
W$6$
|