Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix one import per line
  • Loading branch information
fgallaire committed Feb 15, 2017
commit 0264d9dd24cb9d33877d3ae40346076ed6bf0a20
3 changes: 2 additions & 1 deletion Lib/textwrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
# Copyright (C) 2015-2017 Florent Gallaire <fgallaire@gmail.com>
# Written by Greg Ward <gward@python.net>

import re, unicodedata
import re
import unicodedata

__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent', 'shorten',
'cjkwide', 'cjklen', 'cjkslices']
Expand Down