mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Use \n as PYTHONPATH delimiter on Mac (less likely to occur in
filenames than space).
This commit is contained in:
parent
44fff3cfb5
commit
234fd7e4bb
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue