diff options
author | David Lord <davidism@gmail.com> | 2020-01-10 13:42:02 -0800 |
---|---|---|
committer | David Lord <davidism@gmail.com> | 2020-01-10 13:42:02 -0800 |
commit | 51c1c8efa6f4cd3d4eff270f8c3ceb20362af7bb (patch) | |
tree | 136e569e5ebbba2d43485aca181b07438eac6412 /src/jinja2/asyncsupport.py | |
parent | e492255f270add52d051ef4f8e87899f40e57687 (diff) | |
download | jinja2-style.tar.gz |
simplify module docstringsstyle
Diffstat (limited to 'src/jinja2/asyncsupport.py')
-rw-r--r-- | src/jinja2/asyncsupport.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/jinja2/asyncsupport.py b/src/jinja2/asyncsupport.py index 7a0c2ea..d97e46f 100644 --- a/src/jinja2/asyncsupport.py +++ b/src/jinja2/asyncsupport.py @@ -1,13 +1,6 @@ # -*- coding: utf-8 -*- -""" - jinja2.asyncsupport - ~~~~~~~~~~~~~~~~~~~ - - Has all the code for async support which is implemented as a patch - for supported Python versions. - - :copyright: (c) 2017 by the Jinja Team. - :license: BSD, see LICENSE for more details. +"""The code for async support. Importing this patches Jinja on supported +Python versions. """ import asyncio import inspect |