]>
git.madduck.net Git - etc/vim.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
99c97c3 )
* [Stavros Korokithakis](mailto:hi@stavros.io)
* [Sunil Kapil](mailto:snlkapil@gmail.com)
* [Vishwas B Sharma](mailto:sharma.vishwas88@gmail.com)
* [Stavros Korokithakis](mailto:hi@stavros.io)
* [Sunil Kapil](mailto:snlkapil@gmail.com)
* [Vishwas B Sharma](mailto:sharma.vishwas88@gmail.com)
+* [Chuck Wooters](mailto:chuck.wooters@microsoft.com)
module._verify_python3_env = lambda: None
module._verify_python3_env = lambda: None
-if __name__ == "__main__" :
+def patched_main() -> None :
+
+
+if __name__ == "__main__":
+ patched_main()
return web.Response(status=500, text=str(e))
return web.Response(status=500, text=str(e))
-if __name__ == "__main__" :
+def patched_main() -> None :
black.patch_click()
main()
black.patch_click()
main()
+
+
+if __name__ == "__main__":
+ patched_main()
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
- entry_points={"console_scripts": ["black=black:main", "blackd=blackd:main [d]"]},
+ entry_points={
+ "console_scripts": [
+ "black=black:patched_main",
+ "blackd=blackd:patched_main [d]",
+ ]
+ },