Message145989
| Author | mhammond |
|---|---|
| Recipients | Nam.Nguyen, barry, benjamin.peterson, flox, gvanrossum, loewis, mhammond, terry.reedy, vstinner |
| Date | 2011-10-19.23:01:13 |
| SpamBayes Score | 1.1337914e-10 |
| Marked as misclassified | No |
| Message-id | <1319065274.15.0.581980418777.issue12989@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
The first chunk of that patch is for when pythonhome==NULL. There is also a similar block just under it when MS_WINDOWS is not defined. While I don't know in which cases this will be built without that define, it looks as though the *buf++ = DELIM; should also be added to that block?
Also, there is an existing conditional:
if (argv0_path) {
which can never be false (as argv0_path is a char array). It could be changed to if (argv0_path[0]) but ISTM that it could also be removed completely - ie, the 2 lines left in that block should have no effect in the case where the buffer is empty.
I haven't actually tested it though, but apart from the first comment above, it *looks* like it does the right thing :) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2011-10-19 23:01:14 | mhammond | set | recipients: + mhammond, gvanrossum, loewis, barry, terry.reedy, vstinner, benjamin.peterson, flox, Nam.Nguyen |
| 2011-10-19 23:01:14 | mhammond | set | messageid: <1319065274.15.0.581980418777.issue12989@psf.upfronthosting.co.za> |
| 2011-10-19 23:01:13 | mhammond | link | issue12989 messages |
| 2011-10-19 23:01:13 | mhammond | create | |