##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in "bookflow"...
wrapfunction: use sysstr instead of bytes as argument in "bookflow" This is as valid and simpler, it will help us to eventually get ride of `safehasattr`.

File last commit:

r49730:6000f5b2 default
r51668:3c8a31be default
Show More
strip.py
21 lines | 914 B | text/x-python | PythonLexer
Valentin Gatien-Baron
strip: move into core...
r46477 """strip changesets and their descendants from history (DEPRECATED)
The functionality of this extension has been included in core Mercurial
since version 5.7. Please use :hg:`debugstrip ...` instead.
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826
Javi Merino
strip: fix spelling: "allows to" -> "allows you to"
r19945 This extension allows you to strip changesets and all their descendants from the
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826 repository. See the command help for details.
"""
timeless
strip: use absolute_import
r28377
Valentin Gatien-Baron
strip: move into core...
r46477 from mercurial import commands
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
extensions: change magic "shipped with hg" string...
r29841 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
Augie Fackler
extensions: document that `testedwith = 'internal'` is special...
r25186 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
# be specifying the version(s) of Mercurial they are tested with, or
# leave the attribute unspecified.
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 testedwith = b'ships-with-hg-core'
Pierre-Yves David
strip: move checksubstate from mq to strip...
r19823
Valentin Gatien-Baron
strip: move into core...
r46477 # This is a bit ugly, but a uisetup function that defines strip as an
# alias for debugstrip would override any user alias for strip,
# including aliases like "strip = strip --no-backup".
commands.command.rename(old=b'debugstrip', new=b'debugstrip|strip')