We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6244c55 commit d85574eCopy full SHA for d85574e
git/remote.py
@@ -717,7 +717,7 @@ def _get_push_info(self, proc, progress):
717
# read the lines manually as it will use carriage returns between the messages
718
# to override the previous one. This is why we read the bytes manually
719
progress_handler = progress.new_message_handler()
720
- output = IterableList('name')
+ output = []
721
722
def stdout_handler(line):
723
try:
@@ -833,7 +833,7 @@ def push(self, refspec=None, progress=None, **kwargs):
833
:note: No further progress information is returned after push returns.
834
:param kwargs: Additional arguments to be passed to git-push
835
:return:
836
- IterableList(PushInfo, ...) iterable list of PushInfo instances, each
+ list(PushInfo, ...) list of PushInfo instances, each
837
one informing about an individual head which had been updated on the remote
838
side.
839
If the push contains rejected heads, these will have the PushInfo.ERROR bit set
git/test/test_remote.py
@@ -325,7 +325,7 @@ def _assert_push_and_pull(self, remote, rw_repo, remote_repo):
325
self._commit_random_file(rw_repo)
326
progress = TestRemoteProgress()
327
res = remote.push(lhead.reference, progress)
328
- self.assertIsInstance(res, IterableList)
+ self.assertIsInstance(res, list)
329
self._do_test_push_result(res, remote)
330
progress.make_assertion()
331
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments