diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-31 23:08:23 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-31 23:08:23 (GMT) |
commit | 951cc0f474e4757e6954f0435952804211c5637c (patch) | |
tree | 4e04f1f90d551a9fdd8b6936b7523fae0ce0a0ee /Misc | |
parent | 105be7725b88ecef826ac07392a4236bae934bf6 (diff) | |
download | cpython-951cc0f474e4757e6954f0435952804211c5637c.zip cpython-951cc0f474e4757e6954f0435952804211c5637c.tar.gz cpython-951cc0f474e4757e6954f0435952804211c5637c.tar.bz2 |
Fixed bug #1983: Return from fork() is pid_t, not int
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Bug #1983: Fixed return type of fork(), fork1() and forkpty() calls. + Python expected the return type int but the fork familie returns pi_t. + - Issue #1678380: Fix a bug that identifies 0j and -0j when they appear in the same code unit. @@ -1386,6 +1389,9 @@ Tools/Demos Build ----- +- Bug #1983: Added a check to pyport to verify that sizeof(pid_t) is + smaller or equal sizeof(long). + - Bug #1234: Fixed semaphore errors on AIX 5.2 - Issue #1726: Remove Python/atof.c from PCBuild/pythoncore.vcproj |