Skip to content

Commit 96dc498

Browse files
committed
fix test
1 parent d760889 commit 96dc498

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mathics/builtin/compilation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Compile(Builtin):
3434
: Duplicate parameter x found in {{x, _Real}, {x, _Integer}}.
3535
= Compile[{{x, _Real}, {x, _Integer}}, Sin[x + y]]
3636
#> cf = Compile[{{x, _Real}, {y, _Integer}}, Sin[x + z]]
37-
= CompiledFunction[{x, y}, Sin[x + z], -CompiledCode-]
37+
= CompiledFunction[{x, y}, Sin[x + z], -PythonizedCode-]
3838
#> cf = Compile[{{x, _Real}, {y, _Integer}}, Sin[x + y]]
3939
= CompiledFunction[{x, y}, Sin[x + y], -CompiledCode-]
4040
#> cf[1, 2]
@@ -53,7 +53,7 @@ class Compile(Builtin):
5353
Loops and variable assignments are supported as python (not llvmlite)
5454
functions
5555
>> Compile[{{a, _Integer}, {b, _Integer}}, While[b != 0, {a, b} = {b, Mod[a, b]}]; a] (* GCD of a, b *)
56-
= CompiledFunction[{a, b}, a, -CompiledCode-]
56+
= CompiledFunction[{a, b}, a, -PythonizedCode-]
5757
'''
5858

5959
requires = (

0 commit comments

Comments
 (0)