python-clu 0.12.14__tar.gz → 0.12.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_clu-0.12.14 → python_clu-0.12.15}/.bumpversion.toml +1 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/.gitchangelog.rc +14 -21
- {python_clu-0.12.14 → python_clu-0.12.15}/.gitignore +4 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/CHANGELOG.md +580 -361
- {python_clu-0.12.14 → python_clu-0.12.15}/MANIFEST.in +1 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/Makefile +1 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/PKG-INFO +1 -1
- python_clu-0.12.15/clu/__version__.py +1 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/abstract.py +26 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/application.py +6 -5
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/abc.py +21 -18
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/codecs.py +29 -19
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/env.py +3 -3
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/keymap.py +96 -99
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/keymapview.py +22 -19
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/dicts.py +42 -14
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/exporting.py +0 -5
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/predicates.py +1 -47
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/treeline.py +1 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/trie.py +3 -2
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/typology.py +9 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/version/git_version.py +23 -2
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/PKG-INFO +1 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/SOURCES.txt +1 -0
- python_clu-0.12.15/scratch/images/moira.png +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/setup.py +1 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_predicates.py +44 -44
- python_clu-0.12.14/clu/__version__.py +0 -1
- {python_clu-0.12.14 → python_clu-0.12.15}/.coveragerc +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/.editorconfig +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/.landscape.yml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/.travis.yml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/ABOUT.md +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/CLASSIFIERS.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/CLU_Treatment.md +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/CODE_OF_CONDUCT.md +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/LICENSE.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/README.md +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/appveyor.yml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/__main__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/all.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/api/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/api/__main__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/compilation/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/compilation/compiledb.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/compilation/macros.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/filebase.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/formats/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/formats/jsonfile.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/formats/picklefile.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/formats/tomlfile.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/formats/yamlfile.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/keymaputils.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/legacy/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/legacy/base.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/legacy/fieldtypes.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/legacy/settings.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/ns.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/config/proxy.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/__main__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/consts.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/data.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/enums.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/exceptions.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/constants/polyfills.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/csv.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/dispatch.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/enums.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/extending.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/abc.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/appdirectories.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/filesystem.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/misc.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/pypath.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/fs/sourcetree.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/importing/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/importing/__main__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/importing/base.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/importing/proxy.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/keyvalue.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/mathematics.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/naming.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/ansi.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/banners.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/cli/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/cli/ansidocs.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/cli/boilerplate.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/cli/boilerplate_copy.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/cli/print_version.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/columnize.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repl/modules.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/repr.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/sanitizer.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/.gitignore +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/README.md +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/ansicolors.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/boilerplate.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/dictroast.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/legacy/forkumask.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/legacy/repl-bpython.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/legacy/repl-ipython.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/legacy/repl-ptpython.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/legacy/repl-pyzo.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/legacy/xdg-runtime.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/prediversus.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/scripts/repl.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/shelving/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/shelving/redat.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/shelving/redis.conf +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/stdio.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/testing/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/testing/hook.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/testing/obsolete.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/testing/pytest.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/testing/utils.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/typespace/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/typespace/__main__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/typespace/namespace.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/version/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/version/__main__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/clu/version/read_version.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/codecov.yml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/conftest.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/.DS_Store +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/Makefile +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/doctrees/api.doctree +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/doctrees/environment.pickle +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/doctrees/generated/clu.doctree +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/doctrees/index.doctree +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/.buildinfo +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_sources/api.rst.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_sources/generated/clu.rst.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_sources/index.rst.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/alabaster.css +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/basic.css +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/badge_only.css +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/fontawesome-webfont.eot +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/fontawesome-webfont.svg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-bold-italic.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-bold-italic.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-bold.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-bold.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-normal-italic.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-normal-italic.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-normal.woff +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/fonts/lato-normal.woff2 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/css/theme.css +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/custom.css +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/doctools.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/documentation_options.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/file.png +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/jquery-3.6.0.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/jquery.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/js/badge_only.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/js/html5shiv-printshiv.min.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/js/html5shiv.min.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/js/theme.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/language_data.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/minus.png +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/plus.png +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/pygments.css +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/searchtools.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/underscore-1.13.1.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/_static/underscore.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/api.html +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/generated/clu.html +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/genindex.html +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/index.html +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/objects.inv +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/py-modindex.html +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/search.html +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/html/searchindex.js +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/build/man/clu.1 +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/make.bat +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/source/api.rst +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/source/conf.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/source/generated/clu.rst +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/docs/source/index.rst +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/autohook.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/post-push/00-coverage.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/pre-push/00-noop.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/pre-push/01-direnv-stdlib.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/scripts/coverage.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/scripts/display-issues.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/scripts/git-pushex +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/hooks/scripts/noop.sh +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/mypy.ini +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/noxfile.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/pyproject.toml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/pytest.ini +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/dependency_links.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/entry_points.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/requires.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/top_level.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/python_clu.egg-info/zip-safe +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/pytype.cfg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/changelog.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/dev.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/docs.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/install.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/nox/codecov.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/nox/docs.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/nox/manifest.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/nox/pyproject.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/nox/repl.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/nox/tests.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/tox.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/requirements/typecheck.txt +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/direnv_transformed_env.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/clu-module-list-example-small.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/clu-module-list-example.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/clu-module-list-example.pxd +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/clu-testing-time-totals-example-small.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/clu-testing-time-totals-example.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/clu-testing-time-totals-example.pxd +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/construx-and-capsela-small.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/construx-and-capsela.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/construx-and-capsela.pxd +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/images/toml-module-rant.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/inline-tests-ImportError-uggggh.ipynb +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/scratch/nteract.ipynb +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/setup.cfg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/1-58.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/3471426989_aa8e83cac5_o.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/3472236406_1fbf1a567d_o.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/8600JC.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/8ba.png +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/IMG_20180505_205153567.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/cheetah-003.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/config/clu-config.toml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/config/yodogg.toml +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/shutterstock_90194617.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/yodata/09163d51421853.5608b3c2a1be0.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/yodata/5d0227342500004e12e3506d.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/yodata/BlackCat2_large-22.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/yodogg/Serval_Cat_Kitten-706.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/yodogg/Servals_Thoiry_19801.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/data/yodogg/video-pride-serval.jpg +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_abstract.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_all.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_boilerplate.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_config.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_config_abc.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_csv.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_dicts.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_dispatch.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_enum_aliases.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_exporting.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_extending.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_fs_abc.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_fs_appdirectories.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_fs_filesystem.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_fs_misc.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_importing.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_keyvalue.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_mathematics.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_naming.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_repl_columnize.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_repl_modules.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_repr.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_scripts_repl.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_typespace_namespace.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_typology.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/test_version.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/yodogg/.tm_properties +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/yodogg/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/yodogg/yodogg/__init__.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/yodogg/yodogg/config.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/yodogg/yodogg/exporting.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tests/yodogg/yodogg/iheard.py +0 -0
- {python_clu-0.12.14 → python_clu-0.12.15}/tox.ini +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# -*- coding: utf-8; mode: python -*-
|
|
2
|
-
import os
|
|
3
|
-
import sys
|
|
2
|
+
import sys, os
|
|
4
3
|
|
|
5
4
|
print("*********************************", file=sys.stderr)
|
|
6
5
|
print(os.getcwd(), file=sys.stderr)
|
|
@@ -72,7 +71,6 @@ from clu.repl.cli.print_version import version_string
|
|
|
72
71
|
## will be ignored and won't be reported in the changelog.
|
|
73
72
|
##
|
|
74
73
|
ignore_regexps = [
|
|
75
|
-
r'@minor', r'!minor',
|
|
76
74
|
r'@cosmetic', r'!cosmetic',
|
|
77
75
|
r'@refactor', r'!refactor',
|
|
78
76
|
r'@wip', r'!wip',
|
|
@@ -94,25 +92,20 @@ ignore_regexps = [
|
|
|
94
92
|
## ``subject_process`` (or ``body_process``) to do some changes to the subject,
|
|
95
93
|
## whenever you are tweaking this variable.
|
|
96
94
|
##
|
|
97
|
-
section_regexps = [
|
|
98
|
-
('New', [
|
|
99
|
-
r'^[nN]ew\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
|
|
100
|
-
]),
|
|
101
|
-
('Changes', [
|
|
102
|
-
r'^[cC]hg\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
|
|
103
|
-
]),
|
|
104
|
-
('Fix', [
|
|
105
|
-
r'^[fF]ix\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
|
|
106
|
-
]),
|
|
107
|
-
('Add', [
|
|
108
|
-
r'^[aA]dd\s*',
|
|
109
|
-
]),
|
|
110
|
-
('Minutiae', [
|
|
111
|
-
r'^[mM]inutiae\s*',
|
|
112
|
-
]),
|
|
113
|
-
('Other', None ## Match all lines
|
|
114
|
-
),
|
|
115
95
|
|
|
96
|
+
# r'^[nN]ew\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
|
|
97
|
+
# r'^[cC]hang\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
|
|
98
|
+
# r'^[fF]ix\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
|
|
99
|
+
|
|
100
|
+
section_regexps = [
|
|
101
|
+
('New', [r'^[nN]ew\s*']),
|
|
102
|
+
('Changes', [r'^[cC]hang\s*']),
|
|
103
|
+
('Tweaks', [r'^[tT]weak\s*']),
|
|
104
|
+
('Fix', [r'^[fF]ix\s*']),
|
|
105
|
+
('Add', [r'^[aA]dd\s*']),
|
|
106
|
+
('Remove', [r'^[rR]emov\s*']),
|
|
107
|
+
('Minutiae', [r'^[mM]inutiae\s*']),
|
|
108
|
+
('Other', None), # Match all lines
|
|
116
109
|
]
|
|
117
110
|
|
|
118
111
|
|