├── .appveyor.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── gmock_test.cpp ├── massedit.bat ├── massedit.py ├── pyproject.toml └── tests.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/README.rst -------------------------------------------------------------------------------- /gmock_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/gmock_test.cpp -------------------------------------------------------------------------------- /massedit.bat: -------------------------------------------------------------------------------- 1 | python %~dp0\massedit.py %* 2 | -------------------------------------------------------------------------------- /massedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/massedit.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmotec/massedit/HEAD/tests.py --------------------------------------------------------------------------------