diff options
author | Yury Selivanov <yury@magic.io> | 2018-01-24 16:31:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 16:31:01 (GMT) |
commit | 22feeb88b473b288950cdb2f6c5d28692274b5f9 (patch) | |
tree | 805ea2b2b684bb331f1205f1347b5b60e1dfd2db /Misc | |
parent | 8ded5b803705328749622256701b3f08a9d6c5ab (diff) | |
download | cpython-22feeb88b473b288950cdb2f6c5d28692274b5f9.zip cpython-22feeb88b473b288950cdb2f6c5d28692274b5f9.tar.gz cpython-22feeb88b473b288950cdb2f6c5d28692274b5f9.tar.bz2 |
bpo-32643: Drop support for a few private Task and Future APIs. (#5293)
Specifically, it's not possible to subclass Task/Future classes
and override the following methods:
* Future._schedule_callbacks
* Task._step
* Task._wakeup
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-01-24-00-32-58.bpo-32643.VWipsW.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-01-24-00-32-58.bpo-32643.VWipsW.rst b/Misc/NEWS.d/next/Library/2018-01-24-00-32-58.bpo-32643.VWipsW.rst new file mode 100644 index 0000000..7fdd53d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-01-24-00-32-58.bpo-32643.VWipsW.rst @@ -0,0 +1,2 @@ +Make Task._step, Task._wakeup and Future._schedule_callbacks methods +private. |