summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* | merge 3.4 (#26046)Benjamin Peterson2016-01-081-1/+1
|\ \ | |/
| * fix typo in unittest docs (closes #26046)Benjamin Peterson2016-01-081-1/+1
| | | | | | | | Patch from Upendra Kumar.
* | Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵Berker Peksag2016-01-071-2/+4
| | | | | | | | | | | | has no effect Patch by Davin Potts and Camilla Montonen.
* | merge from 3.4Senthil Kumaran2016-01-071-0/+5
|\ \ | |/ | | | | Issue16544 - Add a link to an external documentation resource in ast module docs.
| * Issue16544 - Add a link to an external documentation resource in ast module ↵Senthil Kumaran2016-01-071-0/+5
| | | | | | | | docs.
* | Cross-reference os.DirEntry and pathlib.Path for issue #22570.Guido van Rossum2016-01-062-0/+10
| |
* | Add versionadded (3.4.5) to docs for issue #22570. (Merge 3.4->3.5)Guido van Rossum2016-01-061-0/+1
|\ \ | |/
| * Add versionadded (3.4.5) to docs for issue #22570.Guido van Rossum2016-01-061-0/+1
| |
* | Docs for issue #22570. (Merge 3.4->3.5)Guido van Rossum2016-01-061-0/+17
|\ \ | |/
| * Docs for issue #22570.Guido van Rossum2016-01-061-0/+17
| |
* | merge from 3.4Senthil Kumaran2016-01-041-4/+3
|\ \ | |/ | | | | | | | | Issue24898 - Improve str.find documentation. Simplify str.find explaination as per Georg Brandl's suggestion.
| * Issue24898 - Improve str.find documentation.Senthil Kumaran2016-01-041-4/+3
| | | | | | | | Simplify str.find explaination as per Georg Brandl's suggestion.
* | merge from 3.4Senthil Kumaran2016-01-031-3/+5
|\ \ | |/ | | | | | | | | | | Issue21221 - Explain the usage of tm_isdst attribute of mktime, with valid values and meaning. Patch contributed by Andrew Scheller.
| * Issue21221 - Explain the usage of tm_isdst attribute of mktime, with validSenthil Kumaran2016-01-031-3/+5
| | | | | | | | | | | | values and meaning. Patch contributed by Andrew Scheller.
* | merge from 3.4Senthil Kumaran2016-01-022-4/+2
|\ \ | |/ | | | | Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki.
| * Issue25917 : Fix howto links in docs. Point the reference documentation ↵Senthil Kumaran2016-01-022-4/+2
| | | | | | | | instead of wiki.
* | Fix grammar.Zachary Ware2016-01-011-1/+1
| | | | | | | | Reported by Anatoly Techtonik on docs@
* | merge 3.4Benjamin Peterson2016-01-011-24/+0
|\ \ | |/
| * merge 3.3Benjamin Peterson2016-01-011-24/+0
| |\
| | * remove some copyright notices supserseded by the toplevel onesBenjamin Peterson2016-01-011-24/+0
| | |
* | | merge 3.4Benjamin Peterson2016-01-012-4/+4
|\ \ \ | |/ /
| * | merge 3.3Benjamin Peterson2016-01-012-4/+4
| |\ \ | | |/
| | * 2016 will be another year of writing copyrighted codeBenjamin Peterson2016-01-012-2/+2
| | |
* | | Backport of fix for issue #25930Brett Cannon2015-12-291-5/+5
| | |
* | | Issue #12484: Remove a mention of Py_InitModule() and ↵Brett Cannon2015-12-272-19/+0
| | | | | | | | | | | | | | | | | | | | | _PyImport_FixupExtension(). Thanks to Alejandro Santos for the bug report and Anish Shah for the patch.
* | | Issue #25874: Clarify platform support in the "Using Python on Windows" doc.Brett Cannon2015-12-271-0/+8
| | | | | | | | | | | | Thanks to Chris Wilcox for the initial patch.
* | | #1753718: clarify RFC compliance and bytes/string argument types.R David Murray2015-12-241-57/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch includes contributions by Isobel Hooper, incorporating suggestions from Paul Winkler. Reviewed by Martin Panter. In addition to accepting the corrections for the RFC compliance wording, I went through and corrected all the argument and return types, and made the pattern of how the arguments and return types are documented consistent. So, this patch also addresses #20782, though I had forgotten about that issue and its patch.
* | | docs: Document ASYNC/AWAIT tokens (issue #25580)Yury Selivanov2015-12-171-0/+6
| | | | | | | | | | | | Initial patch by SilentGhost
* | | Merge 3.4Yury Selivanov2015-12-172-6/+6
|\ \ \ | |/ /
| * | docs/asyncio: Twek sections names per Nick Coghlan suggestionYury Selivanov2015-12-172-6/+6
| | |
* | | docs/asyncio: Update ensure_future & run_coroutine_threadsafe docsYury Selivanov2015-12-151-1/+4
| | |
* | | docs/whatsnew/3.5: Fix ref linkYury Selivanov2015-12-151-1/+1
| | |
* | | whatsnew/3.5: Mention new asyncio APIs in 3.5.1Yury Selivanov2015-12-151-0/+12
| | |
* | | 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.
* | | Merge: #25495: Clarify b2a_base64 documentation vis 57 bytes.R David Murray2015-12-131-3/+6
|\ \ \ | |/ /
| * | #25495: Clarify b2a_base64 documentation vis 57 bytes.R David Murray2015-12-131-3/+6
| | |
* | | Issue #22341: Drop Python 2 workaround and document CRC initial valueMartin Panter2015-12-112-34/+26
| | | | | | | | | | | | Also align the parameter naming in binascii to be consistent with zlib.
* | | Issue #14285: Do not catch exceptions initializing any ancestor packageMartin Panter2015-12-102-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | The previous fix only handled the case of the parent package of __main__ failing to initialize. Also make the "Error while finding spec" formatting slightly more appealing, and document and test that the module name must be absolute.
* | | Clarify that only *documentation* bugs should go to docs@python.orgZachary Ware2015-12-091-1/+2
| | |
* | | Issue #21240: Add an abstractmethod directive to mark abstract methods in ↵Berker Peksag2015-12-084-11/+25
| | | | | | | | | | | | the docs more explicitly
* | | Issue #25701: Document C API functions that both set and delete objectsMartin Panter2015-12-083-19/+40
| | | | | | | | | | | | | | | | | | Also document that the separate functions that delete objects are preferred; using PyObject_SetAttr(), _SetAttrString(), and PySequence_SetItem() to delete is deprecated.
* | | Issue #23936: Clarify what finders are.Brett Cannon2015-12-042-19/+42
| | | | | | | | | | | | | | | Thanks to Raúl Cumplido for the bug report and Thomas Kluyver for the patch.
* | | Issue #25500: Fix the language reference to not claim that importBrett Cannon2015-12-041-5/+4
| | | | | | | | | | | | | | | | | | statements search for __import__ in the global scope. Thanks to Sergei Lebedev for finding the documentation bug.
* | | Issue #25767: Merge with 3.4Zachary Ware2015-12-011-1/+1
|\ \ \ | |/ /
| * | Issue #25767: Link to English Wikipedia instead of French.Zachary Ware2015-12-011-1/+1
| | |
* | | Issue #22989, #21228: Merge urlopen() doc from 3.4 into 3.5Martin Panter2015-11-261-7/+13
|\ \ \ | |/ /
| * | Issues #22989, #21228: Document HTTP response object for urlopen()Martin Panter2015-11-261-7/+13
| | | | | | | | | | | | | | | | | | Previous documentation was not clear if the geturl(), info() and getcode() were valid for HTTP responses. The “msg” attribute is different to the usual HTTPResponse.msg attribute. Based on patch by Evens Fortuné.
* | | Issue #25508: Merged documentation fix from 3.4.Vinay Sajip2015-11-241-1/+3
|\ \ \ | |/ /
| * | Issue #25508: Clarify documentation on LogRecord args attribute.Vinay Sajip2015-11-241-1/+3
| | |
* | | Issue #25576: Merge www-form-urlencoded doc from 3.4 into 3.5Martin Panter2015-11-243-30/+16
|\ \ \ | |/ /