pyyaml
pyyaml copied to clipboard
Canonical source repository for PyYAML
Hello, Since there are already [wheels](https://pypi.org/project/PyYAML/6.0.1/#files) for Python 3.12 on PyPI and [tests](https://github.com/yaml/pyyaml/actions/runs/6866536928/job/18673004978#step:5:462) on CI, I believe it's worth adding Python 3.12 to the `classifiers`. Thanks!
The libyaml Cython wrapper uses `PyUnicode_CheckExact` around all C string accesses instead of `PyUnicode_Check`; this prevents `str` subclasses from being used anywhere with the C-accelerated types, and the varying error...
fixes #131 Could be done with existing "all dots" tag syntax instead of the `@` separator, but discarding the explicit distinction between the module/package and type name makes the import/construction...
Trying to serialize and then deserialize a nested class like ```python import yaml class A: class B: def __init__(self, i): self.i = i def __init__(self, i): self.b = A.B(i) yaml.load(yaml.dump(A(0)))...
Hello recently I wrote a python script while using yaml. However, when I downloaded the same project on a Windows 11 machine, the package will fail to import. Is there...
Is it possible next time on release new version make the github release to have entry on https://github.com/yaml/pyyaml/releases? 🤔 I'm asking because only on make gh release is spread notification...
Here's a quick and dirty crack at a more broadly-encompassing dynamic config system like we've talked about before... * builds on @perlpunk 's [excellent work getting 1.2 support into PyYAML](https://github.com/yaml/pyyaml/pull/555)...
* disable py2 relative import behavior fixes #688
Fails on Linux x86_64 when built under Cython 3.0.3 (w/ distutils compat hack) and Cython 0.29.36. Suspecting this is a Cython upstream issue...