-
-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make socket support TIPC. #45987
Comments
TIPC (http://tipc.sf.net) is an open protocol designed for use in The attached patch (against trunk) adds optional Linux-only support for If you want me to make one against 3.0 or any other branch, just let me Thanks, |
I'm okay with adding this, it doesn't add much code and is properly I haven't reviewed the code though. |
On Tue, Dec 18, 2007 at 07:10:39PM -0000, Guido van Rossum wrote:
Thanks! Is there anything else I need to do in order to get this ready for Thanks again, |
Tickle the interest of one of the many folks with commit privileges. |
I've chatted with albertito a few days ago and adviced him to post the From the first review the patch looks good. The code is written cleanly The patch is missing documentation updates, Misc/NEWS update and some |
*PING* I'm still waiting for a new patch. Your feature patch has been accepted |
On Sat, Jan 05, 2008 at 10:08:15PM -0000, Christian Heimes wrote:
I know, but holidays were not the best time to write documentation. I'll probably send you the updated patch sometime this week; thanks for Thanks, |
On Sun, Jan 06, 2008 at 02:45:35PM -0000, Alberto Bertogli wrote:
Here are the three patches, rebased to the SVN commit 59815. The first one is the same I've already submitted, the second adds the The testcases are simple, but I think cover a reasonable amount of TIPC The documentation is simple, as you told me, just a paragraph explaining Finally, if you want me to rebase this on top of any other branch, you Thanks a lot, |
The unit tests don't work for me (Ubuntu 7.10, Linux 2.6.22, i386) >>> srv = socket.socket(socket.AF_TIPC, socket.SOCK_RDM)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/heimes/dev/python/trunk/Lib/socket.py", line 177, in __init__
_sock = _realsocket(family, type, proto)
socket.error: [Errno 97] Address family not supported by protocol Do I have to set up my network device for TIPC? |
On Mon, Jan 07, 2008 at 03:37:54PM -0000, Christian Heimes wrote:
> The unit tests don't work for me (Ubuntu 7.10, Linux 2.6.22, i386)
>
> >>> srv = socket.socket(socket.AF_TIPC, socket.SOCK_RDM)
> Traceback (most recent call last):
> File "<stdin>", line 1, in <module>
> File "/home/heimes/dev/python/trunk/Lib/socket.py", line 177, in __init__
> _sock = _realsocket(family, type, proto)
> socket.error: [Errno 97] Address family not supported by protocol
>
> Do I have to set up my network device for TIPC? No, by default you have a single-node cluster fully capable of TIPC If that works, the test cases should pass. I understand that this might be a problem because there is no time to Do you want me to check for this in the conditional for inclusion? Thanks, |
Committed in r59819 |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: