Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.buildout
Commits
161fb191
Commit
161fb191
authored
May 05, 2020
by
Julien Muchembled
6
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply += & -= in correct order with respect to extends
parent
af873650
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+2
-4
No files found.
src/zc/buildout/buildout.py
View file @
161fb191
...
@@ -1985,10 +1985,8 @@ def _update_section(s1, s2):
...
@@ -1985,10 +1985,8 @@ def _update_section(s1, s2):
def
_update
(
d1
,
d2
):
def
_update
(
d1
,
d2
):
for
section
in
d2
:
for
section
in
d2
:
if
section
in
d1
:
# always call _update_section, so that += & -= are processed correctly
d1
[
section
]
=
_update_section
(
d1
[
section
],
d2
[
section
])
_update_section
(
d1
.
setdefault
(
section
,
{}),
d2
[
section
])
else
:
d1
[
section
]
=
d2
[
section
]
return
d1
return
d1
def
_recipe
(
options
):
def
_recipe
(
options
):
...
...
Julien Muchembled
@jm
mentioned in commit
b4b43372
·
Oct 31, 2023
mentioned in commit
b4b43372
mentioned in commit b4b43372c04cb8fecb3925caeeef719196623771
Toggle commit list
Julien Muchembled
@jm
mentioned in commit
75930619
·
Dec 05, 2023
mentioned in commit
75930619
mentioned in commit 759306195f4055cfd460c35ba5245fabfdcf87f5
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment