summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25605: Document exceptions raised by fcntl.ioctl() and fcntl.flock()Victor Stinner2015-11-131-0/+4
|
* Rewrite re.VERBOSE section.Zachary Ware2015-11-121-7/+9
| | | | | | | It now has slightly better rationale and a less awkward wording in the explanation. Inspired by a report of a neither/or conflict by 'animalize' on docs@.
* remove trailing wsBenjamin Peterson2015-11-041-1/+1
|
* link to modern PUG urlBenjamin Peterson2015-11-042-10/+9
|
* Use sys.platform instead of os.name to detect Windows in asyncio docs. Patch ↵Guido van Rossum2015-11-022-5/+4
| | | | by Akira Li.
* Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-0216-19/+19
|
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-0235-48/+48
| | | | | | 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.
* Fix some spelling errors in documentation and code commentsMartin Panter2015-10-313-3/+3
|
* Issue #25519: Mark difflib.ndiff as a functions where not already.Terry Jan Reedy2015-10-301-2/+2
|
* Issue #25432: Explain isinstance behaviour when type is a tuple.Terry Jan Reedy2015-10-281-4/+4
|
* Issue #23391: Restore OSError constructor argument documentationMartin Panter2015-10-261-21/+48
| | | | | | | | | | | | | | This restores details lost in revision 097f4fda61a4 (since Python 3.3, related to the new OSError subclasses). Further additions: * Markup for attributes and constructor signature * Explain "winerror" and "filename2" * Extend test to check for filename2 defaulting to None * Clarify that the constructor can return a subclass I have intentionally left out any details of allowing more than five arguments, or how the "args" attribute is set for four or more arguments. These details seem to be dependent on the Python version and platform.
* Issue #25461: Rephrase os.walk() docVictor Stinner2015-10-231-3/+3
| | | | Patch written by Bernt Røskar Brenna.
* rstlint: Fix "default role used" warningBerker Peksag2015-10-201-1/+1
| | | | This should make buildbots green.
* Issue #24885: Update note in docs about stream convenience functions.Guido van Rossum2015-10-191-4/+7
|
* Added entry to logging cookbook.Vinay Sajip2015-10-171-0/+66
|
* Issue #25418: Fix markup in object.__hash__ documentationBerker Peksag2015-10-161-1/+1
| | | | Patch by TAKASE Arihiro.
* Issue #24782: Finish converting the Configure Extension dialog into a newTerry Jan Reedy2015-10-141-11/+10
| | | | tab in the IDLE Preferences dialog. Code patch by Mark Roseman.
* actually link to the version attributes documentationBenjamin Peterson2015-10-121-2/+2
|
* don't mention Python 2.2 (closes #25375)Benjamin Peterson2015-10-111-2/+2
|
* Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-1037-40/+41
|
* Issue #22413: Document newline effect on StringIO initializer and getvalueMartin Panter2015-10-101-4/+12
| | | | Also add to comment in the C code.
* Closes #25344: Added cookbook recipe to show buffering of logging events.Vinay Sajip2015-10-091-0/+137
|
* Issue #16802: Document fileno parameter of socket.socket()Berker Peksag2015-10-081-1/+5
| | | | Patch by Henrik Heimbuerger and Bar Harel.
* Various minor typos in documentation and commentsMartin Panter2015-10-072-2/+2
|
* Issue #25286: Dictionary views are not sequencesMartin Panter2015-10-072-8/+9
| | | | Also change glossary heading from view
* Docs and one small improvement for issue #25304, by Vincent Michel.Guido van Rossum2015-10-052-3/+48
|
* Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-051-4/+42
|
* Issue #16701: Document += and *= for mutable sequencesMartin Panter2015-10-031-2/+12
|
* Issue #25224: README.txt is now an idlelib index for IDLE developers andTerry Jan Reedy2015-10-031-1/+1
| | | | | curious users. The previous user content is now in the IDLE doc and is redundant. IDLE now means 'Integrated Development and Learning Environment'.
* Reflect parameter name change in the docAndrew Svetlov2015-10-011-3/+3
|
* Issue #24028: Add subsection about Idle calltips.Terry Jan Reedy2015-09-291-3/+29
|
* Fix English phrasing.R David Murray2015-09-271-2/+2
|
* make wikipedia link httpsBenjamin Peterson2015-09-271-1/+1
|
* shorten and fix casing of titleBenjamin Peterson2015-09-271-2/+2
|
* Issue #25225: Condense and rewrite Idle doc section on text colors.Terry Jan Reedy2015-09-251-31/+13
|
* Fix #25208: Improve "Develop with asyncio" doc page.Andrew Svetlov2015-09-241-5/+5
| | | | Patch by Benjamin Hodgson.
* Issue 21995: Explain some differences between IDLE and console Python.Terry Jan Reedy2015-09-241-4/+21
|
* Issue #24894: Document the codec iso8859_11Victor Stinner2015-09-241-0/+2
| | | | Patch written by Prashant Tyagi.
* Issue #22820: Explain need for *print* when running file from Idle editor.Terry Jan Reedy2015-09-241-1/+6
|
* Issue 25224: Augment Idle doc feature list and no-subprocess sectionTerry Jan Reedy2015-09-241-4/+21
| | | | to finish making current README.txt obsolete.
* Issue #25219: Update doc for Idle command line options.Terry Jan Reedy2015-09-231-15/+16
| | | | Some were missing and notes were not correct.
* Issue #12067: Rewrite Comparisons section in the language referenceMartin Panter2015-09-231-56/+188
| | | | | | | Some of the details of comparing mixed types were incorrect or ambiguous. NotImplemented is only relevant at a lower level than the Expressions chapter. Added details of comparing range() objects, and default behaviour and consistency suggestions for user-defined classes. Patch from Andy Maier.
* Issue #23630, asyncio: host parameter of loop.create_server() can now be aVictor Stinner2015-09-211-3/+10
| | | | sequence of strings. Patch written by Yann Sionneau.
* Issue #25114, asyncio: add ssl_object extra info to SSL transportsVictor Stinner2015-09-211-0/+5
| | | | | | This info is required on Python 3.5 and newer to get specific information on the SSL object, like getting the binary peer certificate (instead of getting it as text).
* Issue #23484: Document differences between synchronization primitives ofBerker Peksag2015-09-211-12/+119
| | | | | | | | | | | threading and multiprocessing modules. In multiprocessing, the name of the first parameter of the acquire methods is "block", but "blocking" in threading. This commit also improves documentation of Lock and RLock. Patch by Davin Potts.
* Issue #25169: os.getppid() is available on Windows since Python 3.2.Berker Peksag2015-09-211-2/+1
| | | | Patch by Bar Harel.
* remove reference to PyGoogle (#25145)Benjamin Peterson2015-09-201-2/+1
| | | | Patch by Bar Harel.
* use a more modern UA (#25145)Benjamin Peterson2015-09-201-1/+1
|
* Issue #25176: Correct link for cgi.parse_qsl; patch from Ville SkyttäMartin Panter2015-09-201-1/+1
|
* Issue24756: clarify usage of run_docstring_examples()Ethan Furman2015-09-181-7/+23
|