Skip to content

Commit 209edec

Browse files
authored
Treat \[Degree] as a symbol (#24)
1 parent 093c6a3 commit 209edec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mathematica/builtins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7645,7 +7645,6 @@
76457645
u'∮', # \[ContourIntegral]
76467646
u'∳', # \[CounterClockwiseContourIntegral]
76477647
u'∯', # \[DoubleContourIntegral]
7648-
u'°', # \[Degree]
76497648
u'∇', # \[Del]
76507649
u'÷', # \[Divide]
76517650
u'≐', # \[DotEqual]
@@ -7854,7 +7853,8 @@
78547853

78557854
UNICODE_SYSTEM_SYMBOLS = {
78567855
u'π',
7857-
}
7856+
u'°', # \[Degree]
7857+
}
78587858

78597859
UNICODE_SYSTEM_UNDEFINED_SYMBOLS = {
78607860
u'ℵ', # \[Aleph]

0 commit comments

Comments
 (0)