Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove test code that does not exercise anything in pybind11, but bre…
…aks between Python 3.12alpha3 (still working) and 3.12alpha6 (broken): (#4559) ``` str(OrderedDict([(1, "a"), (2, "b")])) ``` Old: ``` OrderedDict([(1, 'a'), (2, 'b')]) ``` New: ``` OrderedDict({1: 'a', 2: 'b'}) ``` See also: python/cpython#101446
- Loading branch information