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
6
Merge Requests
6
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
slapos.buildout
Commits
5aa3e5bd
Commit
5aa3e5bd
authored
Aug 20, 2019
by
Michael Howitz
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DeprecationWarning about MutableMapping.
Fixes #484.
parent
d155e409
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
CHANGES.rst
CHANGES.rst
+2
-1
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+3
-3
No files found.
CHANGES.rst
View file @
5aa3e5bd
...
...
@@ -4,7 +4,8 @@ Change History
2.13.3
(
unreleased
)
===================
-
Nothing
changed
yet
.
-
Fix
DeprecationWarning
about
MutableMapping
.
(`#
484
<
https
://
github
.
com
/
buildout
/
buildout
/
issues
/
484
>
_
`)
2.13.2
(
2019
-
07
-
03
)
...
...
src/zc/buildout/buildout.py
View file @
5aa3e5bd
...
...
@@ -23,9 +23,9 @@ except ImportError:
from
md5
import
md5
try
:
from
UserDict
import
DictMixin
from
collections.abc
import
MutableMapping
as
DictMixin
except
ImportError
:
from
collections
import
MutableMapping
as
DictMixin
from
UserDict
import
DictMixin
import
zc.buildout.configparser
import
copy
...
...
@@ -2067,7 +2067,7 @@ Commands:
COMPUTED_VALUE, DEFAULT_VALUE, COMMAND_LINE_VALUE).
query section:key
Display value of given section key pair.
"""
...
...
Julien Muchembled
@jm
mentioned in commit
2789ebd1
·
Apr 22, 2022
mentioned in commit
2789ebd1
mentioned in commit 2789ebd1787aec2d1bb254c1e8e7ff3992d8bc73
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