Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge | Christian Heimes | 2013-11-23 | 3 | -0/+28 |
|\ | |||||
| * | Issue #19727: os.utime(..., None) is now potentially more precise under Windows. | Antoine Pitrou | 2013-11-23 | 1 | -0/+3 |
| | | |||||
| * | Issue #17201: ZIP64 extensions now are enabled by default. | Serhiy Storchaka | 2013-11-23 | 2 | -0/+4 |
| | | | | | | | | Patch by William Mallard. | ||||
| * | Issue 17457: extend test discovery to support namespace packages | Michael Foord | 2013-11-23 | 2 | -0/+21 |
| | | |||||
* | | Issue #19689: Add ssl.create_default_context() factory function. It creates | Christian Heimes | 2013-11-23 | 1 | -0/+3 |
|/ | | | | a new SSLContext object with secure default settings. | ||||
* | Issue #19292: Add SSLContext.load_default_certs() to load default root CA | Christian Heimes | 2013-11-23 | 1 | -0/+4 |
| | | | | | certificates from default stores or system stores. By default the method loads CA certs for authentication of server certs. | ||||
* | Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.4.0b1. | Ned Deily | 2013-11-23 | 1 | -0/+5 |
| | |||||
* | Update third-party libraries for OS X installers: | Ned Deily | 2013-11-23 | 1 | -0/+4 |
| | | | | | XZ 5.0.3 -> 5.0.5 SQLite 3.7.13 -> 3.8.1 | ||||
* | Issue #19551: PEP 453 - OS X installer now installs or upgrades pip by default. | Ned Deily | 2013-11-23 | 1 | -0/+2 |
| | |||||
* | Merge from 3.3 | Andrew Kuchling | 2013-11-23 | 1 | -1/+1 |
|\ | |||||
| * | Update Itamar's name | Andrew Kuchling | 2013-11-23 | 1 | -1/+1 |
| | | |||||
* | | trunk merge | Barry Warsaw | 2013-11-22 | 1 | -0/+7 |
|\ \ | |||||
| * \ | Issue #18326: merge with 3.3 | Zachary Ware | 2013-11-22 | 1 | -0/+7 |
| |\ \ | | |/ | |||||
| | * | Issue #18326: Clarify that list.sort's arguments are keyword-only. | Zachary Ware | 2013-11-22 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | Also, attempt to reduce confusion in the glossary by not saying there are different "types" of arguments and parameters. | ||||
* | | | Issue 19555 for distutils, plus a little clean up (pyflakes, line lengths). | Barry Warsaw | 2013-11-22 | 1 | -3/+4 |
|/ / | |||||
* | | NEWS entry for module name repr commit | Brett Cannon | 2013-11-22 | 1 | -0/+2 |
| | | |||||
* | | Update xz to 5.0.5. | Martin v. Löwis | 2013-11-22 | 1 | -1/+1 |
| | | |||||
* | | Update SQLite to 3.8.1 on Windows. | Martin v. Löwis | 2013-11-22 | 1 | -0/+2 |
| | | |||||
* | | Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428). | Antoine Pitrou | 2013-11-22 | 1 | -0/+2 |
| | | |||||
* | | Close #17916: dis.Bytecode based replacement for distb | Nick Coghlan | 2013-11-22 | 1 | -0/+4 |
| | | | | | | | | | | | | | | - Bytecode.from_traceback() alternate constructor - current_offset parameter and attribute Patch by Claudiu Popa | ||||
* | | Close #19552: venv and pyvenv ensurepip integration | Nick Coghlan | 2013-11-22 | 1 | -0/+5 |
| | | |||||
* | | Issue #19619: Blacklist non-text codecs in method API | Nick Coghlan | 2013-11-22 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | str.encode, bytes.decode and bytearray.decode now use an internal API to throw LookupError for known non-text encodings, rather than attempting the encoding or decoding operation and then throwing a TypeError for an unexpected output type. The latter mechanism remains in place for third party non-text encodings. | ||||
* | | Issue #19553: PEP 453 - "make install" and "make altinstall" now install or | Ned Deily | 2013-11-22 | 1 | -0/+6 |
| | | | | | | | | | | | | | | upgrade pip by default, using the bundled pip provided by the new ensurepip module. A new configure option, --with-ensurepip[=upgrade|install|no], is available to override the default ensurepip "--upgrade" option. The option can also be set with "make [alt]install ENSUREPIP=[upgrade|install\no]". | ||||
* | | Issue #19649: On OS X, the same set of file names are now installed | Ned Deily | 2013-11-22 | 1 | -0/+6 |
| | | | | | | | | | | | | | | in bin directories for all configurations: non-framework vs framework, and single arch vs universal builds. pythonx.y-32 is now always installed for 64-bit/32-bit universal builds. The obsolete and undocumented pythonw* symlinks are no longer installed anywhere. | ||||
* | | Issue #17134: Finalize interface to Windows' certificate store. Cert and | Christian Heimes | 2013-11-22 | 1 | -0/+4 |
| | | | | | | | | | | CRL enumeration are now two functions. enum_certificates() also returns purpose flags as set of OIDs. | ||||
* | | merge | Christian Heimes | 2013-11-22 | 1 | -0/+3 |
|\ \ | |||||
| * | | - Issue #19555: Restore sysconfig.get_config_var('SO'), with a | Barry Warsaw | 2013-11-21 | 1 | -0/+3 |
| | | | | | | | | | | | | DeprecationWarning pointing people at $EXT_SUFFIX. | ||||
* | | | Issue #19664: test_userdict's repr test no longer depends on the order | Christian Heimes | 2013-11-22 | 1 | -0/+3 |
|/ / | | | | | | | | | of dict elements. Original patch by Serhiy Storchaka | ||||
* | | Issue #8813: Add SSLContext.verify_flags to change the verification flags | Christian Heimes | 2013-11-21 | 1 | -0/+4 |
| | | | | | | | | | | of the context in order to enable certification revocation list (CRL) checks or strict X509 rules. | ||||
* | | Close #18294: Fix the zlib module to make it 64-bit safe | Victor Stinner | 2013-11-21 | 1 | -0/+2 |
| | | |||||
* | | merge | Christian Heimes | 2013-11-21 | 1 | -0/+2 |
|\ \ | |||||
| * | | Issue #14455: plistlib now supports binary plists and has an updated API. | Ronald Oussoren | 2013-11-21 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | 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 #19682: Fix compatibility issue with old version of OpenSSL that | Christian Heimes | 2013-11-21 | 1 | -0/+3 |
|/ / | | | | | | | was introduced by Issue #18379. | ||||
* | | 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. |