[issue37306] "~/" not working with open() function in posix systems

2019-06-16 Thread flipchan
New submission from flipchan : "~/" being a shortcut to the current home directory on posix systems(bsd/linux). its not working with the build in open() function open: It works to get the path as a string: with open(str(Path.home())+'/.hey&#

[issue37306] "~/" not working with open() function in posix systems

2019-06-16 Thread flipchan
flipchan added the comment: scratch """ However, "~/" is working with os.path modules: os.path.isfile("~/.hey") """ that's not working either --