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 graingert
Recipients eric.smith, graingert
Date 2022-03-15.11:11:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1647342677.72.0.361792532569.issue47025@roundup.psfhosted.org>
In-reply-to
Content
this is a regression from 3.2:

```
Python 3.2.6 (default, Jan 18 2016, 19:21:14) 
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import tempfile
>>> tempfile.TemporaryDirectory()
<TemporaryDirectory '/tmp/tmpd4jzut'>
>>> v = _
>>> tmp_dir = str(v.__enter__())
>>> tmp_dir
'/tmp/tmpd4jzut'
>>> f = open(tmp_dir + "/module.py", "w")
>>> f.write("def function():\n    return 1\n")
29
>>> f.close()
>>> import sys
>>> sys.path.append(tmp_dir.encode())
>>> import module
>>> module
<module 'module' from '/tmp/tmpd4jzut/module.py'>
>>> 
```
History
Date User Action Args
2022-03-15 11:11:17graingertsetrecipients: + graingert, eric.smith
2022-03-15 11:11:17graingertsetmessageid: <1647342677.72.0.361792532569.issue47025@roundup.psfhosted.org>
2022-03-15 11:11:17graingertlinkissue47025 messages
2022-03-15 11:11:17graingertcreate