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 bkabrda
Recipients bkabrda
Date 2013-04-08.12:57:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365425837.0.0.73403835622.issue17662@psf.upfronthosting.co.za>
In-reply-to
Content
When building extension modules of Python 2.7.4 through Modules/Setup.dist, the socketmodule gets built badly, as it also needs to be compiled with timemodule.c (see the attached patch).
This was caused by commit 8ec39bfd1f01, which introduced usage of _PyTime_floattime() without fixing Setup.dist (note, that this is ok when compiling through setup.py, as it has:

exts.append( Extension('_socket', ['socketmodule.c', 'timemodule.c'],
History
Date User Action Args
2013-04-08 12:57:17bkabrdasetrecipients: + bkabrda
2013-04-08 12:57:17bkabrdasetmessageid: <1365425837.0.0.73403835622.issue17662@psf.upfronthosting.co.za>
2013-04-08 12:57:16bkabrdalinkissue17662 messages
2013-04-08 12:57:16bkabrdacreate