summaryrefslogtreecommitdiffstats
path: root/Doc/library/ftplib.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-120823: Fix doc for ftplib.FTP.retrbinary() (GH-121697)mirelagrigoras2024-07-131-1/+1
| | | Co-authored-by: Mirela Andreea GRIGORAS <magrigoras@bitdefender.com>
* docs: module page titles should not start with a link to themselves (#117099)Ned Batchelder2024-05-081-2/+2
|
* gh-97590: Update docs and tests for ftplib.FTP.voidcmd() (GH-96825)Matthew Hughes2024-02-171-2/+2
| | | | Since 2f3941d743481ac48628b8b2c075f2b82762050b this function returns the response string, rather than nothing.
* ftplib docs: `timeout` doesn't have to be a whole number (#115443)Alex Waygood2024-02-141-3/+3
|
* Docs: mark up the FTP_TLS() docs with param list (#114510)Erlend E. Aasland2024-01-241-10/+46
| | | Also turn sentence about prot_p() into a note.
* Docs: mark up FTP.connect() and FTP.login() with param lists (#114395)Erlend E. Aasland2024-01-231-33/+70
| | | | | | Use rst substitutions to reduce raw text duplication. Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* Docs: mark up FTP.retrbinary and FTP.storbinary with param lists (#114399)Erlend E. Aasland2024-01-231-16/+46
| | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* Docs: link to sys.stdout in ftplib docs (#114396)Erlend E. Aasland2024-01-211-2/+2
|
* Docs: mark up FTP() constructor with param list (#114359)Erlend E. Aasland2024-01-211-11/+37
| | | Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* Docs: mark up the FTP debug levels as a list (#114360)Erlend E. Aasland2024-01-211-6/+9
| | | Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* Docs: Add missing line continuation to FTP_TLS class docs (#114352)Erlend E. Aasland2024-01-201-1/+1
| | | Regression introduced by b1ad5a5d4.
* Docs: structure the ftplib reference (#114317)Erlend E. Aasland2024-01-201-244/+250
| | | | | | | | Introduce the following headings and subheadings: - Reference * FTP objects * FTP_TLS objects * Module variables
* gh-106909: Use role :const: for referencing module constants (GH-106910)Serhiy Storchaka2023-07-211-2/+2
|
* gh-106892: Use roles :data: and :const: for referencing module variables ↵Serhiy Storchaka2023-07-211-1/+1
| | | | (GH-106894)
* gh-94172: Update keyfile removal documentation (#105392)Victor Stinner2023-06-061-7/+1
| | | | Remove the "deprecated:: 3.6" markup, since the parameters (like keyfile and certfile) got removed in Python 3.12.
* gh-94172: Update docs for params removed in 3.12 (#100431)Hugo van Kemenade2022-12-281-6/+5
| | | | Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
* gh-95451: Update docs for wasm32-emscripten and -wasi platforms (GH-95452)Christian Heimes2022-08-021-0/+2
| | | | | | Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Michael Droettboom <mdboom@gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* Simple Enhancement. Add missing return statements in ftplib documentation. ↵Senthil Kumaran2021-05-071-0/+2
| | | | (GH-25968)
* bpo-39380: Change ftplib encoding from latin-1 to utf-8 (GH-18048)Sebastian Pedersen2020-04-131-13/+20
| | | | | Add the encoding in ftplib.FTP and ftplib.FTP_TLS to the constructor as keyword-only and change the default from "latin-1" to "utf-8" to follow RFC 2640.
* bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959)Dong-hee Na2020-01-131-0/+7
|
* bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319)Prateek Nayak2019-09-261-1/+1
|
* Doc: Use the `with` statement in the first example of the ftplib doc. (GH-16271)Stéphane Wirtel2019-09-261-1/+2
|
* Update ftplib.all_errors documentation to match code (#15026)Andrew Scheller2019-09-111-1/+1
| | | The documentation doesn't mention the `EOFError` that https://github.com/python/cpython/blob/master/Lib/ftplib.py#L66 includes
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-271-3/+3
| | | Also updates some (unreleased) event names to be consistent with the others.
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+6
|
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-311-1/+1
| | | | 85% of them are already links.
* ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652)Jelle Zijlstra2017-03-131-1/+1
|
* fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653)Jelle Zijlstra2017-03-131-2/+2
|
* Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.Christian Heimes2016-09-101-0/+7
| | | | | | | The deprecation include manual creation of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, smtplib, poplib and urllib. ssl.wrap_socket() is not marked as deprecated yet.
* Issue #27210: Fix doctests for a few modules.Zachary Ware2016-08-101-1/+1
| | | | Initial patch by Jelle Zijlstra.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+1
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URLMartin Panter2016-05-281-1/+1
| | | | Patch by Anish Shah and Aatish Neupane.
* Issue #26580: Remove outdated reference to ftpmirrorBerker Peksag2016-03-181-6/+0
| | | | Patch by SilentGhost.
* Issue #11072: change the incorrect "deprecation" of ftplib dir() and nlst()Gregory P. Smith2015-12-141-3/+3
| | | | | | APIs into a note that mlsd() is a nicer API if the server supports it. They aren't deprecated, they are all different server commands. Not all servers support all commands.
* Issue #25689: Fix language in ftplib and nntplib docsMartin Panter2015-11-211-2/+1
| | | | Original patch by Silent Ghost.
* Fix a few grammar problems in the documentation and commentsMartin Panter2015-11-141-2/+2
|
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
| | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
* update docs for #23111Benjamin Peterson2014-12-301-1/+1
|
* Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods.Berker Peksag2014-10-081-4/+4
| | | | The correct parameter name is "fp", not "file".
* Issue #20913: improve the SSL security considerations to first advocate ↵Antoine Pitrou2014-03-221-33/+22
| | | | using create_default_context().
* Issue #19781: ftplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-0/+10
| | | | indication for TLS/SSL connections.
* Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-2/+2
|
* Closes #19181: replace non-existing host ftp.cwi.nl with ftp.debian.org in ↵Georg Brandl2013-10-061-13/+13
| | | | ftplib example.
* MERGE: Closes #16789: :meth:`quit` links to constants instead of own moduleJesus Cea2012-12-261-4/+4
|\
| * Closes #16789: :meth:`quit` links to constants instead of own moduleJesus Cea2012-12-261-4/+4
| |
* | Merge ftplib doc fix with 3.2.Ezio Melotti2012-10-051-9/+9
|\ \ | |/
| * The file obj passed to ftp.storbinary/storlines must be opened in binary mode.Ezio Melotti2012-10-051-9/+9
| |
| * Issue 11263: Fix link to source code.Raymond Hettinger2011-02-211-1/+1
| |
* | Documentation typo.Florent Xicluna2011-10-231-1/+1
| |