✏️ 正在编辑: rpc.cpython-37.pyc
路径:
/opt/alt/python37/lib64/python3.7/idlelib/__pycache__/rpc.cpython-37.pyc
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
B � f�R � @ s� d Z ddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddlZddlZddl Z ddlZddlZdd� Zdd� Zd*dd�ZG d d � d ej�ZdZdZG d d� de j�Zi Ze�d�Ze�d�ZG dd� de�ZG dd� de�Zdd� Z G dd� de�Z!G dd� de j"e�Z#G dd� de�Z$G dd� de�Z%dd� Z&dd � Z'G d!d"� d"e�Z(d#d$� Z)e*d%k�r�dd&l+m,Z, e,d'd(d)� dS )+a RPC Implementation, originally written for the Python Idle IDE For security reasons, GvR requested that Idle's Python execution server process connect to the Idle process, which listens for the connection. Since Idle has only one client per server, this was not a limitation. +---------------------------------+ +-------------+ | socketserver.BaseRequestHandler | | SocketIO | +---------------------------------+ +-------------+ ^ | register() | | | unregister()| | +-------------+ | ^ ^ | | | | + -------------------+ | | | | +-------------------------+ +-----------------+ | RPCHandler | | RPCClient | | [attribute of RPCServer]| | | +-------------------------+ +-----------------+ The RPCServer handler class is expected to provide register/unregister methods. RPCHandler inherits the mix-in class SocketIO, which provides these methods. See the Idle run.main() docstring for further information on how this was accomplished in Idle. � Nc C s t �| �}t|tj�st�|S )z*Return code object from marshal string ms.)�marshal�loads� isinstance�types�CodeType�AssertionError)�ms�co� r �0/opt/alt/python37/lib64/python3.7/idlelib/rpc.py� unpickle_code- s r c C s$ t | tj�st�t�| �}t|ffS )zBReturn unpickle function and tuple with marshalled co code object.)r r r r r �dumpsr )r r r r r �pickle_code3 s r c C s$ t �� }t||�}|�| � |�� S )z.Return pickled (or marshalled) string for obj.)�io�BytesIO�CodePickler�dump�getvalue)�objZprotocol�f�pr r r r 9 s r c @ s"