##// END OF EJS Templates
config: move edition code in its own module...
config: move edition code in its own module We start to move code related to the command outside of the main commands modules for clarity. This also highlight some flaw in this code and the new flag are missing some error handling. However we will deal with them later. This move removes the needs for a few module import in the `commands.py` which I see as a good sign.

File last commit:

r52616:9367571f default
r53314:c97e0fd2 default
Show More
base85.pyi
4 lines | 115 B | text/x-python | PythonLexer
Gregory Szorc
cext: add .pyi files for C extensions...
r46652 version: int
Matt Harbison
cext: correct the argument handling of `b85encode()`...
r52616 def b85encode(text: bytes, pad: bool = False) -> bytes: ...
Gregory Szorc
cext: add .pyi files for C extensions...
r46652 def b85decode(text: bytes) -> bytes: ...