mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Issue #20315: Removed support for backward compatibility with early 2.x versions.
Removed backward compatibility alias curses.window.nooutrefresh which should be removed in 2.3.
This commit is contained in:
commit
ab0ac27d24
8 changed files with 3 additions and 98 deletions
|
@ -1693,13 +1693,6 @@ PyObject_GC_Track(void *op)
|
|||
_PyObject_GC_TRACK(op);
|
||||
}
|
||||
|
||||
/* for binary compatibility with 2.2 */
|
||||
void
|
||||
_PyObject_GC_Track(PyObject *op)
|
||||
{
|
||||
PyObject_GC_Track(op);
|
||||
}
|
||||
|
||||
void
|
||||
PyObject_GC_UnTrack(void *op)
|
||||
{
|
||||
|
@ -1710,13 +1703,6 @@ PyObject_GC_UnTrack(void *op)
|
|||
_PyObject_GC_UNTRACK(op);
|
||||
}
|
||||
|
||||
/* for binary compatibility with 2.2 */
|
||||
void
|
||||
_PyObject_GC_UnTrack(PyObject *op)
|
||||
{
|
||||
PyObject_GC_UnTrack(op);
|
||||
}
|
||||
|
||||
PyObject *
|
||||
_PyObject_GC_Malloc(size_t basicsize)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue