m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
344 B

6 months ago
  1. """ASCII-ART 2D pretty-printer"""
  2. from .pretty import (pretty, pretty_print, pprint, pprint_use_unicode,
  3. pprint_try_use_unicode, pager_print)
  4. # if unicode output is available -- let's use it
  5. pprint_try_use_unicode()
  6. __all__ = [
  7. 'pretty', 'pretty_print', 'pprint', 'pprint_use_unicode',
  8. 'pprint_try_use_unicode', 'pager_print',
  9. ]