##// END OF EJS Templates
typing: add stub functions for `cext/charencoding`...
typing: add stub functions for `cext/charencoding` I'm not sure if it's better to have a separate file, and currently pytype doesn't really know how to handle these, so it's no help in figuring that out. Technically, these methods are part of the `mercurial.cext.parsers` module, so put them into the existing stub until there's a reason to split it out.

File last commit:

r52163:ceeb8fa2 default
r52834:e58f02e2 default
Show More
test-censor2.t
25 lines | 690 B | text/troff | Tads3Lexer
Arseniy Alekseyev
censor: demonstrate a bug...
r50065 $ cat >> $HGRCPATH <<EOF
> [censor]
> policy=ignore
> EOF
$ mkdir r
$ cd r
$ hg init
$ echo secret > target
$ hg commit -Am "secret"
adding target
$ touch bystander
$ hg commit -Am "innocent"
adding bystander
$ echo erased-secret > target
$ hg commit -m "erased secret"
$ hg censor target --config extensions.censor= -r ".^^"
censor: inform the user that we are spending time checking heads...
r52160 checking for the censored content in 1 heads
censor: be more verbose about the other steps too...
r52162 checking for the censored content in the working directory
censor: accept multiple revision in a single call...
r52163 censoring 1 file revisions
Arseniy Alekseyev
censor: demonstrate a bug...
r50065 $ hg update ".^"
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cat target
$ hg update tip
Arseniy Alekseyev
censor: fix [hg update] away from a revision with censored files...
r50066 1 files updated, 0 files merged, 0 files removed, 0 files unresolved