From fa9f1ac855320fb0a995b07105da9a747f290b0d Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 10 May 2014 00:37:03 +0300 Subject: [PATCH] fnmatch: Explicitly include os.path, so far. --- fnmatch/fnmatch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fnmatch/fnmatch.py b/fnmatch/fnmatch.py index 6330b0cf..8c7290fd 100644 --- a/fnmatch/fnmatch.py +++ b/fnmatch/fnmatch.py @@ -10,6 +10,7 @@ The function translate(PATTERN) returns a regular expression corresponding to PATTERN. (It does not compile it.) """ import os +import os.path import posixpath import re import functools