[Python-Dev] Py_tp_getset in ABI?
Hi all, I'm trying to convert my embedding code to your new ABI, but I cannot find the ABI slot for tp_getset in typeslots.h (while tp_methods are supported). Is the support of tp_getset not yet determined? (Because I cannot find this in the PEP 384) Thank you! ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
[Python-Dev] Unicode identifiers
Hi all, I wanted to implement quantity objects in a software, which can be used with user-friendly expressions like: money = 3 * €, where Euro is a special quantity object But now I realized, Python does not allow currency characters in names, although they can be very useful. Is there a really convincing argument against the inclusion? Thank you! ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
[Python-Dev] dll name for embedding?
Hi all, I'm an app developer with a CPython dll in the folder of that app. In general, are there strict requirements about the dll name (a preference would be "python.dll" (easy to update (simple replace) ). I successfully used "python.dll" and a few standard modules, then I tried to use the sympy library and its import fails with an AV exception, unless I rename the dll back to the original "python32.dll" Is there an intrinsic filename requirement inside the CPython dll, modules, or are name-restrictions to be presumed only in case of third-party libs? ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com