summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* | issue9014: Include more formatting on :c:type:`PyObject` etc.Gregory P. Smith2015-04-141-3/+3
|\ \ | |/
| * issue9014: Include more formatting on :c:type:`PyObject` etc.Gregory P. Smith2015-04-141-3/+3
| |
* | issue9014: Properly document PyObject_HEAD and friends post-PEP-3123.Gregory P. Smith2015-04-141-29/+41
|\ \ | |/
| * issue9014: Properly document PyObject_HEAD and friends post-PEP-3123.Gregory P. Smith2015-04-141-29/+41
| |
* | remove trailing spaceGregory P. Smith2015-04-141-1/+1
|\ \ | |/
| * remove trailing space :)Gregory P. Smith2015-04-141-1/+1
| |
* | issue22046: mention that zipfile can raise NotImplementedError on unsupportedGregory P. Smith2015-04-141-1/+5
|\ \ | |/ | | | | compression algorithms.
| * issue22046: mention that zipfile can raise NotImplementedError on unsupportedGregory P. Smith2015-04-141-1/+5
| | | | | | | | compression algorithms.
* | #21146: give a more efficient recipe in gzip docsAndrew Kuchling2015-04-141-1/+2
| |
* | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-143-3/+3
|\ \ | |/
| * Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-143-3/+3
| |
* | Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES.Larry Hastings2015-04-132-0/+15
| | | | | | | | Patch courtesy of Joe Jevnik.
* | Closes #23730: merge with 3.4Zachary Ware2015-04-131-0/+2
|\ \ | |/
| * Issue #23730: Document the return value of ZipFile.extractZachary Ware2015-04-131-0/+2
| | | | | | | | Patch by Stéphane Wirtel.
* | Closes #23938: List Windows XP as an unsupported platform.Zachary Ware2015-04-131-1/+1
| | | | | | | | Patch by Alex Walters.
* | Fix a grammar error in the porting HOWTO as found by Eric Smith.Brett Cannon2015-04-131-1/+1
| |
* | Issue #23733: Mention bytes.__mod__ in the porting HOWTO.Brett Cannon2015-04-131-3/+2
| |
* | Fix doc build errorAntoine Pitrou2015-04-131-1/+1
| |
* | Fix duplicate doc entry for SSLContext.get_ca_certs()Antoine Pitrou2015-04-131-12/+4
|\ \ | |/ | | | | (closes #18147)
| * Fix duplicate doc entry for SSLContext.get_ca_certs()Antoine Pitrou2015-04-131-12/+4
| | | | | | | | (closes #18147)
* | Issue #23732: Mention the new -b semantics in the porting HOWTO.Brett Cannon2015-04-131-4/+6
| |
* | Issue #23731: Implement PEP 488.Brett Cannon2015-04-1316-57/+125
| | | | | | | | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
* | Closes #17202: Merge with 3.4Zachary Ware2015-04-131-133/+133
|\ \ | |/
| * Issue #17202: Add .bat to .hgeol to force them to CRLF.Zachary Ware2015-04-131-124/+124
| | | | | | | | | | Using LF can a script to fail if it tries to use a label that is split across 512 byte blocks. Who knows why.
* | Closes #23932: Merge with 3.4Zachary Ware2015-04-131-11/+10
|\ \ | |/
| * Issue #23932: Update the tutorial section on function annotations.Zachary Ware2015-04-131-11/+10
| | | | | | | | Patch by Juti Noppornpitak.
* | Doc clarification / edification on the semantics of the 'w*' format unit.Larry Hastings2015-04-132-5/+12
| |
* | Merge: #17380: Document tp_init return value in extending docs.R David Murray2015-04-131-1/+2
|\ \ | |/
| * #17380: Document tp_init return value in extending docs.R David Murray2015-04-131-1/+2
| | | | | | | | Patch by James Powell.
* | #23464: remove JoinableQueue that was deprecated in 3.4.4.R David Murray2015-04-122-11/+4
| | | | | | | | Patch by A. Jesse Jiryu Davis.
* | Issue #12955: Change the urlopen() examples to use context managers where ↵Berker Peksag2015-04-125-28/+38
|\ \ | |/ | | | | | | | | appropriate. Patch by Martin Panter.
| * Issue #12955: Change the urlopen() examples to use context managers where ↵Berker Peksag2015-04-125-28/+38
| | | | | | | | | | | | appropriate. Patch by Martin Panter.
* | Issue #23668: Adds support for os.truncate and os.ftruncate on WindowsSteve Dower2015-03-212-4/+11
| |
* | Close #23904: fix pathlib documentation misleadingly mentioning that bytes ↵Antoine Pitrou2015-04-111-2/+2
|\ \ | |/ | | | | objects are accepted in the PurePath constructor
| * Close #23904: fix pathlib documentation misleadingly mentioning that bytes ↵Antoine Pitrou2015-04-111-2/+2
| | | | | | | | objects are accepted in the PurePath constructor
* | Issue #23912: Fix code formatting in datamodel.rst.Berker Peksag2015-04-111-3/+3
|\ \ | |/ | | | | Patch by James Edwards.
| * Issue #23912: Fix code formatting in datamodel.rst.Berker Peksag2015-04-111-3/+3
| | | | | | | | Patch by James Edwards.
* | merge 3.4Benjamin Peterson2015-04-111-7/+7
|\ \ | |/
| * use imperativeBenjamin Peterson2015-04-111-7/+7
| |
* | Issue #23529: Limit the size of decompressed data when reading fromAntoine Pitrou2015-04-103-10/+28
| | | | | | | | | | | | | | | | GzipFile, BZ2File or LZMAFile. This defeats denial of service attacks using compressed bombs (i.e. compressed payloads which decompress to a huge size). Patch by Martin Panter and Nikolaus Rath.
* | Null mergeSerhiy Storchaka2015-04-101-0/+2
|\ \ | |/
* | Issue #23025: Add a mention of os.urandom to RAND_bytes and ↵Berker Peksag2015-04-101-0/+4
|\ \ | |/ | | | | | | | | RAND_pseudo_bytes docs. Patch by Alex Gaynor.
| * Issue #23025: Add a mention of os.urandom to RAND_bytes and ↵Berker Peksag2015-04-101-0/+4
| | | | | | | | | | | | RAND_pseudo_bytes docs. Patch by Alex Gaynor.
* | Merge from 3.4Tim Golden2015-04-081-1/+1
|\ \ | |/
| * Fix typo in telnet docs (reported by Keith Briggs)Tim Golden2015-04-081-1/+1
| |
* | merge 3.4Benjamin Peterson2015-04-081-7/+7
|\ \ | |/
| * actually ssl3 is just completely brokenBenjamin Peterson2015-04-081-7/+7
| |
* | Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵Berker Peksag2015-04-081-8/+16
|\ \ | |/ | | | | | | | | available. Patch by Davin Potts.
| * Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵Berker Peksag2015-04-081-8/+16
| | | | | | | | | | | | available. Patch by Davin Potts.
* | Issue #23853: Methods of SSL socket don't reset the socket timeout anymore eachVictor Stinner2015-04-061-0/+18
| | | | | | | | | | | | | | | | time bytes are received or sent. The socket timeout is now the maximum total duration of the method. This change fixes a denial of service if the application is regulary interrupted by a signal and the signal handler does not raise an exception.