Changeset 1255 for python


Ignore:
Timestamp:
Nov 15, 2017, 10:52:06 PM (8 years ago)
Author:
dmik
Message:

python: Don't flatten case of tempdir.

This is a backport of https://github.com/python/cpython/commit/6d09f09d8b4f6e45f4b96145bc75500f590de834.
Needed to make Mozilla's python/mozbuild/mozbuild/test/test_base.py tests to succeed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/Lib/tempfile.py

    r391 r1255  
    189189    for dir in dirlist:
    190190        if dir != _os.curdir:
    191             dir = _os.path.normcase(_os.path.abspath(dir))
     191            dir = _os.path.abspath(dir)
    192192        # Try only a few names per directory.
    193193        for seq in xrange(100):
Note: See TracChangeset for help on using the changeset viewer.