mirror of https://github.com/python/cpython
Use \n as PYTHONPATH delimiter on Mac (less likely to occur in
filenames than space).
This commit is contained in:
parent
44fff3cfb5
commit
234fd7e4bb
|
@ -33,7 +33,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#ifdef macintosh
|
||||
#define SEP ':'
|
||||
#define MAXPATHLEN 256
|
||||
#define DELIM ' '
|
||||
/* Mod by Jack: newline is less likely to occur in filenames than space */
|
||||
#define DELIM '\n'
|
||||
#endif
|
||||
|
||||
#if defined(MSDOS) || defined(NT)
|
||||
|
|
Loading…
Reference in New Issue