Differences From Artifact [cafc10d4fb]:
- File gc_core/py/lang_core/gc_options.py — part of check-in [16890053da] at 2020-08-19 10:09:13 on branch trunk — [core][build] code clarification: all functions about options in gc_options module (user: olr, size: 2390) [annotate] [blame] [check-ins using]
To Artifact [dd3e857111]:
- File gc_core/py/lang_core/gc_options.py — part of check-in [78b5950c87] at 2021-02-10 11:39:52 on branch trunk — [core][fr][graphspell] code cleaning: pylint (user: olr, size: 2455) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | dOptions = {} _sAppContext = "Python" def load (sContext="Python"): global dOptions global _sAppContext _sAppContext = sContext dOptions = getDefaultOptions(sContext) def setOption (sOpt, bVal): | > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | dOptions = {} _sAppContext = "Python" def load (sContext="Python"): "mandatory first function to call: variables initialization" global dOptions global _sAppContext _sAppContext = sContext dOptions = getDefaultOptions(sContext) def setOption (sOpt, bVal): |
︙ | ︙ |