Option to ignore undefined tags
See original GitHub issueWould it be possible to have an option to ignore undefined tags instead of raising a yaml.constructor.ConstructorError
?
Something like:
def construct_undefined(self, node):
if ignore_undefined:
return None
raise ConstructorError(None, None,
"could not determine a constructor for the tag %r" % node.tag,
node.start_mark)
Issue Analytics
- State:
- Created 6 years ago
- Reactions:8
- Comments:9 (6 by maintainers)
Top Results From Across the Web
Ignore undefined reference in c++ - Stack Overflow
So the short answer is: theres no such option, and it would not make sense. Share.
Read more >How to suppress undefined references in exercise answers ...
To do this, I'm using the package option answerdelayed and this works well, aside from annoying issue. The problem is that any references ......
Read more >how to ignore undefined reference - Intel Communities
Hi, When compiling a program, "undefined reference to `asub_'" might occur. I know where the problem is, and pretty sure that the execution....
Read more >JavaScript undefined Property - W3Schools
The undefined property indicates that a variable has not been assigned a value, or not declared at all. Browser Support. undefined() is an...
Read more >Docs • Svelte
In development mode (see the compiler options), a warning will be printed if no ... 'optional default initial value'; export let baz =...
Read more >Top Related Medium Post
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is trivial to do now:
Thanks, @nitzmahone. It worked.