From 6d09f09d8b4f6e45f4b96145bc75500f590de834 Mon Sep 17 00:00:00 2001 From: Tim Golden Date: Fri, 25 Oct 2013 18:38:16 +0100 Subject: Issue14255 Don't flatten case of tempdir --- Lib/tempfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/tempfile.py') diff --git a/Lib/tempfile.py b/Lib/tempfile.py index 7da71c8c3b..5d3462102f 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -146,7 +146,7 @@ def _get_default_tempdir(): for dir in dirlist: if dir != _os.curdir: - dir = _os.path.normcase(_os.path.abspath(dir)) + dir = _os.path.abspath(dir) # Try only a few names per directory. for seq in range(100): name = next(namer) -- cgit v1.2.1