Re: New incompatibility with recent 2.16.1, with a prototype {str}*
Bill Allombert <[email protected]> Sat, 3 Aug 2024 01:57:00 +0200
| Newsgroups | gmane.comp.mathematics.pari.devel |
|---|---|
| Message-ID | <Zq1yTN4GhWSwe-9B@seventeen> |
On Fri, Aug 02, 2024 at 04:12:51PM -0700, Ilya Zakharevich wrote:
> I do not see this with the stable version:
>
> (16:08) gp > my(ll); error("See "#ll);
> *** this should be a small integer: my(ll);error("See "#ll);
> *** ^-----------
This is due to x# being the primorial of x now.
? "See"#
*** this should be a small integer: "See"#
*** ^------
Please do error("See ",#ll) instead.
Cheers,
Bill