This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_ntpath must account for casing changes
Type: Stage: resolved
Components: Windows Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: steve.dower Nosy List: paul.moore, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2019-09-10 13:02 by steve.dower, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15827 steve.dower, 2019-09-10 13:02
PR 15850 merged steve.dower, 2019-09-10 13:22
PR 15858 merged steve.dower, 2019-09-10 13:58
PR 15859 merged steve.dower, 2019-09-10 13:59
Messages (4)
msg351636 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-09-10 13:02
Tests in test_ntpath that go via the actual file system (e.g. via realpath()) need to allow for the case of the path potentially changing.
msg351662 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2019-09-10 13:52
New changeset 97d7906e30eeee1261b20a45a22242a8accb1cfb by Zachary Ware (Steve Dower) in branch 'master':
bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)
https://github.com/python/cpython/commit/97d7906e30eeee1261b20a45a22242a8accb1cfb
msg351666 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-09-10 14:17
New changeset 0d7e6a6d2d9e564d670efb6e3705598846de188d by Steve Dower in branch '3.7':
bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)
https://github.com/python/cpython/commit/0d7e6a6d2d9e564d670efb6e3705598846de188d
msg351673 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-09-10 14:29
New changeset 206e4c3d3547b024935ea9655f960061dffbb80f by Steve Dower in branch '3.8':
bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)
https://github.com/python/cpython/commit/206e4c3d3547b024935ea9655f960061dffbb80f
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82268
2019-09-10 14:30:08steve.dowersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-10 14:29:33steve.dowersetmessages: + msg351673
2019-09-10 14:17:45steve.dowersetmessages: + msg351666
2019-09-10 13:59:02steve.dowersetpull_requests: + pull_request15506
2019-09-10 13:58:20steve.dowersetpull_requests: + pull_request15505
2019-09-10 13:52:51zach.waresetmessages: + msg351662
2019-09-10 13:22:29steve.dowersetkeywords: + patch
stage: patch review
pull_requests: + pull_request15499
2019-09-10 13:02:30steve.dowercreate