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.

Author vstinner
Recipients vstinner
Date 2021-10-07.11:25:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633605938.68.0.349965351809.issue45403@roundup.psfhosted.org>
In-reply-to
Content
Reproduce the issue:
---
# go to Python source tree
mkdir build
cd build
../configure
make
./python -m test test_sys
---

Output:

======================================================================
FAIL: test_stdlib_dir (test.test_sys.SysModuleTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/vstinner/python/main/Lib/test/test_sys.py", line 1005, in test_stdlib_dir
    self.assertEqual(actual, expected)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: '/home/vstinner/python/main/build/../Lib' != '/home/vstinner/python/main/Lib'
- /home/vstinner/python/main/build/../Lib
?                            ---------
+ /home/vstinner/python/main/Lib


Attached PR fix the issue.
History
Date User Action Args
2021-10-07 11:25:38vstinnersetrecipients: + vstinner
2021-10-07 11:25:38vstinnersetmessageid: <1633605938.68.0.349965351809.issue45403@roundup.psfhosted.org>
2021-10-07 11:25:38vstinnerlinkissue45403 messages
2021-10-07 11:25:38vstinnercreate