diff options
| author | David Lord <davidism@gmail.com> | 2018-09-24 08:21:11 -0700 |
|---|---|---|
| committer | David Lord <davidism@gmail.com> | 2018-09-24 08:21:11 -0700 |
| commit | 5585856f5a7075656f94ffa2af8757cbd1b4fcca (patch) | |
| tree | d4e393b3263de84a7ce5cce81913d7993aeee862 /click/_termui_impl.py | |
| parent | a589835a5b656eec4bace076ac7e947662c1cc68 (diff) | |
| download | click-meta.tar.gz | |
update metadatameta
test on 3.7
fix collections deprecation warning
Diffstat (limited to 'click/_termui_impl.py')
| -rw-r--r-- | click/_termui_impl.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/click/_termui_impl.py b/click/_termui_impl.py index b7fcbb5..00a8e5e 100644 --- a/click/_termui_impl.py +++ b/click/_termui_impl.py @@ -1,14 +1,16 @@ +# -*- coding: utf-8 -*- """ - click._termui_impl - ~~~~~~~~~~~~~~~~~~ +click._termui_impl +~~~~~~~~~~~~~~~~~~ - This module contains implementations for the termui module. To keep the - import time of Click down, some infrequently used functionality is placed - in this module and only imported as needed. +This module contains implementations for the termui module. To keep the +import time of Click down, some infrequently used functionality is +placed in this module and only imported as needed. - :copyright: (c) 2014 by Armin Ronacher. - :license: BSD, see LICENSE for more details. +:copyright: © 2014 by the Pallets team. +:license: BSD, see LICENSE.rst for more details. """ + import os import sys import time |
