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 gvanrossum
Recipients
Date 2002-03-24.12:02:48
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=6380

Comments:

(1) RLIM_INFINITY is used unconditionally elsewhere in the
module, so the #ifdef is unnecessary.

(2) The extra #if/#endif around the closing curly is ugly.
I'd avoid this by moving the corresponding opening curly
outside the first block.

(3) resource.RLIM_INFINITY is -1 on my system too. But does
that matter? This is just a symbolic constant to be used to
set limits to infinit, and if it happens to be -1, who
cares? It's got 32 1-bits, which is what counts.

So I'd accept it.
History
Date User Action Args
2007-08-23 15:09:16adminlinkissue489066 messages
2007-08-23 15:09:16admincreate