Remove a function that has been dead since r313889.

This commit is contained in:
Nico Weber 2020-04-15 12:01:58 -04:00
parent 789215dc0d
commit 6a887d22a1
1 changed files with 0 additions and 7 deletions

View File

@ -12,13 +12,6 @@ import sys
import threading
def norm_path(path):
path = os.path.realpath(path)
path = os.path.normpath(path)
path = os.path.normcase(path)
return path
def is_string(value):
try:
# Python 2 and Python 3 are different here.