├── .gitignore ├── LICENSE ├── README.md ├── python-insert-docstring-tests.el └── python-insert-docstring.el /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macurovc/insert-docstring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macurovc/insert-docstring/HEAD/README.md -------------------------------------------------------------------------------- /python-insert-docstring-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macurovc/insert-docstring/HEAD/python-insert-docstring-tests.el -------------------------------------------------------------------------------- /python-insert-docstring.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macurovc/insert-docstring/HEAD/python-insert-docstring.el --------------------------------------------------------------------------------