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 loewis
Recipients asvetlov, jnoller, kristjan.jonsson, loewis, ocean-city
Date 2009-04-01.17:55:45
SpamBayes Score 0.0006181604
Marked as misclassified No
Message-id <49D3AA96.4060009@v.loewis.de>
In-reply-to <270ea8310904011021w7ee5be3at60e38052e3fde88f@mail.gmail.com>
Content
> Problem in _multiprocessing is:
> FILE* fp = _fdopen(...);
> int fd = _fileno(fp);
> _close(fd);
> _fclose(fp); // raises assertion

Actually, Kristjan fixed the *real* bug, which was more like

FILE* f2=fdopen(fileno(f1));
fclose(f1);
fclose(f2);
History
Date User Action Args
2009-04-01 17:55:47loewissetrecipients: + loewis, kristjan.jonsson, ocean-city, jnoller, asvetlov
2009-04-01 17:55:45loewislinkissue5619 messages
2009-04-01 17:55:45loewiscreate