Files
RustPython/scripts/checklist_template.md
Ashwin Naren 5a81533f61 stdlib compatability checking scripts (#5697)
* stdlib compat checking scripts

Signed-off-by: Ashwin Naren <arihant2math@gmail.com>

* update output

---------

Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
2025-06-27 13:49:53 +09:00

22 lines
670 B
Markdown

{% macro display_line(i) %}- {% if i.completed == True %}[x] {% elif i.completed == False %}[ ] {% endif %}{{ i.name }}{% if i.pr != None %} {{ i.pr }}{% endif %}{% endmacro %}
# List of libraries
{% for lib in update_libs %}{{ display_line(lib) }}
{% endfor %}
# List of un-added libraries
These libraries are not added yet. Pure python one will be possible while others are not.
{% for lib in add_libs %}{{ display_line(lib) }}
{% endfor %}
# List of tests without python libraries
{% for lib in update_tests %}{{ display_line(lib) }}
{% endfor %}
# List of un-added tests without python libraries
{% for lib in add_tests %}{{ display_line(lib) }}
{% endfor %}