<div dir="ltr"><div class="gmail_extra"><div>On 7 May 2018 at 03:44, Chris Angelico <span dir="ltr"><<a href="mailto:rosuav@gmail.com" target="_blank">rosuav@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Mon, May 7, 2018 at 1:05 AM, George Fischhof <<a href="mailto:george@fischhof.hu">george@fischhof.hu</a>> wrote:<br>
>> On Sun, May 6, 2018, 1:54 AM Yuval Greenfield <<a href="mailto:ubershmekel@gmail.com">ubershmekel@gmail.com</a>><br>
>> wrote:<br>
>>><br>
>>> Hi Ideas,<br>
>>><br>
>>> I often need to reference a script's current directory. I end up writing:<br>
>>><br>
>>> import os<br>
>>> SRC_DIR = os.path.dirname(__file__)<br>
</span><span class="">> I would give +1 for __dirname__<br>
<br>
</span>Something to keep in mind: making this available to every module,<br>
whether it's wanted or not, means that the Python interpreter has to<br>
prepare that just in case it's wanted. That's extra work as part of<br>
setting up a module. Which, in turn, means it's extra work for EVERY<br>
import, and consequently, slower Python startup. It might only be a<br>
small slowdown, but it's also an extremely small benefit.<br></blockquote><div><br></div><div>It also makes the name show up in dir(mod) for every module, and we're currently looking for ways to make that list *shorter*, not longer.<br><br></div><div>So I have a different suggestion: perhaps it might make sense to propose promoting a key handful of path manipulation operations to the status of being builtins?<br><br></div><div>Specifically, the ones I'd have in mind would be:<br><br></div><div>- dirname (aka os.path.dirname)<br></div><div>- joinpath (aka os.path.join)<br></div><div>- abspath (aka os.path.abspath)<br><br></div><div>Why those 3? Because with just those three operations you can locate other files relative to `__file__`, the current working directory [1], and arbitrary absolute paths, as well as remove path traversal notation like ".." and "." from the resulting paths (since abspath() internally calls normpath()).<br><br></div>    _launch_dir = abspath('')<br><div></div><div>    def open_from_launch_dir(relpath, mode='r'):<br></div><div>        return open(abspath(joinpath(_launch_dir, relpath)), mode)<br></div><div><br><div><div>    _script_dir = dirname(abspath(__file__))<br></div><div></div>    def open_from_script_dir(relpath, mode='r'):<br></div><div>        return open(abspath(joinpath(_script_dir, relpath)), mode)<br></div><div></div><br></div><div>You'd still need to import pathlib or os.path for more complex path manipulations, but they generally wouldn't be needed any more if all you're doing is reading and/or writing a handful of specific files.<br></div><div><br></div><div>Cheers,<br></div><div>Nick.<br></div><div><br>[1] abspath can stand in for os.getcwd(), since you can spell the latter as abspath('.') or abspath(''), and we could potentially even make it so you can retrieve the cwd via just abspath()<br></div><br clear="all"></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Nick Coghlan   |   <a href="mailto:ncoghlan@gmail.com" target="_blank">ncoghlan@gmail.com</a>   |   Brisbane, Australia</div>
</div></div>