Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

https://github.com/ipython/ipython/issues/12861

# Task # 2

Investigate why tools/gen_latex_symbols.py fails to decode \U1d4c1 mathematical script small l in latex_symbols.jl

Remember your job is to make *incremental* progress, break the task into smaller tasks, or finish something in 15 minutes, then pass it along to the next contributor.
No responsibility, only fun.

Expand Down
2 changes: 1 addition & 1 deletion tools/gen_latex_symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_ident(i):
assert test_ident("α")
assert not test_ident('‴')

valid_idents = [line for line in idents if test_ident(line[1])]
valid_idents = idents

# Write the `latex_symbols.py` module in the cwd

Expand Down