summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Start documenting the event loopAntoine Pitrou2013-11-231-0/+57
|
* Document asyncio transport APIsAntoine Pitrou2013-11-231-0/+170
|
* Issue #18874: Remove tracemalloc.set_traceback_limit()Victor Stinner2013-11-232-29/+25
| | | | tracemalloc.start() now has an option nframe parameter
* Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-234-2/+666
|
* Issue #8813: X509_VERIFY_PARAM is only available on OpenSSL 0.9.8+Christian Heimes2013-11-231-0/+1
| | | | The patch removes the verify_flags feature on Mac OS X 10.4 with OpenSSL 0.9.7l 28 Sep 2006.
* Issue #19551: Update whatsnew.Ned Deily2013-11-231-3/+2
|
* Update What's New with PEP 453 progressNick Coghlan2013-11-231-9/+19
|
* Close #7475: Restore binary & text transform codecsNick Coghlan2013-11-232-62/+104
| | | | | | | | | | | | The codecs themselves were restored in Python 3.2, this completes the restoration by adding back the convenience aliases. These aliases were originally left out due to confusing errors when attempting to use them with the text encoding specific convenience methods. Python 3.4 includes several improvements to those errors, thus permitting the aliases to be restored as well.
* Add source link for asyncio.Guido van Rossum2013-11-231-0/+3
|
* Finish protocol documentationAntoine Pitrou2013-11-231-12/+54
|
* Start documenting protocolsAntoine Pitrou2013-11-231-0/+130
|
* Mention threadpool interface in asyncio overview.Guido van Rossum2013-11-221-0/+4
|
* Issue #19291: add crude stubs to the asyncio docsAntoine Pitrou2013-11-221-5/+94
|
* Wording changesAndrew Kuchling2013-11-221-5/+5
|
* Wording changes to pathlib docs.Andrew Kuchling2013-11-221-4/+3
| | | | | | | | | | Only possibly-controversial change: joinpath() was described as: "Calling this method is equivalent to indexing the path with each of the *other* arguments in turn." 'Indexing' is an odd word to use, because you can't subscript Path or PurePath objects, so I changed it to "combining".
* Fix markup of notes recommending asyncio.Guido van Rossum2013-11-222-4/+8
|
* Merge headsZachary Ware2013-11-224-3/+9
|\
| * Add note to asyncore/asynchat recommending asyncio for new code.Guido van Rossum2013-11-222-0/+6
| |
| * Move select, selectors, asyncio to section 18 (IPC).Guido van Rossum2013-11-222-3/+3
| |
* | Issue #18326: merge with 3.3Zachary Ware2013-11-222-2/+7
|\ \ | |/ |/|
| * Issue #18326: Clarify that list.sort's arguments are keyword-only.Zachary Ware2013-11-222-2/+7
| | | | | | | | | | Also, attempt to reduce confusion in the glossary by not saying there are different "types" of arguments and parameters.
* | asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl ↵Guido van Rossum2013-11-222-0/+21
| | | | | | | | Ibarra Corretgé (mostly).
* | Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428).Antoine Pitrou2013-11-225-0/+902
| |
* | Implement PEP 451 (ModuleSpec).Eric Snow2013-11-223-210/+409
| |
* | Close #17916: dis.Bytecode based replacement for distbNick Coghlan2013-11-222-2/+13
| | | | | | | | | | | | | | - Bytecode.from_traceback() alternate constructor - current_offset parameter and attribute Patch by Claudiu Popa
* | Close #19552: venv and pyvenv ensurepip integrationNick Coghlan2013-11-222-3/+22
| |
* | Issue #19619: Update What's New for codec blacklistNick Coghlan2013-11-221-11/+12
| |
* | Issue #18147: Add missing documentation for SSLContext.get_ca_certs().Christian Heimes2013-11-221-0/+12
| | | | | | | | Also change the argument name to the same name as getpeercert()
* | Issue #17134: Finalize interface to Windows' certificate store. Cert andChristian Heimes2013-11-221-15/+30
| | | | | | | | | | CRL enumeration are now two functions. enum_certificates() also returns purpose flags as set of OIDs.
* | Issue #8813: Add SSLContext.verify_flags to change the verification flagsChristian Heimes2013-11-211-0/+45
| | | | | | | | | | of the context in order to enable certification revocation list (CRL) checks or strict X509 rules.
* | Issue #14455: plistlib now supports binary plists and has an updated API.Ronald Oussoren2013-11-211-29/+152
| | | | | | | | | | | | | | This patch adds support for binary plists on OSX to plistlib (based on a patch by 'dpounces'). The patch also cleans up the API for the plistlib module.
* | Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSPChristian Heimes2013-11-211-0/+4
| | | | | | | | and CRL distribution points.
* | Issue #18138: Implement cadata argument of SSLContext.load_verify_location()Christian Heimes2013-11-211-1/+10
| | | | | | | | | | to load CA certificates and CRL from memory. It supports PEM and DER encoded strings.
* | Clarify where "Documenting Python" can be found.Guido van Rossum2013-11-201-1/+2
| |
* | Issue #18775: Add name and block_size attribute to HMAC object. They nowChristian Heimes2013-11-201-0/+19
| | | | | | | | provide the same API elements as non-keyed cryptographic hash functions.
* | Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMACChristian Heimes2013-11-202-2/+12
| | | | | | | | module supports digestmod names, e.g. hmac.HMAC('sha1').
* | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.Christian Heimes2013-11-203-0/+41
| | | | | | | | Python now uses SipHash24 on all major platforms.
* | #2927: Added the unescape() function to the html module.Ezio Melotti2013-11-192-0/+12
| |
* | Merge from 3.3Andrew Kuchling2013-11-191-52/+51
|\ \ | |/
| * #1098749: re-word gettext docs to not encourage using pygettext so much.Andrew Kuchling2013-11-191-52/+51
| | | | | | | | Also, add a link to the Babel package.
* | Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.Serhiy Storchaka2013-11-192-7/+25
| | | | | | | | | | | | | | | | | | | | The utf-16* and utf-32* encoders no longer allow surrogate code points (U+D800-U+DFFF) to be encoded. The utf-32* decoders no longer decode byte sequences that correspond to surrogate code points. The surrogatepass error handler now works with the utf-16* and utf-32* codecs. Based on patches by Victor Stinner and Kang-Hao (Kenny) Lu.
* | Issue #8402: Added the escape() function to the glob module.Serhiy Storchaka2013-11-181-0/+11
| |
* | Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.Antoine Pitrou2013-11-171-0/+70
| |
* | Merge indentation fix in doc example from 3.3.Ezio Melotti2013-11-171-5/+5
|\ \ | |/
| * Fix indentation in doc example.Ezio Melotti2013-11-171-5/+5
| |
* | Merge.Richard Oudkerk2013-11-171-6/+18
|\ \ | |/
| * Issue 16998: Clarify that += on a shared value is not atomic.Richard Oudkerk2013-11-171-6/+18
| |
* | Issue #19508: direct the user to read the security considerations for the ↵Antoine Pitrou2013-11-171-5/+14
|\ \ | |/ | | | | ssl module
| * Issue #19508: direct the user to read the security considerations for the ↵Antoine Pitrou2013-11-171-5/+14
| | | | | | | | ssl module
* | Close #19282: Native context management in dbmNick Coghlan2013-11-171-16/+22
| |