コード例 #1
0
ファイル: gcl.py プロジェクト: neurobcn/plexnet
 def UpdateRietveldDescription(self):
     """Sets the description for an issue on Rietveld."""
     data = [
         ("description", self.description),
     ]
     ctype, body = upload.EncodeMultipartFormData(data, [])
     SendToRietveld("/%d/description" % self.issue, body, ctype)
コード例 #2
0
ファイル: gcl.py プロジェクト: neurobcn/plexnet
 def CloseIssue(self):
     """Closes the Rietveld issue for this changelist."""
     data = [
         ("description", self.description),
     ]
     ctype, body = upload.EncodeMultipartFormData(data, [])
     SendToRietveld("/%d/close" % self.issue, body, ctype)