- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message360120
This issue tracker has been migrated to GitHub,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
| Author | vstinner |
|---|---|
| Recipients | vstinner |
| Date | 2020-01-16.13:47:28 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1579182449.25.0.646688097362.issue39361@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
commit aacc77fbd77640a8f03638216fa09372cc21673d Author: Jeroen Demeyer <J.Demeyer@UGent.be> Date: Wed May 29 20:31:52 2019 +0200 bpo-36974: implement PEP 590 (GH-13185) Co-authored-by: Jeroen Demeyer <J.Demeyer@UGent.be> Co-authored-by: Mark Shannon <mark@hotpy.org> removed PyTypeObject.tp_print: diff --git a/Include/cpython/object.h b/Include/cpython/object.h index ba52a48358..a65aaf6482 100644 --- a/Include/cpython/object.h +++ b/Include/cpython/object.h @@ -182,7 +182,7 @@ typedef struct _typeobject { /* Methods to implement standard operations */ destructor tp_dealloc; - printfunc tp_print; + Py_ssize_t tp_vectorcall_offset; getattrfunc tp_getattr; setattrfunc tp_setattr; PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2) Would it be possible to just document it in What's New in Python 3.9? Near: https://docs.python.org/dev/whatsnew/3.9.html#build-and-c-api-changes For example, this incompatible change broke zbar project: https://bugzilla.redhat.com/show_bug.cgi?id=1791745 |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2020-01-16 13:47:29 | vstinner | set | recipients: + vstinner |
| 2020-01-16 13:47:29 | vstinner | set | messageid: <1579182449.25.0.646688097362.issue39361@roundup.psfhosted.org> |
| 2020-01-16 13:47:29 | vstinner | link | issue39361 messages |
| 2020-01-16 13:47:28 | vstinner | create | |

