Change the type of 'python-eldoc-function-timeout' to number

* etc/NEWS: Announce the change.
* lisp/progmodes/python.el (python-eldoc-function-timeout):
Change the type.  (Bug#80045)
This commit is contained in:
kobarity 2026-01-31 23:12:05 +09:00 committed by Eli Zaretskii
parent 482748592f
commit 3107c66c84
2 changed files with 7 additions and 1 deletions

View file

@ -2508,6 +2508,12 @@ When point is between indentation, the command
deletes the text in the region and deactivates the mark if Transient
Mark mode is enabled, the mark is active, and prefix argument is 1.
---
*** 'python-eldoc-function-timeout' now accepts floating-point numbers.
To allow for finer-grained adjustment of timeout for
'python-eldoc-function', 'python-eldoc-function-timeout' now accepts
floating-point numbers as well as integers.
** Tmm Menubar
---

View file

@ -5842,7 +5842,7 @@ Set to nil by `python-eldoc-function' if
(defcustom python-eldoc-function-timeout 1
"Timeout for `python-eldoc-function' in seconds."
:type 'integer
:type 'number
:version "25.1")
(defcustom python-eldoc-function-timeout-permanent t