Felix Fontein

Results 1998 comments of Felix Fontein

Python 3.13 no longer supports crypt, so this module no longer supports Python 3.13 :-(

@quidame since you originally wrote this test, did you ever ran it manually and did it work for you? I'm wondering whether it got broken by a change in ansible-core,...

This is still deprecated in Python 3.11, and will be removed in Python 3.12 - which will be released next year. If this isn't fixed by then, the module will...

Python 3.13 no longer supports crypt, so this module no longer supports Python 3.13 :-(

@russoz @remyleone @samdoran thanks!

@goccy thanks for your reply! What I basically need to achieve is to read a YAML file and walk through its structure and identify the type for each value. I...

Ok, I think I figured out how to distinguish a `node` of type `ast.StringNode` that's a quoted string from a string that could be a date/timestamp/integer/float: `node.Token.Type == token.SingleQuoteType ||...

In case anyone has a similar problem, the following documents contain regular expressions that match all strings representing integers, floating point numbers, and timestamps supported by YAML: - https://yaml.org/type/int.html -...

> BTW do you want to merge this eventually or is this only meant as an example how it would look like? I'd merge it together with https://github.com/ansible-community/antsibull/pull/623, so that...