]>
git.madduck.net Git - etc/vim.git/blobdiff - src/blackd/__init__.py
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:
import asyncio
import logging
import asyncio
import logging
from concurrent.futures import Executor, ProcessPoolExecutor
from datetime import datetime
from functools import partial
from concurrent.futures import Executor, ProcessPoolExecutor
from datetime import datetime
from functools import partial
from aiohttp import web
import aiohttp_cors
except ImportError as ie:
from aiohttp import web
import aiohttp_cors
except ImportError as ie:
f"aiohttp dependency is not installed: {ie}. "
+ "Please re-install black with the '[d]' extra install "
f"aiohttp dependency is not installed: {ie}. "
+ "Please re-install black with the '[d]' extra install "
- + "to obtain aiohttp_cors: `pip install black[d]`",
- file=sys.stderr,
- )
- sys.exit(-1)
+ + "to obtain aiohttp_cors: `pip install black[d]`"
+ ) from None
+from black.concurrency import maybe_install_uvloop
-# If our environment has uvloop installed lets use it
-try:
- import uvloop
-
- uvloop.install()
-except ImportError:
- pass
-
from _black_version import version as __version__
# This is used internally by tests to shut down the server prematurely
from _black_version import version as __version__
# This is used internally by tests to shut down the server prematurely
def patched_main() -> None:
def patched_main() -> None:
freeze_support()
black.patch_click()
main()
freeze_support()
black.patch_click()
main()