This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author danimo
Recipients danimo
Date 2010-12-02.12:32:34
SpamBayes Score 0.0013054432
Marked as misclassified No
Message-id <1291293155.82.0.689283650387.issue10604@psf.upfronthosting.co.za>
In-reply-to
Content
from PC/getpathp.c:538


    if (pythonhome != NULL) {
        char *p;
        bufsz = 1;
        for (p = PYTHONPATH; *p; p++) {
            if (*p == DELIM)
                bufsz++; /* number of DELIM plus one */
        }
        bufsz *= strlen(pythonhome);
    }

The second last line should probably read

        bufsz += strlen(pythonhome);
History
Date User Action Args
2010-12-02 12:32:35danimosetrecipients: + danimo
2010-12-02 12:32:35danimosetmessageid: <1291293155.82.0.689283650387.issue10604@psf.upfronthosting.co.za>
2010-12-02 12:32:34danimolinkissue10604 messages
2010-12-02 12:32:34danimocreate