Skip to content

Commit

Permalink
pytool: Bump version 3.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed Apr 4, 2018
1 parent c476fc4 commit 6c19597
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pytool/__init__.py
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
"""
__version__ = '3.4.2'
__version__ = '3.5.0'


from pytool import (
Expand Down
6 changes: 6 additions & 0 deletions pytool/lang.py
Expand Up @@ -353,6 +353,10 @@ class Namespace(object):
Namespaces are useful!
.. versionadded:: 3.5.0
Added the ability to create Namespace instances from dictionaries.
"""
def __init__(self, obj=None):
if obj is not None:
Expand Down Expand Up @@ -432,6 +436,8 @@ def from_dict(self, obj):
:param dict obj: Dictionary object to merge into this Namespace
.. versionadded:: 3.5.0
"""
def _coerce_value(value):
""" Helps coerce values to Namespaces recursively. """
Expand Down

0 comments on commit 6c19597

Please sign in to comment.