-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove humanfriendly.compat.unittest (#53)
- Loading branch information
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Human friendly input/output in Python. | ||
# | ||
# Author: Peter Odding <[email protected]> | ||
# Last Change: December 10, 2020 | ||
# Last Change: September 17, 2021 | ||
# URL: https://humanfriendly.readthedocs.io | ||
|
||
""" | ||
|
@@ -56,16 +56,11 @@ | |
'on_windows', | ||
'unichr', | ||
'unicode', | ||
# This export remains here so as not to break my dozen or so other Python | ||
# projects using 'from humanfriendly.compat import unittest' from good old | ||
# times (when Python 2.6 was still a thing). It will eventually be removed. | ||
'unittest', | ||
'which', | ||
) | ||
|
||
# Standard library modules. | ||
import sys | ||
import unittest | ||
|
||
# Differences between Python 2 and 3. | ||
try: | ||
|