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.

作者 loewis
收信人 asvetlov, jnoller, kristjan.jonsson, loewis, ocean-city
日期 2009-04-01.17:55:45
SpamBayes Score 0.0006181604
Marked as misclassified
Message-id <49D3AA96.4060009@v.loewis.de>
In-reply-to <270ea8310904011021w7ee5be3at60e38052e3fde88f@mail.gmail.com>
内容
> 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);
历史
日期 用户 动作 参数
2009-04-01 17:55:47loewis修改recipients: + loewis, kristjan.jonsson, ocean-city, jnoller, asvetlov
2009-04-01 17:55:45loewis链接issue5619 messages
2009-04-01 17:55:45loewis创建