Mon, 20 Mar 2017 18:50:25 +0100
Refined the "mutable default arguments" checker a little bit.
# -*- coding: utf-8 -*- # Copyright (c) 2010 - 2017 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining configuration variables for the Mercurial package. """ from __future__ import unicode_literals # Available protocols fpr the repository URL ConfigHgSchemes = ( 'file', 'http', 'https', 'ssh', )