mirror of https://github.com/python/cpython.git
implemented commit
This commit is contained in:
parent
d22f59fd5d
commit
bafc14da68
|
@ -119,7 +119,11 @@ def commitcheck(self):
|
||||||
return self.action() != 'C'
|
return self.action() != 'C'
|
||||||
|
|
||||||
def put(self, message = ""):
|
def put(self, message = ""):
|
||||||
print "%s: put not yet implemented" % self.file
|
print "Checking in", self.file, "..."
|
||||||
|
data = open(self.file).read()
|
||||||
|
messages = self.proxy.put(self.file, data, message)
|
||||||
|
if messages:
|
||||||
|
print messages
|
||||||
|
|
||||||
def get(self):
|
def get(self):
|
||||||
data = self.proxy.get(self.file)
|
data = self.proxy.get(self.file)
|
||||||
|
|
Loading…
Reference in New Issue