diff options
author | Guido van Rossum <guido@python.org> | 1995-06-23 22:37:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-06-23 22:37:53 (GMT) |
commit | bab472540143fe5bb124b07c948b9309ce072536 (patch) | |
tree | c45fbc012e85969091f7807c4de9fe5b97c3e46f /Demo | |
parent | 903afd0441512e879b7a87dd63bca6d4b1595009 (diff) | |
download | cpython-bab472540143fe5bb124b07c948b9309ce072536.zip cpython-bab472540143fe5bb124b07c948b9309ce072536.tar.gz cpython-bab472540143fe5bb124b07c948b9309ce072536.tar.bz2 |
delete file after checkin
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/pdist/RCSProxy.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Demo/pdist/RCSProxy.py b/Demo/pdist/RCSProxy.py index c22b81d..ed55e9f 100755 --- a/Demo/pdist/RCSProxy.py +++ b/Demo/pdist/RCSProxy.py @@ -12,7 +12,8 @@ The module defines two classes: RCSProxyLocal -- used for local access RCSProxyServer -- used on the server side of remote access -An additional class, RCSProxyClient, is defined in module rcsclient. +The corresponding client class, RCSProxyClient, is defined in module +rcsclient. The remote classes are instantiated with an IP address and an optional verbosity flag. @@ -109,6 +110,7 @@ class RCSProxyLocal(rcslib.RCS, DirSupport): f.write(data) f.close() self.checkin(name_rev, message) + self._remove(name) def _list(self, function, list = None): """INTERNAL: apply FUNCTION to all files in LIST. |