##// END OF EJS Templates
pycompat: remove check for Python >= 3.6...
pycompat: remove check for Python >= 3.6 We dropped support for Python 3.5 so this is always true. Differential Revision: https://phab.mercurial-scm.org/D12363

File last commit:

r49584:39c447e0 default
r49814:9ac1a450 default
Show More
config.rs
16 lines | 457 B | application/rls-services+xml | RustLexer
Raphaël Gomès
hg-core: add basic config module...
r46803 // config.rs
//
// Copyright 2020
// Valentin Gatien-Baron,
// Raphaël Gomès <rgomes@octobus.net>
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
//! Mercurial config parsing and interfaces.
mod config;
mod layer;
Simon Sapin
rust: Move config value parsing functions to a new module...
r47344 mod values;
Pulkit Goyal
rhg: read [paths] for `--repository` value...
r48196 pub use config::{Config, ConfigSource, ConfigValueParseError};
Simon Sapin
rhg: Add support for colored output...
r49584 pub use layer::{ConfigError, ConfigOrigin, ConfigParseError};