Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on | Serhiy Storchaka | 2013-11-21 | 1 | -0/+3 |
|\ | | | | | | | | | | | | | big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. | ||||
| * | Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on | Serhiy Storchaka | 2013-11-21 | 1 | -0/+3 |
| | | | | | | | | | | | | | | big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. | ||||
* | | Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSP | Christian Heimes | 2013-11-21 | 1 | -0/+3 |
| | | | | | | | | and CRL distribution points. | ||||
* | | Issue #18138: Implement cadata argument of SSLContext.load_verify_location() | Christian Heimes | 2013-11-21 | 1 | -0/+4 |
| | | | | | | | | | | to load CA certificates and CRL from memory. It supports PEM and DER encoded strings. | ||||
* | | Issue #16632: Enable DEP and ASLR on Windows. | Christian Heimes | 2013-11-20 | 1 | -0/+2 |
| | | |||||
* | | Issue #17791: Drop PREFIX and EXEC_PREFIX definitions from PC/pyconfig.h | Christian Heimes | 2013-11-20 | 1 | -0/+2 |
| | | |||||
* | | Issue #18775: Add name and block_size attribute to HMAC object. They now | Christian Heimes | 2013-11-20 | 1 | -0/+3 |
| | | | | | | | | provide the same API elements as non-keyed cryptographic hash functions. | ||||
* | | Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMAC | Christian Heimes | 2013-11-20 | 1 | -0/+3 |
| | | | | | | | | module supports digestmod names, e.g. hmac.HMAC('sha1'). | ||||
* | | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. | Christian Heimes | 2013-11-20 | 2 | -0/+4 |
| | | | | | | | | Python now uses SipHash24 on all major platforms. | ||||
* | | Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH ↵ | Christian Heimes | 2013-11-19 | 1 | -0/+3 |
|\ \ | |/ | | | | | for nmake.exe correctly. | ||||
| * | Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH ↵ | Christian Heimes | 2013-11-19 | 1 | -0/+3 |
| | | | | | | | | for nmake.exe correctly. | ||||
* | | #2927: Added the unescape() function to the html module. | Ezio Melotti | 2013-11-19 | 1 | -0/+2 |
| | | |||||
* | | Merge: #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 | 1 | -0/+3 |
| | | | | | | | | | | | | | | csv was handling non-string keys fine except for the error message generated when a non-string key was not in 'fieldnames'. Fix by Tomas Grahn, full patch-with-test by Vajrasky Kok (tweaked slightly). | ||||
| * | Issue #19596: Set untestable tests in test_importlib to None | Zachary Ware | 2013-11-19 | 1 | -0/+3 |
| | | | | | | | | to avoid reporting success on empty tests. | ||||
* | | Issue #19550: Implement Windows installer changes of PEP 453 (ensurepip). | Martin v. Löwis | 2013-11-19 | 1 | -0/+2 |
| | | |||||
* | | Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates. | Serhiy Storchaka | 2013-11-19 | 2 | -0/+7 |
| | | | | | | | | | | | | | | | | | | | | 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 Storchaka | 2013-11-18 | 1 | -0/+2 |
| | | |||||
* | | Issue #19520: Fix (the last!) compiler warning on 32bit Windows, in _sha3 | Zachary Ware | 2013-11-17 | 1 | -0/+2 |
| | | |||||
* | | Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module. | Antoine Pitrou | 2013-11-17 | 1 | -0/+2 |
| | | |||||
* | | Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a | Victor Stinner | 2013-11-17 | 1 | -0/+3 |
| | | | | | | | | year before 1900. | ||||
* | | Fix test.support.bind_port() to not cause an error when Python was compiled | Gregory P. Smith | 2013-11-17 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option. | ||||
| * | Fix test.support.bind_port() to not cause an error when Python was compiled | Gregory P. Smith | 2013-11-17 | 1 | -0/+4 |
| | | | | | | | | | | on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option. | ||||
* | | Fix compilation error under gcc of the ctypes module bundled libffi for arm. | Gregory P. Smith | 2013-11-17 | 1 | -0/+2 |
|\ \ | |/ | | | | | | | A variable was declared below the top of a block and one function was using a K&R C style function declaration! | ||||
| * | Fix compilation error under gcc of the ctypes module bundled libffi for arm. | Gregory P. Smith | 2013-11-17 | 1 | -0/+2 |
| | | | | | | | | | | A variable was declared below the top of a block and one function was using a K&R C style function declaration! | ||||
| * | merge with 3.3.3 release clone | Georg Brandl | 2013-11-17 | 2 | -6/+34 |
| |\ | |||||
| | * | Bump to 3.3.3 final.v3.3.3 | Georg Brandl | 2013-11-17 | 2 | -1/+9 |
| | | | |||||
| | * | Bump to 3.3.3rc2.v3.3.3rc2 | Georg Brandl | 2013-11-11 | 2 | -4/+7 |
| | | | |||||
| | * | Transplant of rev 544b654d000c: directory traversal attack in ↵ | Georg Brandl | 2013-11-11 | 1 | -0/+5 |
| | | | | | | | | | | | | CGIHttpRequestHandler. | ||||
| | * | Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3. | Ned Deily | 2013-11-05 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. | ||||
| | * | Add news entry for 3.3.3 final. | Georg Brandl | 2013-10-28 | 1 | -2/+11 |
| | | | |||||
* | | | Issue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, ↵ | Christian Heimes | 2013-11-17 | 1 | -0/+3 |
| | | | | | | | | | | | | NID, short name and long name. | ||||
* | | | Close #19282: Native context management in dbm | Nick Coghlan | 2013-11-17 | 1 | -0/+3 |
| | | | |||||
* | | | #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). | Ezio Melotti | 2013-11-16 | 1 | -0/+3 |
| | | | |||||
* | | | Fixed issue number for issue #8311. | Serhiy Storchaka | 2013-11-16 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #16685: Added support for writing any bytes-like objects in the aifc, | Serhiy Storchaka | 2013-11-16 | 1 | -0/+3 |
| | | | | | | | | | | | | sunau, and wave modules. | ||||
* | | | Issue #5202: Added support for unseekable files in the wave module. | Serhiy Storchaka | 2013-11-16 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #19544 and Issue #1180: Restore global option to ignore ↵ | Andrew Kuchling | 2013-11-10 | 1 | -0/+4 |
| | | | | | | | | | | | | ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes. | ||||
* | | | Closes #19523: Merged fix from 3.3. | Vinay Sajip | 2013-11-15 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | Issue #19523: Closed FileHandler leak which occurred when delay was set. | Vinay Sajip | 2013-11-15 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #13674 Updated NEWS | Tim Golden | 2013-11-12 | 1 | -0/+3 |
| | | | |||||
* | | | Issue #19544 and Issue #6516: Restore support for --user and --group ↵ | Andrew Kuchling | 2013-11-15 | 1 | -0/+3 |
| | | | | | | | | | | | | parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516. | ||||
* | | | Close #17828: better handling of codec errors | Nick Coghlan | 2013-11-13 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | - output type errors now redirect users to the type-neutral convenience functions in the codecs module - stateless errors that occur during encoding and decoding will now be automatically wrapped in exceptions that give the name of the codec involved | ||||
* | | | Close #19466: Clear the frames of daemon threads earlier during the Python | Victor Stinner | 2013-11-12 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | shutdown to call objects destructors. So "unclosed file" resource warnings are now corretly emitted for daemon threads. | ||||
* | | | Issue #13674 Updated NEWS | Tim Golden | 2013-11-12 | 1 | -0/+3 |
| | | | |||||
* | | | Issue #19440: Clean up test_capi | Zachary Ware | 2013-11-12 | 1 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #19440: Clean up test_capi | Zachary Ware | 2013-11-12 | 1 | -0/+4 |
| | | | |||||
| * | | Correct a merge error in Misc/NEWS | Zachary Ware | 2013-11-12 | 1 | -1/+1 |
| | | | |||||
* | | | #15422: remove NEWS item for a change that was later reverted | Andrew Kuchling | 2013-11-11 | 1 | -3/+0 |
| | | | |||||
* | | | Close #19406: Initial implementation of ensurepip | Nick Coghlan | 2013-11-11 | 2 | -0/+4 |
| | | | | | | | | | | | | Patch by Donald Stufft and Nick Coghlan |