Lines Matching full:join

1362 - Issue #9850: Fixed macpath.join() for empty first component.  Patch by
2485 - Issue #19456: ntpath.join() now joins relative paths correctly when a drive
4084 - Issue #18808: Thread.join() now waits for the underlying thread state to
4665 - Issue #12805: Make bytes.join and bytearray.join faster when the separator
4671 - Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer
5278 - Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
6909 - Issue #15180: Clarify posixpath.join() error message when mixing str & bytes.
7855 os.path.join()/split() semantics for path manipulation instead of its prior,
9536 ``multiprocessing.Process``. Also, fix Process.join() to not use polling
16467 reallocations of the result string (this also affects str.join()).
18972 - Queue.Queue objects now support .task_done() and .join() methods
19091 - Patch #1314396: prevent deadlock for threading.Thread.join() when an exception
20112 Accordingly, the str.join() method is strongly preferred for performance
24458 point for more mac-like functionality, join pythonmac-sig@python.org
24723 join() method of strings
25537 magic = string.join(["\\x%.2x" % ord(c) for c in imp.get_magic()],"")
26009 os.path.join. os.path.join("a:", "b") yields "a:b".
26707 peculiarity is that the equivalent of string.join(sequence,
26708 delimiter) is delimiter.join(sequence). Use " ".join(sequence) for
26709 the effect of string.join(sequence); to make this more readable, try
27244 fall back on the old strategy (join with getcwd() if necessary, and
30232 conflicts on some systems, e.g. strndup (GNU libc), join (Cray),
31175 - The string.join() function now accepts any sequence argument, not
31510 passing more than two arguments to the join() function, so
31511 os.path.join(a, b, c) is the same as os.path.join(a, os.path.join(b,
32410 determines which operation is invoked); similar for "string.join()"
34773 path.join and macpath.join
34780 - added functions join() and joinfields()