Skip to content

Commit 37acf81

Browse files
videlecdimpase
authored andcommitted
fix m prototype
1 parent 42ad316 commit 37acf81

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

autogen/ret.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ def return_code(self):
5454
s = " return new_gen({name})\n"
5555
return s.format(name=self.name)
5656

57+
class PariReturnmGEN(PariReturn):
58+
def ctype(self):
59+
return "GEN"
60+
def return_code(self):
61+
s = " {name} = gcopy({name})\n"
62+
s += " return new_gen({name})\n"
63+
return s.format(name=self.name)
64+
5765
class PariReturnInt(PariReturn):
5866
def ctype(self):
5967
return "int"
@@ -78,7 +86,7 @@ def return_code(self):
7886

7987
pari_ret_types = {
8088
'': PariReturnGEN,
81-
'm': PariReturnGEN,
89+
'm': PariReturnmGEN,
8290
'i': PariReturnInt,
8391
'l': PariReturnLong,
8492
'u': PariReturnULong,

0 commit comments

Comments
 (0)