Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Merge requests
!1318
update 7.0 relnote
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
update 7.0 relnote
topic/stable/7.0-relnotes
into
branch/stable
Overview
0
Commits
2
Pipelines
1
Changes
3
Merged
Pierre-Yves David
requested to merge
topic/stable/7.0-relnotes
into
branch/stable
2 weeks ago
Overview
0
Commits
2
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
branch/stable
branch/stable (base)
and
latest version
latest version
cb2b2242
2 commits,
2 weeks ago
3 files
+
46
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
mercurial/bundle2.py
+
10
−
1
Options
@@ -939,7 +939,16 @@
yield
_pack
(
_fstreamparamsize
,
paramssize
)
# From there, payload might need to be decompressed
self
.
_fp
=
self
.
_compengine
.
decompressorreader
(
self
.
_fp
)
emptycount
=
0
# We usually wait for empty terminators: a bundle part terminator
# followed by a bundle terminator.
#
# Since the empty bundle has no parts,
# bundle part terminator never comes.
#
# So we boostrap this detection with am empty part, which the first
# piece of part will reset.
emptycount
=
1
while
emptycount
<
2
:
# so we can brainlessly loop
assert
_fpartheadersize
==
_fpayloadsize
Loading