summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
| * Issue #19728: Fix sys.getfilesystemencoding() documentationVictor Stinner2013-12-021-3/+2
| |
* | Issue #19781: ftplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-0/+10
| | | | | | | | indication for TLS/SSL connections.
* | Issue #19509: Add SSLContext.check_hostname to match the peer's certificateChristian Heimes2013-12-021-1/+35
| | | | | | | | with server_hostname on handshake.
* | Issue #19849: selectors: Document the possibility of early select() wakeup uponCharles-François Natali2013-12-011-0/+5
| | | | | | | | EINTR.
* | Issue #19845: Updated the Compiling Python on Windows docs.Zachary Ware2013-11-301-13/+9
|\ \ | |/
| * Issue #19845: Updated the Compiling Python on Windows docs.Zachary Ware2013-11-301-8/+10
| |
* | Closes #19789: Merged update from 3.3.Vinay Sajip2013-11-301-2/+4
|\ \ | |/
| * Issue #19789: Clarified documentation for logging.disable.Vinay Sajip2013-11-301-2/+4
| |
| * Revert unrelated changes introduced by changeset b2066bc8cab9 (issue #19795).Serhiy Storchaka2013-11-291-10/+0
| |
* | More realistic example for selectors.py.Guido van Rossum2013-11-291-30/+37
| |
* | Remove trailing blanks.Charles-François Natali2013-11-291-7/+7
| |
* | Set the FDs non-blocking in the selectors example.Charles-François Natali2013-11-291-9/+12
| |
* | Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-2943-87/+87
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-2940-80/+90
| |
* | Some minor clarifications in the documentation of pathlib + inheritance diagramEli Bendersky2013-11-282-68/+80
| |
* | Change pathlib documentation to use "raise" instead of "throw".Ned Deily2013-11-271-2/+2
| |
* | Issue #19818: tracemalloc, the number of frame limit cannot be zero anymoreVictor Stinner2013-11-271-3/+3
| |
* | Close #19798: replace "maximum" term with "peak" in get_traced_memory()Victor Stinner2013-11-271-2/+2
| | | | | | | | documentation. Use also the term "current" for the current size.
* | merge 3.3 (#19805)Benjamin Peterson2013-11-271-27/+3
|\ \ | |/
| * recommend OrderedDict for this FAQ (closes #19805)Benjamin Peterson2013-11-271-27/+3
| |
* | Issue #19793: Improved markup for True/False constants in pathlib documentation.Serhiy Storchaka2013-11-261-28/+28
| |
* | Issue #19794: Improved markup for True/False constants.Serhiy Storchaka2013-11-261-13/+13
|\ \ | |/
| * Issue #19794: Improved markup for True/False constants.Serhiy Storchaka2013-11-261-13/+13
| |
* | merge with 3.3Georg Brandl2013-11-261-1/+0
|\ \ | |/
| * Markup fix.Georg Brandl2013-11-261-1/+0
| |
* | Issue #18874: allow to call tracemalloc.Snapshot.statistics(cumulative=True)Victor Stinner2013-11-251-2/+1
| | | | | | | | with traceback_limit=1
* | Issue #18874: apply Jim Jewett's patch on tracemalloc docVictor Stinner2013-11-251-9/+13
| |
* | #13592, #17087: add whatsnew entry about regex/match object repr improvements.Ezio Melotti2013-11-251-0/+7
| |
* | #19778: fix a couple of re reprs in the documentation.Ezio Melotti2013-11-251-4/+4
| |
* | Issue #19691: remove outdated mention about RuntimeErrorAntoine Pitrou2013-11-251-2/+1
|\ \ | |/
| * Issue #19691: remove outdated mention about RuntimeErrorAntoine Pitrou2013-11-251-2/+1
| |
* | Mention the new tracemalloc module in the What's New in Python 3.4 documentVictor Stinner2013-11-251-0/+18
| |
* | merge with 3.3Georg Brandl2013-11-251-5/+5
|\ \ | |/
| * Closes #19622: clarify message about bufsize changes in 3.2.4 and 3.3.1.Georg Brandl2013-11-251-5/+5
| |
| * Fix doc markup error.Georg Brandl2013-11-251-3/+3
| |
* | Merge broken link fix from 3.3.Ezio Melotti2013-11-251-1/+1
|\ \ | |/
| * Fix broken link in html.entities docs.Ezio Melotti2013-11-251-1/+1
| |
* | Add whatsnew section about the html package.Ezio Melotti2013-11-251-0/+21
| |
* | merge with 3.3Georg Brandl2013-11-241-0/+1
|\ \ | |/
| * Doc/Makefile: also do "make suspicious" during daily autobuildGeorg Brandl2013-11-241-0/+1
| |
* | Fix suspicious markup in the docs.Georg Brandl2013-11-246-16/+18
| |
* | Fix a few markup problems in the new import doc.Georg Brandl2013-11-241-2/+4
| |
* | Issue #3158: doctest can now find doctests in functions and methodsZachary Ware2013-11-241-3/+6
| | | | | | | | | | | | | | | | written in C. As a part of this, a few doctests have been added to the builtins module (on hex(), oct(), and bin()), a doctest has been fixed (hopefully on all platforms) on float, and test_builtins now runs doctests in builtins.
* | Issue #13477: Added command line interface to the tarfile module.Serhiy Storchaka2013-11-231-0/+61
| | | | | | | | Original patch by Berker Peksag.
* | Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-231-0/+7
| | | | | | | | computes the stack effect of bytecode instructions.
* | Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,Serhiy Storchaka2013-11-232-1/+36
| | | | | | | | | | | | which anchor the pattern at both ends of the string to match. Original patch by Matthew Barnett.
* | Issue #19641: Added the audioop.byteswap() function to convert big-endianSerhiy Storchaka2013-11-232-0/+11
| | | | | | | | samples to little-endian and vice versa.
* | Issue #15204: Deprecated the 'U' mode in file-like objects.Serhiy Storchaka2013-11-233-2/+10
| |
* | #10712: 2to3 has a new "asserts" fixer that replaces deprecated names of ↵Ezio Melotti2013-11-231-0/+33
| | | | | | | | unittest methods.
* | #19639: update the repr of the match objects in the docs. Patch by Claudiu ↵Ezio Melotti2013-11-233-18/+18
| | | | | | | | Popa.