mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-21 16:39:08 -07:00
unsafe cleanup
This commit is contained in:
parent
031e961c58
commit
8c43ce491e
2 changed files with 4 additions and 5 deletions
2
changelogs/fragments/unsafe_cleanup.yml
Normal file
2
changelogs/fragments/unsafe_cleanup.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- small code cleanup to make method signatures match their parents and nicer 'unsafe' handling.
|
|
@ -78,7 +78,7 @@ class AnsibleConstructor(SafeConstructor):
|
||||||
|
|
||||||
return mapping
|
return mapping
|
||||||
|
|
||||||
def construct_yaml_str(self, node, unsafe=False):
|
def construct_yaml_str(self, node):
|
||||||
# Override the default string handling function
|
# Override the default string handling function
|
||||||
# to always return unicode objects
|
# to always return unicode objects
|
||||||
value = self.construct_scalar(node)
|
value = self.construct_scalar(node)
|
||||||
|
@ -86,9 +86,6 @@ class AnsibleConstructor(SafeConstructor):
|
||||||
|
|
||||||
ret.ansible_pos = self._node_position_info(node)
|
ret.ansible_pos = self._node_position_info(node)
|
||||||
|
|
||||||
if unsafe:
|
|
||||||
ret = wrap_var(ret)
|
|
||||||
|
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
def construct_vault_encrypted_unicode(self, node):
|
def construct_vault_encrypted_unicode(self, node):
|
||||||
|
@ -113,7 +110,7 @@ class AnsibleConstructor(SafeConstructor):
|
||||||
data.ansible_pos = self._node_position_info(node)
|
data.ansible_pos = self._node_position_info(node)
|
||||||
|
|
||||||
def construct_yaml_unsafe(self, node):
|
def construct_yaml_unsafe(self, node):
|
||||||
return self.construct_yaml_str(node, unsafe=True)
|
return wrap_var(self.construct_yaml_str(node))
|
||||||
|
|
||||||
def _node_position_info(self, node):
|
def _node_position_info(self, node):
|
||||||
# the line number where the previous token has ended (plus empty lines)
|
# the line number where the previous token has ended (plus empty lines)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue