mirror of
https://github.com/python/cpython.git
synced 2025-11-27 05:44:16 +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
|
#ifdef macintosh
|
||||||
#define SEP ':'
|
#define SEP ':'
|
||||||
#define MAXPATHLEN 256
|
#define MAXPATHLEN 256
|
||||||
#define DELIM ' '
|
/* Mod by Jack: newline is less likely to occur in filenames than space */
|
||||||
|
#define DELIM '\n'
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(NT)
|
#if defined(MSDOS) || defined(NT)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue