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_pathlib error for complex symlinks on Windows
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: jfoo, pitrou
Priority: normal Keywords: patch

Created on 2014-09-12 16:49 by jfoo, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue22395.patch jfoo, 2014-09-12 16:53 review
Messages (5)
msg226828 - (view) Author: Justin Foo (jfoo) * Date: 2014-09-12 16:49
The _check_complex_symlinks function compares paths for string equality instead of using the assertSame helper function. Patch attached.
msg226829 - (view) Author: Justin Foo (jfoo) * Date: 2014-09-12 16:53
The _check_complex_symlinks function compares stringified paths for string equality instead of using the assertSame helper method. Patch attached.
msg226833 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-09-12 18:06
Can you explain in which case the assertion breaks?
msg226852 - (view) Author: Justin Foo (jfoo) * Date: 2014-09-13 13:10
The failing tests were:

* test_complex_symlinks_absolute
* test_complex_symlinks_relative
* test_complex_symlinks_relative_dot_dot

for both PathTest and WindowsPathTest, via inheritance from the _BasePathTest class.
msg272648 - (view) Author: Justin Foo (jfoo) * Date: 2016-08-14 05:42
This is no longer a problem for me and I can't reproduce why it was even a problem in the first place.
History
Date User Action Args
2022-04-11 14:58:08adminsetgithub: 66589
2016-08-14 06:42:22SilentGhostsetresolution: out of date
stage: resolved
2016-08-14 05:42:00jfoosetstatus: open -> closed

messages: + msg272648
2014-09-13 13:10:29jfoosetmessages: + msg226852
2014-09-12 18:06:58pitrousetmessages: + msg226833
2014-09-12 18:01:42serhiy.storchakasetnosy: + pitrou
2014-09-12 16:53:01jfoosetfiles: + issue22395.patch
keywords: + patch
messages: + msg226829
2014-09-12 16:49:47jfoocreate