##// 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:

r51309:3a2df812 default
r52834:e58f02e2 default
Show More
notcapable
25 lines | 878 B | text/plain | TextLexer
Steven Brown
tests: add script to disable a selected wire protocol capability...
r14011 # Disable the $CAP wire protocol capability.
if test -z "$CAP"
then
echo "CAP environment variable not set."
fi
cat > notcapable-$CAP.py << EOF
Pulkit Goyal
interfaces: create a new folder for interfaces and move repository.py in it...
r43078 from mercurial import extensions, localrepo
from mercurial.interfaces import repository
Matt Harbison
extensions: deprecate extsetup without a `ui` argument (API)...
r41098 def extsetup(ui):
Gregory Szorc
wireproto: use new peer interface...
r33805 extensions.wrapfunction(repository.peer, 'capable', wrapcapable)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 extensions.wrapfunction(localrepo.localrepository, 'peer', wrappeer)
def wrapcapable(orig, self, name, *args, **kwargs):
Gregory Szorc
tests: add b'' to notcapable...
r41344 if name in b'$CAP'.split(b' '):
Steven Brown
tests: add script to disable a selected wire protocol capability...
r14011 return False
return orig(self, name, *args, **kwargs)
Manuel Jacob
pull: add --remote-hidden option and pass it through peer creation...
r51309 def wrappeer(orig, self, *args, **kwargs):
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 # Since we're disabling some newer features, we need to make sure local
# repos add in the legacy features again.
Manuel Jacob
pull: add --remote-hidden option and pass it through peer creation...
r51309 return localrepo.locallegacypeer(self, *args, **kwargs)
Steven Brown
tests: add script to disable a selected wire protocol capability...
r14011 EOF
echo '[extensions]' >> $HGRCPATH
echo "notcapable-$CAP = `pwd`/notcapable-$CAP.py" >> $HGRCPATH