Le 02/10/18 à 21:55, Armin Rigo a écrit :
if (PyMapping_DelItemString (ptr(), const_cast<char*>(s.c_str())) == -1) if (PyMapping_DelItem (ptr(), *s) == -1)I don't know how it ever worked, because PyMapping_DelItem and PyMapping_DelItemString are not implemented, neither right now nor at the time of release 6.0.0. If you are using these two functions, please open an issue (https://bitbucket.org/pypy/pypy/issues?status=new&status=open) and we'll implement them.
I just implemented these in https://bitbucket.org/pypy/pypy/commits/a5735c0b1edd6e5e16dc7015facf2131fed6188d
_______________________________________________ pypy-dev mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-dev
