Issue 479195: Put Demo/rpc/rpc.py into standard lib (original) (raw)

Issue479195

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.

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/35486

classification

Title: Put Demo/rpc/rpc.py into standard lib
Type: enhancement Stage:
Components: None Versions:

process

Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: draghuram, georg.brandl, gvanrossum, romberg
Priority: normal Keywords:

Created on 2001-11-07 17:27 by romberg, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (4)
msg61072 - (view) Author: Mike Romberg (romberg) * Date: 2001-11-07 17:27
I have been using the rpc module found in Demo/rpc a bit. It seems to work pretty well and I am able to get a 100% python (no C modules of my own) program to talk RPC to our C++ servers. Since python seems to include many other network protocols in the standard library and the rpc module seems to work fine with 2.2b1 (after a very small patch), perhaps it should be made a part of the standard library? It seems that the xdr module in Demo/rpc has already been put in. This patch makes the rpc module use xdrlib instead of xdr. It might be better to rename all of the xdr references insead of doing the trick I do here :). *** rpc.py Sat Jul 20 20:09:54 1996 --- /home/eagle3/romberg/linux/HEAD/GFESuite/ifpISC/rpc.py Sun Oct 21 21:56:24 2001 *************** *** 8,14 **** # XXX There is no provision for call timeout on TCP connections ! import xdr import socket import os --- 8,16 ---- # XXX There is no provision for call timeout on TCP connections ! #import xdr ! import xdrlib ! xdr = xdrlib import socket import os
msg61454 - (view) Author: Raghuram Devarakonda (draghuram) (Python triager) Date: 2008-01-21 21:57
I started looking at the bugs in chronological order in the hope that I can close some issues that don't make sense any more. Can I close this one? I am almost sure that this module is not going to be included in stdlib (I myself haven't used this module, though).
msg61456 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-01-21 21:59
Go ahead.
msg61457 - (view) Author: Raghuram Devarakonda (draghuram) (Python triager) Date: 2008-01-21 22:02
Closing as there is no activity for long time and the request is unlikely to be accepted, anyway.
History
Date User Action Args
2022-04-10 16:04:37 admin set github: 35486
2008-01-21 22:02:08 draghuram set status: open -> closedresolution: rejectedmessages: +
2008-01-21 21:59:41 georg.brandl set nosy: + georg.brandlmessages: +
2008-01-21 21:57:28 draghuram set nosy: + draghuram, gvanrossummessages: +
2001-11-07 17:27:23 romberg create