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 christian.heimes
Recipients christian.heimes, gvanrossum, nnorwitz, roudkerk, theller
Date 2007-11-15.22:19:05
SpamBayes Score 0.17903787
Marked as misclassified No
Message-id <1195165146.23.0.926013695888.issue1378@psf.upfronthosting.co.za>
In-reply-to
Content
I've yet another idea for a tiny improvement. Instead of doing

   newfd = _socket.dup(socket_instance.fileno())

I prefer

   newfd = _socket.dup(socket_instance)

It removes some confusing magic and makes error checking on Windows
slightly easier.
History
Date User Action Args
2007-11-15 22:19:06christian.heimessetspambayes_score: 0.179038 -> 0.17903787
recipients: + christian.heimes, gvanrossum, nnorwitz, theller, roudkerk
2007-11-15 22:19:06christian.heimessetspambayes_score: 0.179038 -> 0.179038
messageid: <1195165146.23.0.926013695888.issue1378@psf.upfronthosting.co.za>
2007-11-15 22:19:06christian.heimeslinkissue1378 messages
2007-11-15 22:19:06christian.heimescreate