Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-40893: Add TkDND support to tkinter #20896

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions Doc/library/tkinter.dnd.rst
@@ -1,16 +1,18 @@
:mod:`tkinter.dnd` --- Drag and drop support
============================================
:mod:`tkinter.dnd` --- Deprecated drag and drop support
=======================================================

.. module:: tkinter.dnd
:platform: Tk
:synopsis: Tkinter drag-and-drop interface
:deprecated:

**Source code:** :source:`Lib/tkinter/dnd.py`

--------------
.. deprecated:: 3.10
The :mod:`tkinter.dnd` module is deprecated in favour of the TkDND bindings
in the main :mod:`tkinter` module.

.. note:: This is experimental and due to be deprecated when it is replaced
with the Tk DND.
--------------

The :mod:`tkinter.dnd` module provides drag-and-drop support for objects within
a single application, within the same window or between windows. To enable an
Expand Down