diff options
author | Georg Brandl <georg@python.org> | 2010-12-30 22:11:50 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-30 22:11:50 +0000 |
commit | 856898b3958626d2400e59b53dc134283addc988 (patch) | |
tree | 2018f1418921ad20ef0fce86f9e28df09c3e5567 /Tools/demo/rpython.py | |
parent | a3fe8e0b9face74e34b938dd657c4048d5f0dadf (diff) | |
download | cpython-git-856898b3958626d2400e59b53dc134283addc988.tar.gz |
Harmonize docstrings. Move redemo from Tools/scripts to Tools/demo. Add a README file to Tools/demo.
Diffstat (limited to 'Tools/demo/rpython.py')
-rwxr-xr-x | Tools/demo/rpython.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Tools/demo/rpython.py b/Tools/demo/rpython.py index e9657203df..5e7bc0a27d 100755 --- a/Tools/demo/rpython.py +++ b/Tools/demo/rpython.py @@ -1,7 +1,9 @@ -#! /usr/bin/env python3 +#!/usr/bin/env python3 -# Remote python client. -# Execute Python commands remotely and send output back. +""" +Remote python client. +Execute Python commands remotely and send output back. +""" import sys from socket import socket, AF_INET, SOCK_STREAM, SHUT_WR |