Message415235
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'>
>>>
``` |
|
Date |
User |
Action |
Args |
2022-03-15 11:11:17 | graingert | set | recipients:
+ graingert, eric.smith |
2022-03-15 11:11:17 | graingert | set | messageid: <1647342677.72.0.361792532569.issue47025@roundup.psfhosted.org> |
2022-03-15 11:11:17 | graingert | link | issue47025 messages |
2022-03-15 11:11:17 | graingert | create | |
|