當前位置: 首頁>>代碼示例>>Python>>正文


Python ChangeSet.pending方法代碼示例

本文整理匯總了Python中reviewboard.scmtools.core.ChangeSet.pending方法的典型用法代碼示例。如果您正苦於以下問題:Python ChangeSet.pending方法的具體用法?Python ChangeSet.pending怎麽用?Python ChangeSet.pending使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在reviewboard.scmtools.core.ChangeSet的用法示例。


在下文中一共展示了ChangeSet.pending方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _get_fake_changeset

# 需要導入模塊: from reviewboard.scmtools.core import ChangeSet [as 別名]
# 或者: from reviewboard.scmtools.core.ChangeSet import pending [as 別名]
        def _get_fake_changeset(scmtool, commit_id, allow_empty=True):
            self.assertEqual(commit_id, current_commit_id)

            changeset = ChangeSet()
            changeset.pending = False
            changeset.changenum = int(new_commit_id)
            return changeset
開發者ID:davidt,項目名稱:reviewboard,代碼行數:9,代碼來源:test_review_request.py

示例2: parse_change_desc

# 需要導入模塊: from reviewboard.scmtools.core import ChangeSet [as 別名]
# 或者: from reviewboard.scmtools.core.ChangeSet import pending [as 別名]
    def parse_change_desc(changedesc, changenum, allow_empty=False):
        if not changedesc:
            return None

        changeset = ChangeSet()
        try:
            changeset.changenum = int(changedesc['change'])
        except ValueError:
            changeset.changenum = changenum

        # At it's most basic, a perforce changeset description has three
        # sections.
        #
        # ---------------------------------------------------------
        # Change <num> by <user>@<client> on <timestamp> *pending*
        #
        #         description...
        #         this can be any number of lines
        #
        # Affected files ...
        #
        # //depot/branch/etc/file.cc#<revision> branch
        # //depot/branch/etc/file.hh#<revision> delete
        # ---------------------------------------------------------
        #
        # At the moment, we only care about the description and the list of
        # files.  We take the first line of the description as the summary.
        #
        # We parse the username out of the first line to check that one user
        # isn't attempting to "claim" another's changelist.  We then split
        # everything around the 'Affected files ...' line, and process the
        # results.
        changeset.username = changedesc['user']

        try:
            changeset.description = changedesc['desc'].decode('utf-8')
        except UnicodeDecodeError:
            changeset.description = changedesc['desc'].decode('utf-8',
                                                              'replace')

        if changedesc['status'] == "pending":
            changeset.pending = True
        try:
            changeset.files = changedesc['depotFile']
        except KeyError:
            if not allow_empty:
                raise EmptyChangeSetError(changenum)

        split = changeset.description.find('\n\n')
        if split >= 0 and split < 100:
            changeset.summary = \
                changeset.description.split('\n\n', 1)[0].replace('\n', ' ')
        else:
            changeset.summary = changeset.description.split('\n', 1)[0]

        return changeset
開發者ID:Anastasiya2307,項目名稱:reviewboard,代碼行數:58,代碼來源:perforce.py

示例3: get_changeset

# 需要導入模塊: from reviewboard.scmtools.core import ChangeSet [as 別名]
# 或者: from reviewboard.scmtools.core.ChangeSet import pending [as 別名]
 def get_changeset(self, changesetid, allow_empty=False):
     changeset = ChangeSet()
     changeset.changenum = changesetid
     changeset.description = 'Hello world!'
     changeset.pending = True
     if not allow_empty:
         changeset.files = ['README.md']
     changeset.summary = 'Added a README markdown to help explain what the'\
         ' repository is used for. Hopefully, this takes off.'
     changeset.testing_done = "None was performed"
     return changeset
開發者ID:CharanKamal-CLI,項目名稱:reviewboard,代碼行數:13,代碼來源:scmtool.py

示例4: _parse_change_desc

# 需要導入模塊: from reviewboard.scmtools.core import ChangeSet [as 別名]
# 或者: from reviewboard.scmtools.core.ChangeSet import pending [as 別名]
    def _parse_change_desc(self, changedesc, changenum, allow_empty=False):
        """Parse the contents of a change description from Perforce.

        This will attempt to grab details from the change description,
        including the changeset ID, the list of files, change message,
        and state.

        Args:
            changedesc (dict):
                The change description dictionary from Perforce.

            changenum (int):
                THe change number.

            allow_empty (bool, optional):
                Whether an empty changeset (containing no files) is allowed.

        Returns:
            reviewboard.scmtools.core.ChangeSet:
            The resulting changeset, or ``None`` if ``changedesc`` is empty.

        Raises:
            reviewboard.scmtools.errors.EmptyChangeSetError:
                The resulting changeset contained no file modifications (and
                ``allow_empty`` was ``False``).
        """
        if not changedesc:
            return None

        changeset = ChangeSet()

        try:
            changeset.changenum = int(changedesc['change'])
        except ValueError:
            changeset.changenum = changenum

        # At it's most basic, a perforce changeset description has three
        # sections.
        #
        # ---------------------------------------------------------
        # Change <num> by <user>@<client> on <timestamp> *pending*
        #
        #         description...
        #         this can be any number of lines
        #
        # Affected files ...
        #
        # //depot/branch/etc/file.cc#<revision> branch
        # //depot/branch/etc/file.hh#<revision> delete
        # ---------------------------------------------------------
        #
        # At the moment, we only care about the description and the list of
        # files.  We take the first line of the description as the summary.
        #
        # We parse the username out of the first line to check that one user
        # isn't attempting to "claim" another's changelist.  We then split
        # everything around the 'Affected files ...' line, and process the
        # results.
        changeset.username = changedesc['user']

        try:
            changeset.description = changedesc['desc'].decode('utf-8')
        except UnicodeDecodeError:
            changeset.description = changedesc['desc'].decode('utf-8',
                                                              'replace')

        if changedesc['status'] == 'pending':
            changeset.pending = True

        try:
            changeset.files = changedesc['depotFile']
        except KeyError:
            if not allow_empty:
                raise EmptyChangeSetError(changenum)

        split = changeset.description.find('\n\n')

        if split >= 0 and split < 100:
            changeset.summary = \
                changeset.description.split('\n\n', 1)[0].replace('\n', ' ')
        else:
            changeset.summary = changeset.description.split('\n', 1)[0]

        return changeset
開發者ID:chipx86,項目名稱:reviewboard,代碼行數:86,代碼來源:perforce.py


注:本文中的reviewboard.scmtools.core.ChangeSet.pending方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。