8000 ftplib docs: `timeout` doesn't have to be a whole number by AlexWaygood · Pull Request #115443 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

ftplib docs: timeout doesn't have to be a whole number #115443

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

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ftplib docs: doesn't have to be a whole number
  • Loading branch information
AlexWaygood committed Feb 14, 2024
commit b63a8be89f1e75d7970370864dabdcdf064310fe
6 changes: 3 additions & 3 deletions Doc/library/ftplib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ FTP objects
:param timeout:
A timeout in seconds for blocking operations like :meth:`connect`
(default: the global default timeout setting).
:type timeout: int | None
:type timeout: float | None

:param source_address:
|param_doc_source_address|
Expand Down Expand Up @@ -178,7 +178,7 @@ FTP objects
:param timeout:
A timeout in seconds for the connection attempt
(default: the global default timeout setting).
:type timeout: int | None
:type timeout: float | None

:param source_address:
|param_doc_source_address|
Expand Down Expand Up @@ -483,7 +483,7 @@ FTP_TLS objects
:param timeout:
A timeout in seconds for blocking operations like :meth:`~FTP.connect`
(default: the global default timeout setting).
:type timeout: int | None
:type timeout: float | None

:param source_address:
|param_doc_source_address|
Expand Down
0