You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding join would be quite simple, and would probably look a bit like this:
defjoin(s: List[str]) ->str: ...
I have not opened a PR yet because I wonder if this is something that you would want to add or not, because saying that join does not exist is true for python3.7 and lower. Surely there must be precedent, but I could not find an example of this in the issues yet.
The text was updated successfully, but these errors were encountered:
A new function was added to the stdlib
shlex
in python 3.8, as stated here: https://docs.python.org/3/library/shlex.html#shlex.join and in the changelog here https://docs.python.org/3/whatsnew/changelog.html and here https://bugs.python.org/issue22454At the moment, only split has a stub:
typeshed/stdlib/3/shlex.pyi
Line 4 in 87d7dd3
Adding join would be quite simple, and would probably look a bit like this:
I have not opened a PR yet because I wonder if this is something that you would want to add or not, because saying that join does not exist is true for python3.7 and lower. Surely there must be precedent, but I could not find an example of this in the issues yet.
The text was updated successfully, but these errors were encountered: