Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9146c44
Added a dictionary for qualified named characters
GarkGarcia Jan 13, 2021
a5873dd
Merge branch 'master' of https://github.com/mathics/Mathics into name…
GarkGarcia Jan 13, 2021
242d47a
Refactored and renamed stuff
GarkGarcia Jan 13, 2021
6e370d5
Fixed a bug that aliased named character whose WL representation is t…
GarkGarcia Jan 15, 2021
21f3876
Moved stuff to mathics.core.character and removed duplicate code
GarkGarcia Jan 15, 2021
65cc33d
Fixed WL_TO_PLAIN_DICT
GarkGarcia Jan 16, 2021
552eea6
Extracted the dictionaries to a separate file and cleaned the code
GarkGarcia Jan 16, 2021
8a6d409
Added yaml as a dependency
GarkGarcia Jan 16, 2021
1e5a315
Fixed wrong import
GarkGarcia Jan 16, 2021
a91dfc1
Fixed deprecation warning
GarkGarcia Jan 16, 2021
be7ff7e
Fixed some errors
GarkGarcia Jan 16, 2021
21509d8
Fixed the last failing test
GarkGarcia Jan 16, 2021
1b532ac
Fixed another test
GarkGarcia Jan 16, 2021
86fffbb
Fixed yet another test
GarkGarcia Jan 16, 2021
2857749
Added missing entries `named-characters`
GarkGarcia Jan 16, 2021
2ce9ef2
Fixed syntax error
GarkGarcia Jan 16, 2021
1b08cc1
Removed unnecessary file
GarkGarcia Jan 16, 2021
a8ab963
Changed the format of the yml table
GarkGarcia Jan 17, 2021
b37653f
Fixed syntax error
GarkGarcia Jan 17, 2021
825cf0b
Fixed the name of a file
GarkGarcia Jan 17, 2021
2918b62
Fixed typo
GarkGarcia Jan 17, 2021
05e03d5
Fixed (more) typos
GarkGarcia Jan 17, 2021
e4485fc
Fixed (more) typos
GarkGarcia Jan 17, 2021
cf48973
Fixed (more) typos
GarkGarcia Jan 17, 2021
0d9f981
Removed unnecessary comments (the old code wass commented)
GarkGarcia Jan 17, 2021
dcbcf15
Avoided escaping the keys whenever possible
GarkGarcia Jan 18, 2021
b93b953
Started working on the script to pre-process the data and dump it to …
GarkGarcia Jan 18, 2021
968d4a3
Added ujson to the dependencies
GarkGarcia Jan 18, 2021
b486d0c
Removed unnecessary import
GarkGarcia Jan 18, 2021
2526275
Added mathics.core.characters.aliased_characters again
GarkGarcia Jan 18, 2021
0d0c9d9
Cleaned the code
GarkGarcia Jan 18, 2021
ce8b986
Renamed some variables to make their meaning clearer
GarkGarcia Jan 18, 2021
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
2 changes: 1 addition & 1 deletion mathics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
PrecisionReal,
)
from mathics.core.convert import from_sympy
from mathics.core.util import replace_wl_with_unicode, replace_unicode_with_wl
from mathics.core.characters import replace_wl_with_plain_text, replace_unicode_with_wl


version_info = {
Expand Down
Loading