Bugs item #1469163, was opened at 2006-04-12 20:23 Message generated for change (Comment added) made by anthonybaxter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1469163&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Python Library Group: Python 2.5 >Status: Closed >Resolution: Fixed Priority: 7 Submitted By: kadeko (kadeko) >Assigned to: Anthony Baxter (anthonybaxter) Summary: SimpleXMLRPCServer doesn't work anymore on Windows Initial Comment: The bug resolution of [ 1222790 ] SimpleXMLRPCServer does not set FD_CLOEXEC break the compatibility with Windows system. The new "import fcntl" is not possible on non POSIX system. C:\Python25>C:\Python25\python.exe C:\Python25\server2.py Traceback (most recent call last): File "C:\Python25\server2.py", line 1, in <module> from DocXMLRPCServer import DocXMLRPCServer File "C:\Python25\lib\DocXMLRPCServer.py", line 18, in <module> from SimpleXMLRPCServer import (SimpleXMLRPCServer, File "C:\Python25\lib\SimpleXMLRPCServer.py", line 107, in <module> import os, fcntl ImportError: No module named fcntl ---------------------------------------------------------------------- >Comment By: Anthony Baxter (anthonybaxter) Date: 2006-04-12 22:08 Message: Logged In: YES user_id=29957 Fixed in r45305 by handling the 'no fcntl module available' case. Thanks for the bug report! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1469163&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com