[issue17556] os.path.join() converts None to '' by default

2013-03-27 Thread Muhammad Hallaj Subery
New submission from Muhammad Hallaj Subery: I think the default behavior of os.path.join() when None is passed as the first argument should be to translate it to '' by default. >>> import os >>> os.path.join(None, 'somewhere') 'somewhere' vs

[issue17556] os.path.join() converts None to '' by default

2013-03-27 Thread Muhammad Hallaj Subery
Muhammad Hallaj Subery added the comment: I believe this can be easily archived by adding the following changes: 64c64 < path = a or '' --- > -- ___ Python tracker <http://bugs.py